/* =========================================================
   SYDI AI — About Page Specific Styles (No Neon Glow)
   Matches reference image exactly — 1440x900 single viewport
   ========================================================= */

/* ---------- Page-scale overrides for 1440-wide stage ---------- */
.page-about .hero {
    padding-top: 90px !important;
    padding-bottom: 10px !important;
    min-height: 0 !important;
}
.page-about .hero-inner {
    max-width: 1360px !important;
    margin: 0 auto !important;
    padding: 0 60px !important;
    gap: 40px !important;
    grid-template-columns: 1fr 1.15fr !important;
    align-items: center !important;
}
.page-about .hero-left { max-width: 540px !important; }
.page-about .hero-eyebrow {
    font-size: 13px !important;
    letter-spacing: 3px !important;
    margin-bottom: 14px !important;
}
.page-about .hero-title {
    font-size: 52px !important;
    margin-bottom: 18px !important;
    line-height: 1.05 !important;
    font-weight: 700 !important;
}
.page-about .hero-sub {
    font-size: 15px !important;
    margin-bottom: 24px !important;
    max-width: 440px !important;
    line-height: 1.55 !important;
    color: var(--text-mute) !important;
}
.page-about .hero-image {
    max-width: 640px !important;
    width: 100% !important;
    filter: none !important;
}

/* ---------- Information Section ---------- */
.info {
    padding: 4px 0 20px;
}
.info-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 60px;
}

/* ---------- Stats strip (clean, no glow) ---------- */
.stats-strip {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 14px;
    padding: 16px 28px;
    border: 1px solid var(--card-border);
    border-radius: 10px;
    background: rgba(2, 14, 38, 0.55);
    margin-bottom: 22px;
    box-shadow: none;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 6px 10px;
    border-radius: 10px;
    transition: background .25s ease, transform .25s ease;
    cursor: pointer;
    color: inherit;
    text-decoration: none;
}
.stat-item:hover {
    background: rgba(46, 184, 255, 0.06);
    transform: translateY(-2px);
}

.stat-icon-wrap {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    overflow: visible;
}
.stat-icon {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    transform: none !important;
    filter: none !important;
}

.stat-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-cyan);
    line-height: 1.1;
    letter-spacing: 0.3px;
}
.stat-label {
    font-size: 12px;
    color: var(--text-mute);
    line-height: 1.3;
    max-width: 180px;
}

.stat-divider {
    width: 1px;
    height: 42px;
    background: rgba(46, 184, 255, 0.22);
}

/* ---------- Info heading ---------- */
.info-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 14px 0 18px;
}
.info-heading h2 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
}
.info-heading .heading-dot::before,
.info-heading .heading-dot::after { width: 220px; }
.info-heading .heading-dot:first-child::after { display: none; }
.info-heading .heading-dot:last-child::before { display: none; }

/* ---------- Value grid (three cards) ---------- */
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 18px;
}

.value-card {
    position: relative;
    background: rgba(2, 14, 38, 0.55);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 20px 22px;
    min-height: 140px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    cursor: pointer;
    transition: transform .28s ease, border-color .28s ease, background .28s ease;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: none;
}
.value-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-cyan);
    background: rgba(2, 14, 38, 0.7);
}

.value-icon-wrap {
    width: 46px !important;
    height: 46px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    flex-shrink: 0;
    overflow: visible;
}
.value-icon {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    transform: none !important;
    filter: none !important;
}

.value-body {
    flex: 1;
    min-width: 0;
    padding-right: 32px;
}

.value-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--accent-cyan);
    line-height: 1.2;
    margin-bottom: 8px;
}

.value-desc {
    font-size: 12.5px;
    color: var(--text-mute);
    line-height: 1.5;
}

.value-arrow {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 26px;
    height: 26px;
    border: 1px solid rgba(46, 184, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--accent-cyan);
    transition: all .25s ease;
    background: rgba(2, 14, 38, 0.8);
    z-index: 2;
}
.value-card:hover .value-arrow {
    background: var(--accent-cyan);
    color: #041022;
    transform: translateX(3px);
    border-color: var(--accent-cyan);
}

/* ---------- Bottom tagline ---------- */
.info-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 6px;
}
.info-tagline h3 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
}
.info-tagline h3 .accent { color: var(--accent-cyan); }
.info-tagline .heading-dot::before,
.info-tagline .heading-dot::after { width: 220px; }
.info-tagline .heading-dot:first-child::after { display: none; }
.info-tagline .heading-dot:last-child::before { display: none; }

/* ---------- Kill any residual neon glow ---------- */
.page-about * {
    text-shadow: none !important;
}
.page-about .hero-image,
.page-about .stat-icon,
.page-about .value-icon {
    filter: none !important;
}
.page-about .stat-icon-wrap,
.page-about .value-icon-wrap,
.page-about .stats-strip,
.page-about .value-card {
    box-shadow: none !important;
}
.page-about .heading-dot {
    box-shadow: none !important;
}

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
    .stats-strip { grid-template-columns: repeat(4, 1fr); }
    .stat-divider { display: none; }
    .info-heading .heading-dot::before,
    .info-heading .heading-dot::after,
    .info-tagline .heading-dot::before,
    .info-tagline .heading-dot::after { width: 120px; }
}
@media (max-width: 980px) {
    .stats-strip { grid-template-columns: repeat(2, 1fr); }
    .value-grid { grid-template-columns: 1fr; }
    .info-heading .heading-dot::before,
    .info-heading .heading-dot::after,
    .info-tagline .heading-dot::before,
    .info-tagline .heading-dot::after { width: 40px; }
}
@media (max-width: 560px) {
    .stats-strip { grid-template-columns: 1fr; }
    .info-heading h2, .info-tagline h3 { font-size: 12px; letter-spacing: 2px; }
}
