/* ============================================================
   ABOUT PAGE — Document-style, restrained, procurement-ready
   Layers on top of homepage.css. Uses the same tokens but with
   deliberately fewer lime accents and more neutral borders.

   Design philosophy:
   - calmer than service pages
   - less card-heavy
   - more document-like
   - minimal animation (one subtle pulse only)
   - fewer lime accents, more neutral borders
   - the restraint IS the premium signal
   ============================================================ */

.about-page {
    background: var(--bg-dark);
}

/* Tokens scoped for this page only */
.about-page {
    --about-hairline: rgba(255, 255, 255, 0.07);
    --about-hairline-soft: rgba(255, 255, 255, 0.04);
    --about-panel-bg: rgba(255, 255, 255, 0.015);
    --about-text-muted: #8899AA;
}

/* ==================================================================
   SHARED: KICKER, SECTION HEAD, TEXT LINK
   ================================================================== */
.about-kicker {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.about-section-title {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 2.8vw, 2.15rem);
    line-height: 1.2;
    letter-spacing: -0.022em;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}

.about-section-head {
    max-width: 780px;
    margin-bottom: 32px;
}

.about-text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-head);
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text-main);
    padding-bottom: 3px;
    border-bottom: 1px solid var(--about-hairline);
    transition: color 0.2s ease, border-color 0.2s ease;
}
.about-text-link:hover {
    color: var(--primary);
    border-bottom-color: rgba(102, 255, 51, 0.4);
}

/* Section rhythm — more breathing room than service pages */
.about-section {
    padding: clamp(72px, 10vw, 120px) 0;
    background: var(--bg-dark);
    position: relative;
}

/* Neutral hairline dividers between sections */
.about-section + .about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--about-hairline);
}

/* ==================================================================
   1. HERO — Quietest on the site, no animation, no CTA
   ================================================================== */
.about-hero {
    padding: clamp(140px, 17vh, 200px) 0 clamp(72px, 9vw, 120px);
    background: var(--bg-dark);
    border-bottom: 1px solid var(--about-hairline);
    overflow: hidden;
}

.about-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 48px;
    align-items: center;
}

.about-hero-content {
    max-width: none;
}

.about-kicker-hero {
    color: var(--primary);
    letter-spacing: 0.22em;
    margin-bottom: 24px;
}

.about-hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.1rem, 5vw, 3.4rem);
    line-height: 1.1;
    letter-spacing: -0.028em;
    font-weight: 800;
    color: var(--text-main);
    margin: 0 0 28px;
}

.about-hero-lead {
    font-size: clamp(1rem, 1.2vw, 1.12rem);
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 760px;
    margin: 0;
}

.about-hero-meta {
    display: grid;
    gap: 20px;
    margin-top: 32px;
    max-width: 520px;
}

.about-hero-globe {
    min-height: 540px;
}

/* ==================================================================
   2. COMPANY FACTS PANEL — The only elevated block on the page
   ================================================================== */
.about-facts-header {
    max-width: 720px;
    margin-bottom: 28px;
}

.about-facts-panel {
    border: 1px solid var(--about-hairline);
    border-radius: 10px;
    background: var(--about-panel-bg);
    overflow: hidden;
    max-width: 920px;
}

.about-facts-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px;
    border-bottom: 1px solid var(--about-hairline);
    background: rgba(255, 255, 255, 0.02);
    font-family: var(--font-head);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.about-facts-bar-state {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
    letter-spacing: 0.1em;
}

.about-facts-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 0 rgba(102, 255, 51, 0.45);
    animation: aboutPulse 2s infinite;
}

@keyframes aboutPulse {
    0%   { box-shadow: 0 0 0 0 rgba(102, 255, 51, 0.45); }
    70%  { box-shadow: 0 0 0 7px rgba(102, 255, 51, 0); }
    100% { box-shadow: 0 0 0 0 rgba(102, 255, 51, 0); }
}

