/* =============================================================
   Leveredge Media — about.css
   Loaded on the About page only.
   Shared tokens and components live in base.css.
   v1.0.0
============================================================= */


/* ── SECTION BACKGROUNDS + PADDING ─────────────────────────── */

#about-hero  { background: var(--ink); }
#mission     { background: var(--ink-2); padding: 96px 24px; }
#story       { background: var(--ink);   padding: 96px 24px; }
#values      { background: var(--ink-2); padding: 96px 24px; }
#why         { background: var(--ink);   padding: 96px 24px; }
#approach    { background: var(--ink-2); padding: 96px 24px; }
#markets     { background: var(--ink);   padding: 96px 24px; }
#about-cta   { background: var(--ink-2); padding: 96px 24px; position: relative; overflow: hidden; }

#about-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 110%, rgba(255, 95, 31, 0.07) 0%, transparent 55%);
    pointer-events: none;
}


/* ============================================================
   ABOUT HERO
============================================================= */

#about-hero {
    padding: 148px 24px 36px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

/* Dot grid background */
#about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black, transparent 70%);
    pointer-events: none;
}

/* Orange glow */
#about-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% -5%, rgba(255, 95, 31, 0.08) 0%, transparent 65%);
    pointer-events: none;
}

.about-hero-inner {
    position: relative;
    z-index: 1;
    max-width: var(--max);
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--muted-2);
}
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--muted-2); }

/* Hero text block */
.hero-text-block { max-width: 780px; margin-bottom: 52px; }

.about-hero-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 6.5vw, 76px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.06;
    color: var(--white);
    margin-bottom: 22px;
}

.about-hero-sub {
    font-size: clamp(17px, 2vw, 19px);
    color: var(--muted);
    max-width: 640px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.about-hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}


/* ── STAT STRIP ─────────────────────────────────────────────── */

.hero-stat-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border-2);
    border-radius: var(--r-lg);
    background: var(--card);
    overflow: hidden;
}

.stat-block {
    padding: 28px 26px;
    border-right: 1px solid var(--border);
    position: relative;
    transition: background 0.2s;
}
.stat-block:last-child { border-right: none; }
.stat-block:hover { background: var(--card-2); }

.stat-num {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--white);
    margin-bottom: 7px;
}
.stat-num .accent { font-size: inherit; }

.stat-label {
    font-size: 13px;
    color: var(--muted-2);
    line-height: 1.5;
}


/* ============================================================
   MISSION
============================================================= */

.mission-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: var(--max);
    margin: 0 auto;
}

.mission-text h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.18;
    color: var(--white);
    margin-bottom: 20px;
}
.mission-text p       { font-size: 16px; color: var(--muted); line-height: 1.78; margin-bottom: 18px; }
.mission-text p:last-child { margin-bottom: 0; }
.mission-text strong  { color: var(--white); font-weight: 600; }

.mission-card-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mission-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 20px 22px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: border-color 0.28s;
}
.mission-card:hover { border-color: var(--orange-border); }

.mission-card-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 9px;
    background: var(--orange-soft);
    border: 1px solid var(--orange-border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-card-text h4 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}
.mission-card-text p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }


/* ============================================================
   STORY + TIMELINE
============================================================= */

.story-layout {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 80px;
    align-items: start;
}

.story-content h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.18;
    color: var(--white);
    margin-bottom: 22px;
}
.story-content p       { font-size: 16px; color: var(--muted); line-height: 1.78; margin-bottom: 18px; }
.story-content p:last-child { margin-bottom: 0; }
.story-content strong  { color: var(--white); font-weight: 600; }

/* Timeline */
.story-timeline {
    display: flex;
    flex-direction: column;
    padding-top: 8px;
}

.timeline-item {
    display: flex;
    gap: 20px;
    padding-bottom: 32px;
}
.timeline-item:last-child { padding-bottom: 0; }

.timeline-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.timeline-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--card);
    border: 1px solid var(--border-2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    color: var(--orange);
    z-index: 1;
    transition: background 0.28s, border-color 0.28s;
}
.timeline-item:hover .timeline-dot {
    background: var(--orange-soft);
    border-color: var(--orange-border);
}

.timeline-line {
    width: 1px;
    flex: 1;
    background: var(--border-2);
    margin-top: 5px;
    min-height: 20px;
}

