:root {
    --about-surface: #f8faff;
    --about-ink: #0f172a;
    --about-muted: #4b5563;
    --about-border: rgba(88, 141, 250, 0.15);
    --about-card: #ffffff;
}

.about-main {
    background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 45%, #ffffff 100%);
}

.about-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(88, 141, 250, 0.12);
    color: #4b5563;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.about-hero {

    position: relative;
    overflow: hidden;
    padding: 120px 0 100px 0;
}

.about-hero::before,
.about-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(60px);
    opacity: 0.8;
}


.about-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.about-hero-text h1 {
    margin: 16px 0 20px 0;
    font-size: clamp(40px, 4vw, 40px);
    line-height: 1.15;
    color: var(--about-ink);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.about-lead {
    font-size: f 18px;
    line-height: 1.7;
    color: #4b5563;
    max-width: 640px;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0 28px 0;
}

.about-tags span {
    padding: 10px 14px;
    border-radius: 999px;
    background: #111827;
    color: #ffffff;
    font-size: 13px;
    letter-spacing: 0.08em;
}

.about-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.about-stat {
    padding: 18px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--about-border);
    box-shadow: 0 18px 60px -30px rgba(9, 26, 59, 0.35);
}

.about-stat h3 {
    margin: 0 0 8px 0;
    font-size: 28px;
    color: var(--about-ink);
}

.about-stat p {
    margin: 0;
    color: #4b5563;
    font-size: 14px;
}

.about-hero-panel {
    background: var(--about-card);
    border: 1px solid var(--about-border);
    border-radius: 20px;
    padding: 26px;
    box-shadow: 0 24px 80px -36px rgba(9, 26, 59, 0.3);
    display: flex;
    flex-direction: column;
    gap: 18px;
    backdrop-filter: blur(12px);
}

.about-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(88, 141, 250, 0.12);
    color: #4b5563;
    border-radius: 12px;
    font-weight: 600;
    border: 1px solid var(--about-border);
}

.about-panel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.12);
}

.about-panel-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.about-panel-list li {
    display: grid;
    grid-template-columns: 24px 1fr;
    align-items: start;
    gap: 12px;
    font-size: 15px;
    color: #1f2937;
}

.about-panel-list i {
    width: 20px;
    height: 20px;
    color: #588dfa;
}

.about-panel-cta {
    border-top: 1px solid var(--about-border);
    padding-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.cta-label {
    margin: 0;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #6b7280;
}

.cta-text {
    margin: 4px 0 0 0;
    color: #111827;
    font-weight: 600;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 14px;
    background: linear-gradient(120deg, #4a7fe6, #588dfa);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 12px 28px -12px rgba(88, 141, 250, 0.6);
}

.about-section {
    padding: 90px 0;
    display: grid;
    gap: 40px;
}

.about-section-header {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
    gap: 32px;
}

.about-section-header h2 {
    margin: 10px 0 0 0;
    font-size: clamp(34px, 3vw, 46px);
    line-height: 1.25;
    color: var(--about-ink);
    font-weight: 600;
}

.about-section-lead {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #a3b6dd;
    padding-bottom: 10px;
}

.about-story-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.story-card {
    background: #f7f9ff;
    border: 1px solid var(--about-border);
    border-radius: 16px;
    padding: 18px;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 14px;
    align-items: center;
}

.story-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.story-icon i {
    width: 22px;
    height: 22px;
}

.story-card h3 {
    margin: 0 0 6px 0;
    font-size: 18px;
    color: #111827;
    font-weight: 700;
}

.story-card p {
    margin: 0;
    color: #4b5563;
    line-height: 1.6;
}

.about-pillars {
    background: #f8faff;
    padding: 90px 0;
}

.pillars-header {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 30px;
    align-items: start;
    margin-bottom: 40px;
    padding: 10px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.pillar-card {
    background: #ffffff;
    border: 1px solid var(--about-border);
    border-radius: 18px;
    padding: 22px;
    display: grid;
    gap: 12px;
    box-shadow: 0 20px 60px -36px rgba(9, 26, 59, 0.25);
}

.pillar-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #111827;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pillar-icon i {
    width: 22px;
    height: 22px;
}

.pillar-card h3 {
    margin: 0;
    font-size: 18px;
    color: #111827;
    font-weight: 700;
}

.pillar-card p {
    margin: 0;
    color: #4b5563;
    line-height: 1.6;
}

.pill-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(88, 141, 250, 0.12);
    color: #1f2937;
    font-weight: 700;
    width: fit-content;
}

.about-timeline {
    padding: 90px 0;
    display: grid;
    gap: 32px;
}

.timeline-header {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 30px;
    align-items: start;
}

.timeline-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: start;
}