.about-facts-list {
    margin: 0;
    padding: 8px 0;
}
.about-fact {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 22px;
    padding: 14px 22px;
    border-bottom: 1px dashed var(--about-hairline-soft);
    align-items: baseline;
}
.about-fact:last-child { border-bottom: none; }

.about-fact dt {
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0;
}
.about-fact dd {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-main);
    margin: 0;
    letter-spacing: -0.005em;
}

.about-facts-actions {
    margin-top: 18px;
}

@media (max-width: 720px) {
    .about-fact { grid-template-columns: 1fr; gap: 4px; padding: 16px 20px; }
    .about-facts-bar { padding: 14px 20px; font-size: 0.64rem; }
}

/* ==================================================================
   3. WHAT WE DO — Prose block only, no cards
   ================================================================== */
.about-prose-wrap {
    max-width: 840px;
}

.about-prose {
    margin-top: 12px;
}

.about-prose p {
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--text-main);
    margin: 0 0 20px;
    max-width: 720px;
    letter-spacing: -0.005em;
}

.about-prose p:last-of-type { margin-bottom: 0; }

.about-prose-footnote {
    margin-top: 24px !important;
    padding-top: 18px;
    border-top: 1px solid var(--about-hairline);
    font-size: 0.9rem !important;
}

/* ==================================================================
   4. HOW WE WORK — Hairline principle grid (no cards)
   ================================================================== */
.about-principles {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
    column-gap: 48px;
    max-width: 1000px;
    border-top: 1px solid var(--about-hairline);
    padding-top: 40px;
}

.about-principle {
    position: relative;
    padding: 0 16px 0 0;
    border-right: 1px solid var(--about-hairline);
}
.about-principle:nth-child(2n) {
    border-right: none;
    padding-right: 0;
    padding-left: 16px;
}

.about-principle-num {
    display: block;
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.about-principle h3 {
    font-family: var(--font-head);
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: -0.012em;
    color: var(--text-main);
    margin: 0 0 10px;
}

.about-principle p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
    max-width: 380px;
}

@media (max-width: 720px) {
    .about-principles { grid-template-columns: 1fr; row-gap: 28px; padding-top: 28px; }
    .about-principle,
    .about-principle:nth-child(2n) {
        border-right: none;
        padding: 0 0 24px 0;
        border-bottom: 1px solid var(--about-hairline);
    }
    .about-principle:last-child { border-bottom: none; padding-bottom: 0; }
}

/* ==================================================================
   5. LEADERSHIP — Signed note, editorial
   ================================================================== */
.about-leadership-note {
    max-width: 820px;
    margin: 0;
    padding: 0;
}

.about-leadership-note blockquote {
    margin: 0;
    padding: 0 0 0 28px;
    border-left: 1px solid var(--about-hairline);
}

.about-leadership-note blockquote p {
    font-family: var(--font-head);
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: -0.01em;
    color: var(--text-main);
    margin: 0;
}

.about-leadership-signoff {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 28px;
    padding-left: 28px;
}

.about-signoff-bar {
    width: 32px;
    height: 1px;
    background: var(--primary);
    flex-shrink: 0;
}

.about-leadership-signoff strong {
    display: block;
    font-family: var(--font-head);
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: -0.008em;
    color: var(--text-main);
    margin-bottom: 3px;
}

.about-leadership-signoff span {
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

@media (max-width: 720px) {
    .about-leadership-note blockquote { padding-left: 20px; }
    .about-leadership-signoff { padding-left: 20px; }
}

/* ==================================================================
   6. SECTORS — Inline index, hairline-separated
   ================================================================== */
.about-sector-index {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    max-width: 1100px;
    border-top: 1px solid var(--about-hairline);
    padding-top: 28px;
}

.about-sector-index span {
    display: inline-block;
    font-family: var(--font-head);
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    font-weight: 500;
    letter-spacing: -0.012em;
    color: var(--text-main);
    padding: 10px 22px 10px 0;
    margin-right: 22px;
    position: relative;
    transition: color 0.2s ease;
}

.about-sector-index span:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--about-hairline);
}

