/* ==================================================
   BOTRON DYNAMICS - ABOUT INTRO SECTION
================================================== */

.hero-eyebrow {
    font-size: .72rem; font-weight: 700; letter-spacing: .2em;
    text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 16px;
}
.botron-future-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    color: rgba(255, 255, 255, .4);
    letter-spacing: .08em;
    margin: 28px 0px;
}
.botron-future-tag a {
    color: rgba(255, 255, 255, .4);
    transition: color .2s;
}
.botron-future-tag a:hover {
    color: rgba(255, 255, 255, .8);
}

:root {
    --max-w: 1200px;
    /* --max-w: 1360px; */
    --gutter: clamp(20px, 5vw, 60px);

    --accent:        #6846c6;
    --accent-dark:   #4f34a3;
    --accent-light:  #ede8fb;
    --blue:          #2563eb;
    --ink:           #0e0e12;
    --ink-2:         #2c2c38;
    --ink-3:         #555564;
    --surface:       #f5f5f8;
    --surface-2:     #ededf3;
    --white:         #ffffff;
    --border:        rgba(0,0,0,.08);

    --font-sans: 'inter', sans-serif;
    --font-serif: 'inter', sans-serif;

    --ease: cubic-bezier(.22,1,.36,1);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    color: var(--ink);
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }

/* ─────────────────────────────────────────────
    SHARED TOKENS (keep existing vars working)
───────────────────────────────────────────── */
.botron-about-section   { padding: 100px var(--gutter); background: #fff; }
.botron-about-container { max-width: var(--max-w); margin: 0 auto; }
.botron-section-header  { max-width: 760px; margin-bottom: 60px; }
.botron-section-label   {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--accent);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.botron-section-title {
    color: var(--ink);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    font-family: var(--font-serif);
    margin: 0;
}

/* ─────────────────────────────────────────────
    SECTION 1 — OUR STORY
───────────────────────────────────────────── */
.bd-story-section {
    position: relative;
    overflow: hidden;
}
.bd-story-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
    radial-gradient(ellipse 60% 80% at 100% 40%, rgba(104,70,198,.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at -10% 60%, rgba(37,99,235,.04) 0%, transparent 70%);
    pointer-events: none;
}

.bd-story-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: start;
}

.bd-story-text .botron-section-title {
    margin-bottom: 28px;
}

.bd-story-para {
    color: var(--ink-3);
    line-height: 1.85;
    font-size: 1.0625rem;
    margin-bottom: 20px;
}
.bd-story-para:last-of-type { margin-bottom: 32px; }

.bd-story-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    font-size: .95rem;
    transition: gap .25s var(--ease);
}
.bd-story-link:hover { gap: 14px; }
.bd-story-link .material-icons-round { font-size: 18px; }

/* Timeline */
.bd-story-timeline {
    position: sticky;
    top: 100px;
}

.bd-timeline-item {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 20px;
    padding-bottom: 36px;
    position: relative;
}
.bd-timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 9px;
    top: 20px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent) 0%, var(--surface-2) 100%);
}

.bd-timeline-marker {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--white);
    border: 2.5px solid var(--accent);
    position: relative;
    z-index: 1;
    margin-top: 2px;
    flex-shrink: 0;
}

.bd-timeline-marker
/* .bd-timeline-item:first-child .bd-timeline-marker*/ { 
    background: var(--accent);
    box-shadow: 0 0 0 5px var(--accent-light);
}

.bd-timeline-content { padding-bottom: 4px; }

.bd-timeline-year {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent-dark);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.bd-timeline-title {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--ink);
}

.bd-timeline-desc {
    font-size: .9rem;
    color: var(--ink-3);
    line-height: 1.7;
}

/* Mission & Vision strip — folded into the Story section so it reads
   as a closing statement rather than a standalone, separately-padded section */