.timeline-list {
    display: grid;
    gap: 16px;
    border-left: 2px dashed rgba(88, 141, 250, 0.5);
    padding-left: 16px;
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    padding-left: 18px;
}

.timeline-item h3 {
    margin: 0;
    color: #0f172a;
    font-size: 16px;
}

.timeline-item p {
    margin: 0;
    color: #4b5563;
    line-height: 1.6;
    font-size: 14px;
}

.timeline-dot {
    position: absolute;
    left: -23.5px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #588dfa;
    box-shadow: 0 0 0 10px rgba(88, 141, 250, 0.1);
}

.timeline-card {
    background: #0f172a;
    color: #e5e7eb;
    border-radius: 18px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 24px 70px -36px rgba(9, 26, 59, 0.45);
}

.timeline-card h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
}

.timeline-card p {
    margin: 0 0 20px 0;
    color: #cdd5e0;
    line-height: 1.7;
    font-size: 13px;
}

.timeline-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.timeline-meta .meta-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9ca3af;
}

.timeline-meta strong {
    display: block;
    font-size: 22px;
    color: #ffffff;
    margin: 4px 0;
}

.timeline-meta p {
    margin: 0;
    color: #9ca3af;
    font-size: 13px;
}

.about-presence {
    position: relative;
    background: linear-gradient(120deg, rgba(9, 26, 59, 0.95), rgba(9, 26, 59, 0.88));
    color: #e5e7eb;
    padding: 160px 0 90px 0;
}

.presence-top-image {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -55%);
    width: min(1080px, 92vw);
    pointer-events: none;
}

.presence-top-image img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 22px 48px rgba(0, 0, 0, 0.38));
}

.presence-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: start;
    padding: 10px;
}

.presence-grid h2 {
    margin: 12px 0;
    font-size: clamp(30px, 3vw, 40px);
    color: #ffffff;
}

.presence-list {
    display: grid;
    gap: 14px;
    margin-top: 16px;
    padding-bottom: 10px;

}

.presence-item {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    align-items: center;
    font-size: 15px;
    color: #cbd5e1;
}

.presence-item i {
    width: 22px;
    height: 22px;
    color: #8ab1ff;
}

.presence-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 24px 60px -36px rgba(0, 0, 0, 0.5);
}

.presence-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
    font-weight: 600;
}

.presence-destinations {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.presence-destinations li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #e5e7eb;
    font-weight: 600;
}

.presence-destinations li:last-child {
    border-bottom: none;
}

.presence-note {
    margin: 14px 0 0 0;
    color: #cbd5e1;
    line-height: 1.6;
}

.about-cta {
    padding: 90px 0;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: center;
}

.cta-grid h2 {
    margin: 12px 0;
    font-size: clamp(32px, 3vw, 44px);
    color: #0f172a;
}

.cta-card {
    background: #0f172a;
    color: #e5e7eb;
    padding: 22px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 22px 64px -34px rgba(9, 26, 59, 0.55);
    display: grid;
    gap: 16px;
}

.cta-card-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.meta-label {
    display: block;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9ca3af;
}

.cta-card-text {
    margin: 4px 0 0 0;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.cta-link {
    color: #8ab1ff;
    text-decoration: none;
    font-weight: 700;
}

.cta-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.cta-note {
    margin: 0;
    color: #cbd5e1;
    line-height: 1.6;
}

@media (max-width: 1100px) {

    .about-hero-grid,
    .about-section-header,
    .pillars-header,
    .timeline-header,
    .timeline-grid,
    .presence-grid,
    .cta-grid {
        grid-template-columns: 1fr;
    }

    .about-hero {
        padding-top: 100px;
    }

    .about-hero-panel {
        order: -1;
    }

    .about-hero-stats {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
    }

    .about-story-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-meta {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .about-main {
        padding-top: 30px;
    }

    .about-hero {
        padding: 80px 0 0px 0;
    }

    .about-hero-text{
        padding: 10px;
    }

    .about-hero-text h1 {
        font-size: clamp(27px, 6vw, 40px);
    }

    .about-hero-stats {
        grid-template-columns: 1fr;
    }

    .about-section,
    .about-pillars,
    .about-timeline,
    .about-cta,
    .about-presence {
        padding: 70px 0;
    }

    .story-card {
        grid-template-columns: 48px 1fr;
    }

    .story-icon {
        width: 48px;
        height: 48px;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .timeline-meta {
        grid-template-columns: 1fr;
    }

    .presence-grid {
        gap: 20px;
    }

    .presence-top-image {
        transform: translate(-50%, -50%);
        width: min(900px, 100vw);
    }
}

@media (min-width: 768px) {
    .about-timeline {
        margin-bottom: 146px;
    }
    .presence-top-image img {
    filter: none;
}
}

@media (max-width: 768px) {
    .about-timeline {
        margin-bottom: 66px;
        padding: 20px;
    }
}