.about-sector-index span:hover {
    color: var(--primary);
}

@media (max-width: 720px) {
    .about-sector-index { padding-top: 20px; }
    .about-sector-index span { font-size: 1rem; padding: 8px 18px 8px 0; margin-right: 18px; }
}

/* ==================================================================
   7. COMPLIANCE — Flat table, no panel
   ================================================================== */
.about-compliance-list {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--about-hairline);
    max-width: 820px;
}

.about-compliance-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    padding: 18px 0;
    border-bottom: 1px solid var(--about-hairline);
    align-items: baseline;
}

.about-compliance-row dt {
    font-family: var(--font-head);
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: -0.008em;
    color: var(--text-main);
    margin: 0;
}

.about-compliance-row dd {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
    font-family: var(--font-head);
    letter-spacing: 0.04em;
}

.about-compliance-footnote {
    margin-top: 24px;
    font-size: 0.9rem;
}

/* ==================================================================
   8. LOCATION — Small prose block
   ================================================================== */
.about-location-block {
    max-width: 720px;
}

.about-location-block p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-main);
    margin: 14px 0 24px;
    max-width: 640px;
    letter-spacing: -0.005em;
}

.about-location-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--about-hairline);
}

/* ==================================================================
   9. FINAL CTA — Quiet, no glow, both outline
   ================================================================== */
.about-final-cta {
    padding: clamp(64px, 8vw, 96px) 0;
    border-top: 1px solid var(--about-hairline);
    background: var(--bg-dark);
}
.about-final-cta::before { display: none; }

.about-cta-content {
    max-width: 640px;
}

.about-cta-title {
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 12px;
}

.about-cta-content p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0 0 26px;
    max-width: 540px;
}

.about-cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Outline CTA styling specific to About — calmer than service pages */
.about-cta-btn.btn-outline {
    padding: 13px 28px;
    border: 1px solid var(--border-soft);
    color: var(--text-main);
    border-radius: 6px;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
    box-shadow: none;
}
.about-cta-btn.btn-outline::before {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}
.about-cta-btn.btn-outline:hover {
    color: var(--text-main);
    border-color: var(--primary-tint-30);
    box-shadow: none;
}

/* ==================================================================
   ABOUT PRESENCE / LIVE GLOBE
   ================================================================== */

.about-time-card {
    width: 100%;
    max-width: 440px;
}

.about-presence-status {
    margin: 0;
    font-size: 0.72rem;
    line-height: 1.6;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-footprint-panel {
    max-width: 520px;
    border-top: 1px solid var(--about-hairline);
    padding-top: 18px;
    display: grid;
    gap: 18px;
}

.about-footprint-group {
    display: grid;
    gap: 10px;
}

.about-footprint-label {
    font-family: var(--font-head);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.about-footprint-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.about-footprint-tag {
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border: 1px solid var(--about-hairline);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.025);
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-main);
    white-space: nowrap;
}

.about-footprint-tag.is-active {
    border-color: rgba(102, 255, 51, 0.35);
    color: var(--primary);
}

.about-footprint-note {
    margin: 0;
    max-width: 500px;
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.about-globe-shell {
    min-height: 500px;
    border: 1px solid var(--about-hairline);
    border-radius: 10px;
    background:
        radial-gradient(circle at 30% 20%, rgba(102, 255, 51, 0.08), transparent 45%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    overflow: hidden;
    position: relative;
}

.about-globe-shell::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.18) 100%);
    pointer-events: none;
}

.about-earth-stage {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-earth-stage::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 40% 35%, rgba(111, 255, 72, 0.2), transparent 18%),
        radial-gradient(circle at 46% 50%, rgba(111, 255, 72, 0.14), transparent 26%),
        linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.24));
    pointer-events: none;
}

.about-earth-globe {
    position: relative;
    width: min(78%, 560px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle at 48% 52%, rgba(11, 25, 44, 0.9), rgba(4, 10, 19, 1) 72%);
    box-shadow:
        inset -90px -18px 130px rgba(0, 0, 0, 0.72),
        inset 18px 18px 40px rgba(255, 255, 255, 0.06),
        0 0 40px rgba(101, 255, 75, 0.08);
    overflow: hidden;
}