.timeline-content { padding-top: 5px; }

.timeline-year {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 5px;
}
.timeline-content h4 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 7px;
    letter-spacing: -0.01em;
}
.timeline-content p { font-size: 14px; color: var(--muted); line-height: 1.65; }


/* ============================================================
   VALUES
============================================================= */

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: var(--max);
    margin: 0 auto;
}

.value-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 34px 28px;
    transition: border-color 0.28s, transform 0.28s;
    position: relative;
    overflow: hidden;
}
.value-card:hover { border-color: var(--orange-border); transform: translateY(-3px); }
.value-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    opacity: 0;
    transition: opacity 0.28s;
}
.value-card:hover::before { opacity: 1; }

.value-num {
    font-family: var(--font-display);
    font-size: clamp(36px, 7vw, 56px);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1;
    color: var(--orange);
    opacity: 0.15;
    margin-bottom: 16px;
}
.value-card h3 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 12px;
}
.value-card p { font-size: 15px; color: var(--muted); line-height: 1.68; }


/* ============================================================
   WHY  (compare-table styles live in base.css)
============================================================= */

.why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: var(--max);
    margin: 0 auto;
}
.why-text h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.18;
    color: var(--white);
    margin-bottom: 20px;
}
.why-text p       { font-size: 16px; color: var(--muted); line-height: 1.78; margin-bottom: 18px; }
.why-text p:last-child { margin-bottom: 0; }
.why-text strong  { color: var(--white); font-weight: 600; }


/* ============================================================
   APPROACH
============================================================= */

.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.approach-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    transition: border-color 0.28s;
}
.approach-card:hover { border-color: var(--orange-border); }

.approach-card-num {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
}
.approach-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.3;
}
.approach-card p { font-size: 15px; color: var(--muted); line-height: 1.68; }


/* ============================================================
   MARKETS
============================================================= */

.markets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: var(--max);
    margin: 0 auto;
}

.market-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 30px 26px;
    text-align: center;
    transition: border-color 0.28s, transform 0.28s;
}
.market-card:hover { border-color: var(--orange-border); transform: translateY(-3px); }

.market-flag { font-size: 38px; margin-bottom: 14px; line-height: 1; }

.market-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--white);
    margin-bottom: 9px;
}
.market-desc { font-size: 14px; color: var(--muted-2); line-height: 1.55; }


/* ============================================================
   ABOUT CTA
============================================================= */

.about-cta-inner {
    max-width: 660px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.about-cta-title {
    font-size: clamp(28px, 4.5vw, 50px);
    margin-bottom: 18px;
}
.about-cta-sub {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.68;
    margin-bottom: 38px;
}
.about-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}


/* ============================================================
   RESPONSIVE
============================================================= */

@media (max-width: 1040px) {
    .story-layout { grid-template-columns: 1fr; gap: 52px; }
    .story-timeline { max-width: 580px; }
}

@media (max-width: 900px) {
    .mission-layout  { grid-template-columns: 1fr; gap: 48px; }
    .why-layout      { grid-template-columns: 1fr; gap: 48px; }
    .values-grid     { grid-template-columns: repeat(2, 1fr); }
    .approach-grid   { grid-template-columns: 1fr; max-width: 520px; }
    .markets-grid    { grid-template-columns: repeat(2, 1fr); }
    .hero-stat-strip { grid-template-columns: repeat(2, 1fr); }
    .stat-block:nth-child(2) { border-right: none; }
    .stat-block:nth-child(3),
    .stat-block:nth-child(4) { border-top: 1px solid var(--border); }
}

@media (max-width: 580px) {
    .about-hero-title { font-size: clamp(30px, 9vw, 48px); }
    .values-grid  { grid-template-columns: 1fr; }
    .markets-grid { grid-template-columns: 1fr 1fr; }
    .hero-stat-strip { grid-template-columns: 1fr; }
    .stat-block { border-right: none; border-bottom: 1px solid var(--border); }
    .stat-block:last-child { border-bottom: none; }
}

@media (max-width: 480px) {
    .about-hero-title { font-size: clamp(26px, 8vw, 38px); }
    .mission-layout  { gap: 32px; }
    .why-layout      { gap: 32px; }
    .markets-grid    { grid-template-columns: 1fr; }
    .approach-grid   { max-width: 100%; }
}
