:root {
    --about-navy-950: #0b1322;
    --about-navy-900: #121f3d;
    --about-navy-800: #1b2c52;
    --about-gold-500: #f5b82e;
    --about-gold-600: #de9f14;
    --about-red-600: #d6432b;
    --about-cream-50: #f8f6f1;
    --about-ink-900: #14181f;
    --about-slate-500: #63697a;
    --about-border-soft: rgba(18, 31, 61, 0.08);
    --about-border-on-navy: rgba(255, 255, 255, 0.12);
    --line: rgba(255, 255, 255, 0.18);
    --gold: var(--about-gold-500);
    --ink: rgba(255, 255, 255, 0.78);
}

.about-section,
.about-section * {
    box-sizing: border-box;
}

.about-section {
    font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
    color: var(--about-ink-900);
    background: var(--about-cream-50);
    line-height: 1.6;
}

.about-section h2,
.about-section h3 {
    font-family: 'Sora', 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    letter-spacing: 0;
    margin: 0;
}

.about-section p {
    margin: 0;
}

.about-section a {
    color: inherit;
    text-decoration: none;
}

.about-wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 32px;
}

.about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-eyebrow::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 2px;
    background: currentColor;
}

.about-hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 120px;
    background: var(--about-navy-900);
    color: #fff;
    scroll-margin-top: 88px;
}

.about-hero::after {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 420px;
    height: 420px;
    border: 1px solid var(--about-border-on-navy);
    border-radius: 50%;
}

.about-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 64px;
    align-items: center;
}

.about-hero .about-eyebrow {
    margin-bottom: 20px;
    color: var(--about-gold-500);
}

.about-hero h2 {
    margin-bottom: 20px;
    font-size: 40px;
    line-height: 1.18;
}

.about-hero h2 em {
    color: var(--about-gold-500);
    font-style: normal;
}

.about-hero p {
    max-width: 460px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
}

.about-hero-stats {
    display: flex;
    gap: 36px;
}

.about-num {
    color: var(--about-gold-500);
    font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 24px;
    font-weight: 600;
}

.about-label {
    max-width: 120px;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12.5px;
}

.dial {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 420px);
    height: 220px;
    min-width: 0;
    overflow: hidden;
    justify-self: end;
}

.dial img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

.dial svg {
    display: block;
    width: 220px;
    height: 220px;
    max-width: 100%;
    max-height: 100%;
    flex: 0 1 220px;
}

.about-values,
.about-journey {
    padding: 88px 0;
}

.about-values .about-eyebrow,
.about-journey .about-eyebrow {
    color: var(--about-red-600);
}

.about-section-head h2 {
    color: var(--about-navy-900);
}

.about-section-head {
    max-width: 560px;
    margin-bottom: 48px;
}

.about-section-head h2 {
    font-size: 28px;
    line-height: 1.28;
}

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

.about-value-card {
    min-height: 210px;
    padding: 24px 22px;
    background: #fff;
    border: 1px solid var(--about-border-soft);
    border-radius: 14px;
}

.about-value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 16px;
    color: var(--about-gold-600);
    background: #fdf3df;
    border-radius: 10px;
}

.about-value-icon svg {
    width: 19px;
    height: 19px;
}

.about-value-card h3 {
    margin-bottom: 8px;
    color: var(--about-navy-900);
    font-size: 15.5px;
}

.about-value-card p {
    color: var(--about-slate-500);
    font-size: 13.5px;
}

.about-journey {
    padding-top: 0;
}

.about-journey-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 12px;
}

.about-journey-track::before {
    content: "";
    position: absolute;
    top: 19px;
    left: 6%;
    right: 6%;
    z-index: 0;
    height: 1px;
    background: var(--about-border-soft);
}

.about-journey-step {
    position: relative;
    z-index: 1;
}

.about-journey-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 16px;
    color: var(--about-gold-500);
    background: var(--about-navy-900);
    border-radius: 50%;
    font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 14px;
    font-weight: 600;
}

.about-journey-step:last-child .about-journey-num {
    color: var(--about-navy-900);
    background: var(--about-gold-500);
}

.about-journey-step h3 {
    margin-bottom: 6px;
    color: var(--about-navy-900);
    font-size: 14.5px;
}

.about-journey-step p {
    color: var(--about-slate-500);
    font-size: 13px;
}

.about-cta {
    padding: 80px 0;
    color: #fff;
    text-align: center;
    background: var(--about-navy-900);
}

.about-cta h2 {
    margin-bottom: 12px;
    font-size: 26px;
}

.about-cta p {
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.65);
}

.about-btn-row {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 26px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.about-btn:hover {
    transform: translateY(-2px);
}

.about-btn-primary {
    color: var(--about-navy-900);
    background: var(--about-gold-500);
}

.about-btn-primary:hover {
    background: #ffd064;
}

.about-btn-ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.about-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.08);
}

.about-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .about-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .about-btn {
        transition: none;
    }

    .about-btn:hover {
        transform: none;
    }
}

@media (max-width: 860px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-grid {
        gap: 32px;
    }

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

    .about-hero-copy {
        grid-row: 2;
    }

    .dial {
        grid-row: 1;
        justify-self: start;
        margin-top: 32px;
    }

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

    .about-journey-track {
        grid-template-columns: 1fr;
    }

    .about-journey-track::before {
        display: none;
    }

    .about-hero h2 {
        font-size: 30px;
    }
}

@media (max-width: 560px) {
    .about-wrap {
        padding: 0 20px;
    }

    .about-hero-stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }

    .about-label {
        max-width: none;
    }

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

    .about-values,
    .about-journey {
        padding: 68px 0;
    }
}
