:root {
    --primary: #F12850;
    --black: #000000;
    --bg: #F4F4F0;
    --font-logo: 'Satoshi', sans-serif;
    --font-main: 'Satoshi', sans-serif;
    --font-accent: 'Caveat', cursive;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    width: 100%;
    max-width: 100%;
    height: 100%;
    overscroll-behavior: none;
    overflow-x: clip;
    position: relative;
    /* #000 matches footer background — prevents Safari rubber-band gap below footer */
    background-color: #000;
}

body {
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overscroll-behavior: none;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    background-color: var(--bg);
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    font-family: var(--font-main);
    font-weight: 500;
    color: var(--black);
}

main {
    flex: 1;
}

/* - Reveal animation - */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.highlight-stroke {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.highlight-stroke::after {
    content: '';
    position: absolute;
    left: -1%;
    bottom: 2px;
    width: 102%;
    height: 40%;
    background: #FFC701;
    opacity: 0.4;
    z-index: -1;
    transform: rotate(-0.5deg);
    border-radius: 2px;
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* - Hero wrapper - */
.about-hero-wrap {
    width: 100%;
    padding-top: 96px;
}

@media (max-width: 899px) {
    .about-hero-wrap {
        padding-top: calc(56px + env(safe-area-inset-top, 0px));
    }
}

/* - HERO - */
.about-hero {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    padding: 88px max(48px, env(safe-area-inset-right, 48px)) 48px max(48px, env(safe-area-inset-left, 48px));
    text-align: center;
}

.about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #666;
    margin-bottom: 24px;
}

.about-eyebrow::before,
.about-eyebrow::after {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: currentColor;
}

.about-hero-title {
    font-family: var(--font-main);
    font-size: 52px;
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-bottom: 24px;
    /* Restored original desktop spacing */
}

@media (min-width: 768px) and (max-width: 1024px) {

    .about-hero-title,
    .section-title,
    .about-cta-title {
        font-size: clamp(56px, 8vw, 82px) !important;
        /* Upscaled */
        line-height: 1.02 !important;
        letter-spacing: -0.045em !important;
        max-width: 22ch !important;
        margin-inline: auto !important;
        text-wrap: balance !important;
        white-space: normal !important;
        margin-bottom: 28px !important;
    }

    .about-hero-sub,
    .section-sub,
    .about-cta-sub {
        font-family: var(--font-main) !important;
        font-size: clamp(23px, 3.2vw, 34px) !important;
        /* Upscaled */
        line-height: 1.45 !important;
        font-weight: 500 !important;
        max-width: 42ch !important;
        margin-inline: auto !important;
        text-align: center !important;
        text-wrap: balance !important;
        white-space: normal !important;
        margin-bottom: 40px !important;
    }

    .about-cta-btn {
        font-size: 20px !important;
        padding: 0 56px !important;
        width: auto !important;
        min-width: 260px !important;
        height: 66px !important;
    }

    .about-eyebrow,
    .mission-label {
        font-size: 12px !important;
    }

    .mission-body,
    .value-desc,
    .story-body {
        font-size: 16px !important;
    }
}




@media (max-width: 767px) {
    .about-hero {
        padding: 40px 20px 24px !important;
    }

    .about-hero-sub {
        margin-bottom: 24px !important;
        font-size: 16px !important;
        line-height: 1.45 !important;
        font-weight: 500 !important;
    }

    .mission-section {
        padding-top: 48px !important;
    }

    .about-eyebrow,
    .mission-label {
        font-size: 10px !important;
        margin-bottom: 16px !important;
    }

    .about-hero-title,
    .section-title,
    .about-cta-title {
        font-size: 36px !important;
        line-height: 1.08 !important;
        font-weight: 600 !important;
        letter-spacing: -0.04em !important;
        margin-bottom: 16px !important;
        text-wrap: balance !important;
    }

    .mission-body,
    .value-desc,
    .story-body {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    .about-cta-btn {
        font-size: 14px !important;
    }
}

.about-hero-title .accent {
    font-family: var(--font-accent);
    color: var(--primary);
    font-size: 1.32em !important;
    font-weight: 700;
    margin-left: 0;
    margin-right: 0.12em;
    display: inline-block;
    line-height: inherit;
    transform: translateY(3px) rotate(-2deg);
}

.about-hero-sub {
    font-size: clamp(16px, 3vw, 23px);
    font-weight: 500;
    color: #000000;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .about-hero-sub {
        font-size: 24px !important;
    }
}



/* - MISSION SECTION - */
.mission-section {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px max(48px, env(safe-area-inset-right, 48px)) 80px max(48px, env(safe-area-inset-left, 48px));
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    /* Increased from 80px */
    align-items: center;
}

.mission-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #666;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.mission-chip {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    margin: 24px 0;
}