.about-earth-surface {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    overflow: hidden;
}

.about-earth-surface::before {
    content: '';
    position: absolute;
    top: 0;
    left: -58%;
    width: 220%;
    height: 100%;
    background-image: url('../content/earth-atmos-2048.jpg');
    background-repeat: repeat-x;
    background-size: auto 100%;
    background-position: 0 50%;
    animation: aboutEarthSpin 34s linear infinite;
}

.about-earth-globe::before {
    content: '';
    position: absolute;
    inset: -1.2%;
    border-radius: 50%;
    border: 1px solid rgba(145, 214, 255, 0.22);
    box-shadow:
        0 0 0 1px rgba(111, 255, 72, 0.08),
        0 0 36px rgba(80, 140, 255, 0.06);
}

.about-earth-globe::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.16), transparent 20%),
        radial-gradient(circle at 50% 82%, rgba(255, 255, 255, 0.28), transparent 22%),
        linear-gradient(110deg, rgba(255, 255, 255, 0.04), transparent 36%, rgba(0, 0, 0, 0.26) 78%);
    pointer-events: none;
}

.about-earth-glow {
    position: absolute;
    inset: -12%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(111, 255, 72, 0.18), rgba(111, 255, 72, 0.02) 55%, transparent 74%);
    filter: blur(16px);
    z-index: -1;
}

.about-globe-orbit {
    position: absolute;
    border: 1px solid rgba(111, 255, 72, 0.11);
    border-radius: 50%;
    pointer-events: none;
}

.orbit-one {
    width: 86%;
    height: 70%;
    transform: rotate(28deg);
    animation: aboutOrbitOne 26s linear infinite;
}

.orbit-two {
    width: 72%;
    height: 88%;
    transform: rotate(-24deg);
    animation: aboutOrbitTwo 30s linear infinite;
}

.about-earth-pin {
    position: absolute;
    left: 60.5%;
    top: 50.5%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff3232;
    box-shadow: 0 0 0 4px rgba(255, 50, 50, 0.14), 0 0 18px rgba(255, 50, 50, 0.4);
}

.about-earth-pin::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 6px;
    top: 3px;
    left: 9px;
    border-radius: 999px;
    background: #ff3232;
}

.about-earth-pin::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 32px;
    left: 5px;
    top: 10px;
    background: linear-gradient(180deg, rgba(255, 50, 50, 0.95), rgba(255, 50, 50, 0));
}

@keyframes aboutEarthSpin {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-37%);
    }
}

@keyframes aboutOrbitOne {
    from {
        transform: rotate(28deg);
    }
    to {
        transform: rotate(388deg);
    }
}

@keyframes aboutOrbitTwo {
    from {
        transform: rotate(-24deg);
    }
    to {
        transform: rotate(-384deg);
    }
}

.about-globe-label {
    position: absolute;
    right: 11%;
    bottom: 15%;
    display: grid;
    gap: 4px;
    padding: 10px 14px;
    border: 1px solid rgba(102, 255, 51, 0.16);
    border-radius: 10px;
    background: rgba(5, 10, 8, 0.68);
    box-shadow: 0 0 24px rgba(102, 255, 51, 0.08);
    text-align: left;
}

.about-globe-label strong {
    font-family: var(--font-head);
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    color: var(--text-main);
}

.about-globe-label span {
    font-family: var(--font-head);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.about-time-card .time-row {
    align-items: flex-end;
    gap: 14px;
}

.about-time-card .time-display-mini {
    align-items: flex-end;
}

.about-time-card .sync-row {
    align-items: center;
    gap: 8px;
    min-width: 84px;
    padding-top: 0;
    border-top: none;
}

.about-time-card #day-night-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    color: #a0c4ff;
}

.about-time-card #sun-icon,
.about-time-card #moon-icon {
    display: block;
    width: 14px;
    height: 14px;
}