.bd-mission-strip {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 56px;
    margin-top: 80px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.bd-mission-divider {
    width: 1px;
    background: var(--border);
}

.bd-mission-label {
    display: block;
    margin-bottom: 12px;
    color: var(--accent);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.bd-mission-text {
    color: var(--ink-3);
    line-height: 1.8;
    font-size: 1rem;
    max-width: 460px;
}

/* ─────────────────────────────────────────────
    SECTION 2 — STATS
───────────────────────────────────────────── */
.bd-stats-section {
    padding: 100px var(--gutter);
    background: var(--ink);
    position: relative;
    overflow: hidden;
}
.bd-stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
    radial-gradient(ellipse 50% 100% at 10% 50%, rgba(104,70,198,.35) 0%, transparent 60%),
    radial-gradient(ellipse 40% 80% at 90% 20%, rgba(37,99,235,.2) 0%, transparent 60%);
    pointer-events: none;
}
.bd-stats-section .botron-section-label { color: rgba(255,255,255,.6); }
.bd-stats-section .botron-section-title { color: #fff; }
.bd-stats-section .botron-section-header { margin-bottom: 48px; }

.bd-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
}

.bd-stat-card {
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(255,255,255,.04);
    border-right: 1px solid rgba(255,255,255,.06);
    transition: background .3s var(--ease);
    position: relative;
}
.bd-stat-card:last-child { border-right: none; }
.bd-stat-card:hover { background: rgba(255,255,255,.07); }

.bd-stat-number {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 5vw, 4rem);
    color: #fff;
    line-height: 1;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bd-stat-label {
    font-size: .9rem;
    font-weight: 600;
    color: rgba(255,255,255,.9);
    letter-spacing: .04em;
}

.bd-stat-desc {
    font-size: .84rem;
    color: rgba(255,255,255,.45);
    line-height: 1.6;
}

/* ─────────────────────────────────────────────
    SECTION 3 — WHY BOTRON DYNAMICS
───────────────────────────────────────────── */
.botron-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.botron-why-item {
    padding: 35px;
    background: #f8fafc;
    border-radius: 20px;
}
.botron-why-item > span {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--accent);
    font-size: 1.25rem;
    font-weight: 700;
}
.botron-why-item h4  { margin-bottom: 14px; font-weight: 600; }
.botron-why-item p   { line-height: 1.8; color: var(--ink-3); font-size: .95rem; }

/* ─────────────────────────────────────────────
    SECTION 4 — LEADERSHIP & CAREERS CTA
───────────────────────────────────────────── */
.bd-careers-strip {
    padding: 0 var(--gutter);
    background: var(--white);
}

.bd-careers-strip-container {
    max-width: unset;
    padding: 60px 0;
}

.bd-careers-strip-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 72px 64px;
    border-radius: 24px;
    background: linear-gradient(135deg, #faf9ff 0%, #f0ecfd 50%, #ebe8fb 100%);
    border: 1px solid rgba(104,70,198,.12);
    position: relative;
    overflow: hidden;
}
.bd-careers-strip-inner::before {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(104,70,198,.08) 0%, transparent 70%);
    pointer-events: none;
}

.bd-careers-strip-text { flex: 1; }
.bd-careers-strip-text .botron-section-label { color: var(--accent); }

.bd-careers-strip-title {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 14px;
}

.bd-careers-strip-desc {
    font-size: .95rem;
    color: var(--ink-3);
    line-height: 1.8;
    max-width: 520px;
}

.bd-careers-strip-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

.bd-careers-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    background: var(--accent);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    font-size: .95rem;
    transition: background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
    white-space: nowrap;
}
.bd-careers-primary-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(104,70,198,.3);
}
.bd-careers-primary-btn .material-icons-round { font-size: 18px; }

.bd-careers-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    background: transparent;
    color: var(--accent);
    border: 1.5px solid rgba(104,70,198,.3);
    border-radius: 8px;
    font-weight: 600;
    font-size: .95rem;
    white-space: nowrap;
    transition: background .25s var(--ease), border-color .25s var(--ease);
}
.bd-careers-secondary-btn:hover {
    background: rgba(104,70,198,.06);
    border-color: var(--accent);
}

/* ─────────────────────────────────────────────
    SCROLL REVEAL ANIMATION
───────────────────────────────────────────── */
.bd-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.bd-reveal.visible {
    opacity: 1;
    transform: none;
}
.bd-reveal[data-delay="1"] { transition-delay: .1s; }
.bd-reveal[data-delay="2"] { transition-delay: .2s; }
.bd-reveal[data-delay="3"] { transition-delay: .3s; }
.bd-reveal[data-delay="4"] { transition-delay: .4s; }

/* ─────────────────────────────────────────────
    RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .bd-story-grid          { grid-template-columns: 1fr; gap: 60px; }
    .bd-story-timeline      { position: static; }
    .bd-stats-grid          { grid-template-columns: repeat(2, 1fr); }
    .bd-stat-card           { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
}

@media (max-width: 768px) {
    .botron-about-section   { padding: 72px var(--gutter); }
    .botron-section-header  { margin-bottom: 40px; }
    .bd-stats-section       { padding: 72px var(--gutter); }
    .botron-why-grid        { grid-template-columns: 1fr; }
    .bd-mission-strip       { grid-template-columns: 1fr; gap: 28px; margin-top: 56px; padding-top: 32px; }
    .bd-mission-divider     { display: none; }
    .bd-careers-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 48px 32px;
    gap: 32px;
    }
    .bd-careers-strip-actions { width: 100%; }
    .bd-careers-primary-btn,
    .bd-careers-secondary-btn { width: 100%; justify-content: center; }
    .botron-contact-panel   { flex-direction: column; align-items: flex-start; }
    .botron-contact-button  { width: 100%; }
}

@media (max-width: 576px) {
    .bd-stats-grid          { grid-template-columns: 1fr; }
}