.mission-title {
    font-family: var(--font-logo);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    line-height: 0.98;
    margin-bottom: 24px;
    color: var(--black);
    text-align: left;
}

.mission-body {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    line-height: 1.7;
    overflow-wrap: break-word;
    word-break: break-word;
}

.mission-body p+p {
    margin-top: 16px;
}

@media (max-width: 767px) {
    .mission-section {
        padding: 48px 20px;
        gap: 40px;
    }

    .mission-title {
        text-align: center;
        margin: 0 auto 14px;
        text-wrap: balance;
    }

    .mission-body {
        font-size: 15px;
        line-height: 1.6;
    }

    .mission-chip {
        font-size: 14px;
        padding: 8px 18px;
    }

    .mission-stat {
        padding: 24px 20px;
    }

    .mission-stat-value {
        font-size: 32px;
    }

    .mission-stat-label {
        font-size: 11px;
    }
}

.mission-stat {
    background: #fff;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border: 1px solid var(--black);
    border-radius: 12px;
    transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.mission-stat:hover {
    transform: translate(-4px, -4px);
    box-shadow: 4px 4px 0px var(--black);
}

.mission-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    /* Removed unified border/bg to treat them as individual cards */
}

.mission-stat-value {
    font-family: var(--font-main);
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--black);
    line-height: 1;
    transition: color 0.2s ease;
}

.mission-stat-value span {
    color: #000;
    font-size: 1em;
    margin-left: 2px;
    vertical-align: baseline;
    transition: color 0.2s ease;
}

.mission-stat:hover .mission-stat-value,
.mission-stat:hover .mission-stat-value span {
    color: var(--primary);
}

.mission-stat-label {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* - VALUES SECTION - */
.values-section {
    width: 100%;
    padding: 80px max(48px, env(safe-area-inset-right, 48px)) 80px max(48px, env(safe-area-inset-left, 48px));
    /* Removed solid white background to reveal grid */
    position: relative;
    z-index: 10;
}

.values-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-title {
    font-family: var(--font-main);
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 600;
    line-height: 0.98;
    color: var(--black);
    margin-bottom: 24px;
    text-align: center;
    text-wrap: balance;
}

.section-title .accent {
    font-family: var(--font-accent);
    color: var(--primary);
    font-size: 72px !important;
    font-weight: 700;
    margin-left: 0;
    margin-right: 0.12em;
    display: inline-block;
    transform: translateY(3px) rotate(-2deg);
}

.section-sub {
    font-family: var(--font-main);
    font-size: clamp(16px, 3vw, 22px);
    font-weight: 500;
    color: #000000;
    text-align: center;
}

@media (max-width: 767px) {
    .values-section {
        padding: 48px 20px;
    }

    .section-title {
        margin: 0 auto 8px;
        text-wrap: balance;
    }

    .section-sub {
        text-align: center;
    }

    .section-header {
        margin-bottom: 32px;
    }
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    /* Increased from 20px */
}

@media (max-width: 767px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .value-card {
        padding: 24px 20px;
    }

    .value-title {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .value-desc {
        font-size: 13px;
        line-height: 1.5;
    }

    .value-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        margin-bottom: 14px;
    }

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

.value-card {
    padding: 32px 28px;
    border: 1px solid var(--black);
    border-radius: 14px;
    background: #fff;
    transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.value-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 4px 4px 0px var(--black);
}

.value-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #000;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.value-card:hover .value-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 2px 2px 0px var(--black);
}

.value-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5px;
}

.value-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.value-desc {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    line-height: 1.6;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* - STORY SECTION - */
.story-section {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px max(48px, env(safe-area-inset-right, 48px)) 100px max(48px, env(safe-area-inset-left, 48px));
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    text-align: left;
}

.story-quote {
    font-family: var(--font-accent);
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
    margin-bottom: 24px;
    text-align: left;
}

.story-quote .accent {
    color: var(--primary);
}

.story-body {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    line-height: 1.75;
    text-align: left;
    overflow-wrap: break-word;
    word-break: break-word;
}

@media (max-width: 767px) {
    .story-section {
        padding: 48px 20px;
        gap: 32px;
    }

    .story-quote {
        font-family: var(--font-accent) !important;
        font-size: 32px !important;
        font-weight: 700 !important;
        line-height: 1.2 !important;
        text-align: left !important;
        margin-bottom: 20px !important;
        white-space: normal !important;
    }

    @media (max-width: 480px) {
        .story-quote {
            font-size: 28px !important;
        }
    }

    .story-quote .accent {
        font-family: var(--font-accent) !important;
        font-size: inherit !important;
        font-weight: 700 !important;
        transform: none !important;
        margin: 0 !important;
        display: inline !important;
        color: var(--primary) !important;
    }

    .story-body {
        font-size: 15px;
        line-height: 1.6;
    }

    .story-visual {
        height: 280px;
    }

    .story-pol {
        width: 160px;
    }
}

.story-body p+p {
    margin-top: 20px;
}

.story-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 440px;
}