.about-time-card #day-night-status {
    display: inline-block;
    line-height: 1;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

    .about-hero {
        padding-bottom: clamp(64px, 9vw, 96px);
    }

    .about-hero-content {
        max-width: 920px;
    }

    .about-hero-globe,
    .about-globe-shell,
    .about-earth-stage {
        min-height: 420px;
    }

    .about-globe-label {
        right: 8%;
        bottom: 10%;
    }
}

@media (max-width: 720px) {
    .about-hero {
        padding-top: 128px;
    }

    .about-hero-layout {
        gap: 28px;
    }

    .about-time-card {
        max-width: 100%;
    }

    .about-hero-globe,
    .about-globe-shell,
    .about-earth-stage {
        min-height: 360px;
    }

    .about-earth-globe {
        width: min(82%, 340px);
    }

    .about-time-card .time-row {
        gap: 10px;
    }

    .about-time-card .sync-row {
        min-width: 72px;
    }

    .about-globe-label {
        right: 50%;
        bottom: 8%;
        transform: translateX(50%);
        text-align: center;
    }
}

@media (max-width: 520px) {
    .about-footprint-tags {
        gap: 8px;
    }

    .about-footprint-tag {
        white-space: normal;
    }
}

/* ==================================================================
   LIVE HERO REFERENCE OVERRIDES
   ================================================================== */
.about-hero-live {
    border-bottom: 1px solid var(--about-hairline);
    min-height: clamp(680px, 78vh, 860px);
    padding: 92px 0 42px;
}

.about-hero-live .page-header-container {
    min-height: clamp(680px, 78vh, 860px);
    gap: 44px;
    align-items: center;
}

.about-page-header-text {
    max-width: 44%;
}

.about-page-title.page-title {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 4.7vw, 3.65rem);
    line-height: 1.02;
    letter-spacing: -0.024em;
    text-transform: none;
    margin-bottom: 18px;
}

.about-page-subtitle.page-subtitle {
    max-width: 620px;
    margin: 0;
    font-size: 1.04rem;
    line-height: 1.62;
    color: var(--text-muted);
}

.about-hero-live .timezone-compact {
    margin-top: 22px;
}

.about-hero-live .time-card-mini {
    min-width: 324px;
}

.about-hero-live .globe-container {
    min-height: clamp(680px, 78vh, 860px);
    background: none;
}

.about-hero-live #globe-canvas {
    background: none;
}

.about-hero-live #globe-canvas canvas {
    background: transparent;
}

.about-hero-live .time-row {
    align-items: center;
}

.about-hero-live .time-display-mini {
    align-items: baseline;
}

.about-hero-live .day-night-mini {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 70px;
    white-space: nowrap;
}

.about-hero-live .icon-mini {
    flex: 0 0 18px;
}

.about-hero-live .status-mini {
    display: inline-block;
    line-height: 1;
}

.about-hero-live .sync-row {
    align-items: center;
    gap: 6px 8px;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .about-hero-live {
        min-height: 0;
        padding: 86px 0 36px;
    }

    .about-hero-live .page-header-container,
    .about-hero-live .globe-container {
        min-height: 72vh;
    }

    .about-page-header-text {
        max-width: 45%;
    }

    .about-page-title.page-title {
        font-size: clamp(2.1rem, 4.8vw, 3.25rem);
    }

    .about-page-subtitle.page-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .about-hero-live {
        padding: 78px 0 32px;
    }

    .about-page-header-text {
        max-width: 100%;
    }

    .about-page-title.page-title,
    .page-header-text .about-page-title.page-title {
        text-align: center;
        font-size: clamp(2.2rem, 8vw, 3.2rem);
    }

    .about-page-subtitle.page-subtitle,
    .page-header-text .about-page-subtitle.page-subtitle {
        text-align: center;
        margin: 0 auto;
        max-width: 640px;
    }

    .about-hero-live .time-card-mini {
        min-width: 0;
        width: min(100%, 324px);
    }
}