.story-pol {
    width: 220px;
    position: absolute;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.12));
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    will-change: transform;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -webkit-optimize-contrast;
}

.story-pol img {
    width: 100%;
    height: auto;
    display: block;
    transform: translateZ(0);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -webkit-optimize-contrast;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.story-pol-1 {
    transform: perspective(1px) rotate(-8deg) translate3d(-30px, -20px, 0);
    z-index: 1;
}

.story-pol-2 {
    transform: perspective(1px) rotate(6deg) translate3d(40px, 30px, 0);
    z-index: 2;
}

.story-pol:hover {
    z-index: 10;
    transform: scale(1.05) rotate(0deg) translate(0, 0);
}

@media (max-width: 900px) {
    .story-section {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .story-visual {
        height: 360px;
        order: -1;
    }
}

/* - CTA - */
.about-cta-section {
    width: 100%;
    padding: 80px max(48px, env(safe-area-inset-right, 48px)) 100px max(48px, env(safe-area-inset-left, 48px));
    text-align: center;
}

.about-cta-title {
    font-family: var(--font-logo);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    line-height: 0.98;
    color: var(--black);
    margin-bottom: 24px;
    text-align: center;
}

.about-cta-title .accent {
    font-family: var(--font-accent);
    color: var(--primary);
    font-size: 72px !important;
    font-weight: 700;
    margin-left: 0;
    margin-right: 0.12em;
    display: inline-block;
    transform: translateY(3px) rotate(-2deg);
}

.about-cta-sub {
    font-size: 24px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 56px;
    /* Increased from 36px for better breathing room */
}

@media (max-width: 767px) {
    .about-cta-section {
        padding: 48px 20px 64px;
    }

    .about-cta-title {
        margin: 0 auto 16px;
        text-wrap: balance;
    }

    .hero-sub,
    .section-sub,
    .about-hero-sub,
    .stats-subtitle,
    .about-cta-sub {
        margin-bottom: 44px !important;
        /* Unified mobile spacing */
    }

    .about-cta-btn {
        height: 52px !important;
        width: 220px !important;
        font-size: 16px !important;
        padding: 0 !important;
    }
}

.about-cta-btn-wrap {
    position: relative;
    flex-shrink: 0;
    z-index: 100;
    display: inline-block;
    pointer-events: auto;
}

.about-cta-btn-wrap::before,
.about-cta-btn-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    border: 1px solid #000;
    pointer-events: none;
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-cta-btn-wrap::before {
    background-color: #FFC701;
    z-index: -1;
}

.about-cta-btn-wrap::after {
    background-color: #F12850;
    z-index: -2;
}

@media (hover: hover) {
    .about-cta-btn-wrap:hover .about-cta-btn {
        transform: translate(-2px, -2px);
    }

    .about-cta-btn-wrap:hover::before {
        transform: translate(4px, 4px);
    }

    .about-cta-btn-wrap:hover::after {
        transform: translate(8px, 8px);
    }
}

/* Mobile: Unfold on touch */
@media (hover: none) {
    .about-cta-btn-wrap:active .about-cta-btn {
        transform: translate(-2px, -2px);
    }

    .about-cta-btn-wrap:active::before {
        transform: translate(4px, 4px);
    }

    .about-cta-btn-wrap:active::after {
        transform: translate(8px, 8px);
    }
}

.about-cta-btn {
    height: 60px;
    width: 240px;
    padding: 0 40px;
    background: #000;
    color: #fff;
    border: 1px solid #000;
    border-radius: 10px;
    font-family: var(--font-main);
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1), background-color 0.2s ease;
    cursor: pointer;
}


/* - Responsive - */
@media (max-width: 900px) {
    .mission-section {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

/* Legacy footer styles pruned to allow public/shared/footer.css to control layout exclusively */



/* --------------------------------------------------
/* ══════════════════════════════════════════════════
   MOBILE & TABLET RESPONSIVE TYPOGRAPHY SYSTEM
   ══════════════════════════════════════════════════ */
@media (max-width: 1024px) {

    h1,
    .hero-title,
    .section-title,
    .about-hero-title,
    .mission-title,
    .about-cta-title,
    .stats-title,
    .showcase-title,
    .faq-title {
        font-family: var(--font-main) !important;
        font-size: clamp(34px, 8vw, 56px) !important;
        line-height: 0.98 !important;
        font-weight: 600 !important;
        letter-spacing: -0.04em !important;
        margin-bottom: 24px !important;
        /* Unified H1-to-H2 mobile spacing */
        width: 100% !important;
        max-width: min(92vw, 700px) !important;
        /* Restored original mobile wrap */
        padding-left: max(16px, env(safe-area-inset-left), env(safe-area-inset-right)) !important;
        padding-right: max(16px, env(safe-area-inset-left), env(safe-area-inset-right)) !important;
        margin-inline: auto !important;
        text-align: center !important;
        text-wrap: balance !important;
    }

    h2,
    .hero-sub,
    .section-sub,
    .about-hero-sub,
    .stats-subtitle,
    .about-cta-sub {
        font-family: var(--font-main) !important;
        font-size: clamp(16px, 3.8vw, 20px) !important;
        line-height: 1.45 !important;
        font-weight: 500 !important;
        max-width: min(92vw, 640px) !important;
        /* Restored original mobile wrap */
        padding-left: max(16px, env(safe-area-inset-left), env(safe-area-inset-right)) !important;
        padding-right: max(16px, env(safe-area-inset-left), env(safe-area-inset-right)) !important;
        margin-inline: auto !important;
        text-align: center !important;
        text-wrap: pretty !important;
    }

    h3,
    .mission-title,
    .contact-card-title,
    .card-title,
    .value-title,
    .booth-card-title,
    .faq-q {
        font-size: clamp(18px, 4vw, 24px) !important;
        line-height: 1.3 !important;
        font-weight: 600 !important;
    }

    .values-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        width: 100% !important;
    }

    .value-card {
        width: 100% !important;
        flex: none !important;
        padding: 24px 20px !important;
    }

    .mission-title {
        text-align: left !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100% !important;
    }

    .mission-label {
        justify-content: flex-start !important;
    }

    .mission-body {
        text-align: left !important;
    }

    p,
    .mission-body,
    .story-body,
    .value-desc,
    .sec p,
    .sec ul li,
    .faq-a,
    .card-desc,
    .booth-card-desc {
        font-size: clamp(14px, 3vw, 16px) !important;
        line-height: 1.6 !important;
        font-weight: 500 !important;
        margin-bottom: 14px !important;
    }

    small,
    .mission-label,
    .contact-card-label,
    .mission-stat-label,
    .badge {
        font-size: clamp(12px, 2.5vw, 14px) !important;
        line-height: 1.4 !important;
    }

    .eyebrow,
    .about-eyebrow {
        font-size: 11px !important;
        line-height: 1.4 !important;
    }

    button,
    .btn-main,
    .about-cta-btn,
    .contact-card-action,
    .join-input-row button,
    .nav-cta,
    .booth-card-btn {
        font-size: clamp(14px, 3vw, 16px) !important;
        font-weight: 600 !important;
    }

    span.accent,
    h1 .accent,
    h2 .accent,
    h3 .accent,
    p .accent,
    .hero-title .accent,
    .about-hero-title .accent,
    .output-title .accent,
    .output-mobile-header .output-title .accent,
    .section-title .accent,
    .about-cta-title .accent,
    .stats-title .accent,
    .showcase-title .accent,
    .faq-title .accent,
    .story-quote .accent {
        font-family: "Caveat", cursive !important;
        font-size: 1.32em !important;
        line-height: 0.8 !important;
        font-weight: 700 !important;
        display: inline-block !important;
        transform: translateY(4px) rotate(-2deg) !important;
        white-space: nowrap !important;
        margin: 0 !important;
        margin-right: 0.1em !important;
        letter-spacing: -0.01em !important;
    }

    /* Ensure story-quote has uniform font size on mobile */
    .story-quote,
    .story-quote .accent {
        font-size: 32px !important;
    }
}

@media (max-width: 480px) {

    span.accent,
    h1 .accent,
    h2 .accent,
    h3 .accent,
    p .accent,
    .hero-title .accent,
    .about-hero-title .accent,
    .output-title .accent,
    .output-mobile-header .output-title .accent,
    .section-title .accent,
    .about-cta-title .accent,
    .stats-title .accent,
    .showcase-title .accent,
    .faq-title .accent,
    .story-quote .accent {
        transform: translateY(4px) rotate(-2deg) !important;
    }

    .story-quote,
    .story-quote .accent {
        font-size: 28px !important;
    }
}

/* --- FINAL TABLET UI REFINEMENTS (768px - 1024px) --- */
@media (min-width: 768px) and (max-width: 1024px) {

    /* Hero & Section Title Standard - Forces 61.5px on iPad Air (820px) */
    html body h1.hero-title,
    html body .about-hero-title,
    html body .stats-title,
    html body .section-title,
    html body .about-cta-title,
    html body .hero h1 {
        font-size: clamp(54px, 7.5vw, 78px) !important;
        font-weight: 700 !important;
        line-height: 1.05 !important;
        letter-spacing: -0.045em !important;
        margin-bottom: 24px !important;
        text-align: center !important;
        margin-inline: auto !important;
        text-wrap: balance !important;
        white-space: normal !important;
        display: block !important;
    }

    /* Subtitle Standard - Forces 24.6px on iPad Air (820px) */
    html body h2.hero-sub,
    html body .about-hero-sub,
    html body .stats-subtitle,
    html body .section-sub,
    html body .about-cta-sub,
    html body .hero p {
        font-family: var(--font-main) !important;
        font-size: clamp(22px, 3vw, 32px) !important;
        line-height: 1.5 !important;
        font-weight: 500 !important;
        margin-bottom: 32px !important;
        text-align: center !important;
        margin-inline: auto !important;
        text-wrap: balance !important;
        white-space: normal !important;
        display: block !important;
    }

    .about-hero {
        padding: 140px max(40px, env(safe-area-inset-right, 40px)) 40px max(40px, env(safe-area-inset-left, 40px)) !important;
    }

    .about-cta-btn {
        font-size: 18px !important;
        padding: 0 48px !important;
        width: auto !important;
        min-width: 260px !important;
        height: 64px !important;
    }

    .mission-section {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 48px !important;
        padding: 64px max(40px, env(safe-area-inset-right, 40px)) !important;
        align-items: center !important;
        max-width: 1000px !important;
        margin-inline: auto !important;
    }

    .values-grid {
        display: flex !important;
        flex-direction: column !important;
        /* Hybrid: Mobile stack for better focus */
        gap: 24px !important;
        padding: 0 max(64px, env(safe-area-inset-right, 64px)) !important;
        max-width: 800px !important;
        margin-inline: auto !important;
    }

    .value-card {
        padding: 40px 32px !important;
        /* Premium tablet padding */
    }

    .story-section {
        display: flex !important;
        flex-direction: column !important;
        /* Hybrid: Mobile stack for better quote focus */
        padding: 100px 64px !important;
        gap: 48px !important;
        max-width: 800px !important;
        margin-inline: auto !important;
        text-align: left !important;
    }

    .story-visual {
        height: 320px !important;
        width: 100% !important;
        order: unset !important;
    }

    .story-quote {
        font-size: clamp(32px, 4.5vw, 42px) !important;
        max-width: 42ch !important;
        /* Maximum space for grand first line */
        line-height: 1.15 !important;
        text-wrap: balance !important;
        text-align: left !important;
        margin-inline: 0 !important;
        white-space: normal !important;
    }

    .section-sub,
    .about-cta-sub {
        font-size: clamp(22px, 3vw, 32px) !important;
        /* Upscaled tablet subtitle */
        font-weight: 500 !important;
        /* Unified weight */
        margin-bottom: 56px !important;
        /* Unified tablet spacing */
    }

    p,
    .mission-body,
    .story-body,
    .value-desc,
    .card-desc {
        font-size: clamp(18px, 2.2vw, 20px) !important;
        /* Upscaled tablet body text */
        line-height: 1.6 !important;
    }

    .mission-label,
    .mission-stat-label,
    .badge {
        font-size: 16px !important;
        /* Upscaled tablet labels */
    }

    .about-eyebrow {
        font-size: 11px !important;
        /* Unified eyebrow size across all pages on tablets */
    }

    .about-cta-btn {
        font-size: 18px !important;
        /* Substantial tablet buttons */
        padding: 0 48px !important;
    }

    .about-cta-section {
        padding: 120px 40px !important;
    }

}

/* Desktop Heading Refinements */
@media (min-width: 1025px) {

    .about-hero-title,
    .section-title,
    .about-cta-title {
        font-size: 52px !important;
    }

    .about-hero-sub,
    .section-sub {
        font-size: 24px !important;
    }
}

/* --- MOBILE SPECIFIC OVERRIDES --- */
@media (max-width: 767px) {
    .eyebrow,
    .about-eyebrow {
        font-size: 9px !important;
    }
    .eyebrow::before,
    .eyebrow::after,
    .about-eyebrow::before,
    .about-eyebrow::after {
        width: 14px !important;
    }
}
