.about-pazhvak {
    --about-navy: #0b355d;
    --about-blue: #1769b4;
    --about-orange: #ef8245;
    --about-teal: #3eaa9e;
    overflow: hidden;
    color: #314d66;
    background: #fbfdff;
}

.about-hero {
    position: relative;
    isolation: isolate;
    min-height: 720px;
    display: flex;
    align-items: center;
    padding: clamp(42px, 7vw, 88px) 22px;
    overflow: hidden;
    background:
        radial-gradient(circle at 9% 12%, rgba(239,130,69,.25), transparent 28rem),
        radial-gradient(circle at 88% 84%, rgba(62,170,158,.18), transparent 30rem),
        linear-gradient(135deg, #eaf7ff 0%, #fbfdff 50%, #fff3e8 100%);
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        linear-gradient(rgba(23,105,180,.042) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23,105,180,.042) 1px, transparent 1px);
    background-size: 45px 45px;
    mask-image: linear-gradient(90deg, #000, transparent 92%);
}

.about-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 430px;
    height: 430px;
    top: -260px;
    right: 38%;
    border: 85px solid rgba(255,255,255,.46);
    border-radius: 50%;
}

.about-hero-inner {
    width: min(100%, 1240px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr);
    align-items: center;
    gap: clamp(36px, 5vw, 68px);
}

.about-hero-copy {
    position: relative;
    z-index: 4;
}

.about-eyebrow {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 17px;
    padding: 8px 13px;
    border: 1px solid rgba(23,105,180,.15);
    border-radius: 999px;
    color: var(--about-blue);
    background: rgba(255,255,255,.78);
    box-shadow: 0 9px 24px rgba(11,53,93,.08);
    font-size: 11px;
    font-weight: 950;
}

.about-eyebrow::before {
    content: "✦";
    color: var(--about-orange);
}

.about-hero h1 {
    max-width: 680px;
    margin: 0;
    color: var(--about-navy);
    font-size: clamp(42px, 6.1vw, 78px);
    line-height: 1.27;
    letter-spacing: -.045em;
    font-weight: 950;
}

.about-hero h1 span {
    display: inline-block;
    color: var(--about-orange);
    text-shadow: 0 11px 25px rgba(239,130,69,.17);
}

.about-hero-lead {
    max-width: 630px;
    margin: 22px 0 0;
    color: #506b83;
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: 2.08;
}

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 27px;
}

.about-primary-link,
.about-secondary-link {
    min-height: 51px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 19px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 950;
    text-decoration: none;
}

.about-primary-link {
    color: #fff;
    background: linear-gradient(135deg, #1d78c9, #0b406f);
    box-shadow: 0 15px 28px rgba(23,105,180,.22);
}

.about-secondary-link {
    color: var(--about-navy);
    border: 1px solid rgba(11,53,93,.13);
    background: rgba(255,255,255,.78);
}

.about-hero-art {
    --art-rx: -1.5deg;
    --art-ry: 0deg;
    position: relative;
    margin: 0;
    border: 1px solid rgba(255,255,255,.78);
    border-radius: 34px;
    background: #fff;
    box-shadow:
        0 38px 75px rgba(11,53,93,.20),
        0 12px 30px rgba(239,130,69,.11),
        inset 0 1px 0 rgba(255,255,255,.9);
    transform: perspective(1300px) rotateX(var(--art-rx)) rotateY(var(--art-ry));
    transform-style: preserve-3d;
    transition: transform 240ms cubic-bezier(.2,.75,.2,1);
}

.about-hero-art::before {
    content: "";
    position: absolute;
    inset: 14px;
    z-index: 2;
    pointer-events: none;
    border: 1px solid rgba(255,255,255,.42);
    border-radius: 25px;
    box-shadow: inset 0 0 35px rgba(5,29,52,.14);
}

.about-hero-art img {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    border-radius: 33px;
    object-fit: cover;
    object-position: center;
}

.about-art-caption {
    position: absolute;
    z-index: 4;
    right: 22px;
    bottom: -27px;
    max-width: 320px;
    padding: 14px 17px;
    border: 1px solid rgba(255,255,255,.82);
    border-radius: 17px;
    color: #fff;
    background: rgba(8,48,84,.90);
    box-shadow: 0 18px 35px rgba(8,48,84,.24);
    transform: translateZ(48px);
}

.about-art-caption p {
    margin: 0;
    font-size: 11px;
    line-height: 1.8;
    font-weight: 850;
}

.about-art-caption span {
    display: block;
    margin-top: 5px;
    color: #ffd68a;
    font-size: 9px;
}

.about-story {
    padding: clamp(74px, 9vw, 118px) 22px;
    background: #fff;
}

.about-story-inner {
    width: min(100%, 1100px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    align-items: center;
    gap: clamp(36px, 7vw, 88px);
}

.about-year {
    position: relative;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #d9eaf5;
    border-radius: 30px;
    background:
        radial-gradient(circle at 28% 20%, rgba(255,255,255,.9), transparent 22%),
        linear-gradient(145deg, #eaf7ff, #fff2e3);
    box-shadow: 0 25px 58px rgba(11,53,93,.12);
}

.about-year::after {
    content: "";
    position: absolute;
    width: 76%;
    height: 20px;
    bottom: -12px;
    border-radius: 50%;
    background: rgba(11,53,93,.13);
    filter: blur(12px);
}

.about-year small {
    color: #68839a;
    font-size: 11px;
    font-weight: 900;
}

.about-year strong {
    color: var(--about-blue);
    font-size: 74px;
    line-height: 1.25;
    font-weight: 950;
    text-shadow: 0 12px 26px rgba(23,105,180,.16);
}

.about-year span {
    color: var(--about-orange);
    font-size: 10px;
    font-weight: 950;
}

.about-section-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--about-orange);
    font-size: 11px;
    font-weight: 950;
}

.about-section-title {
    margin: 0;
    color: var(--about-navy);
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.5;
    font-weight: 950;
}

.about-section-text {
    margin: 17px 0 0;
    color: #5a7186;
    font-size: 14px;
    line-height: 2.2;
}

.about-philosophy {
    padding: clamp(68px, 9vw, 112px) 22px;
    background:
        radial-gradient(circle at 85% 12%, rgba(62,170,158,.13), transparent 25rem),
        linear-gradient(180deg, #f2f9fd, #fff);
}

.about-section-heading {
    width: min(100%, 860px);
    margin: 0 auto 42px;
    text-align: center;
}

.about-philosophy-grid {
    width: min(100%, 1120px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 120px 1fr;
    align-items: stretch;
    gap: 18px;
}

.about-philosophy-card {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    padding: 32px;
    border-radius: 28px;
}

.about-philosophy-card > * {
    position: relative;
    z-index: 2;
}

.about-philosophy-icon {
    width: 66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 21px;
    font-size: 30px;
}

.about-philosophy-card h3 {
    margin: 22px 0 0;
    font-size: 27px;
    font-weight: 950;
}

.about-philosophy-card p {
    margin: 13px 0 0;
    font-size: 13px;
    line-height: 2.2;
}

.about-carpenter {
    border: 1px solid #d7dfe6;
    color: #53616d;
    background: linear-gradient(145deg, #f2f4f6, #e5e9ec);
    box-shadow: 0 20px 44px rgba(52,67,78,.10);
}

.about-carpenter::after {
    content: "";
    position: absolute;
    inset: auto -30px -55px auto;
    width: 210px;
    height: 210px;
    border: 28px solid rgba(83,97,109,.07);
    transform: rotate(20deg);
}

.about-carpenter .about-philosophy-icon {
    color: #fff;
    background: #6c7881;
    box-shadow: 0 13px 25px rgba(52,67,78,.18);
}

.about-gardener {
    border: 1px solid rgba(62,170,158,.28);
    color: #285b59;
    background:
        radial-gradient(circle at 90% 12%, rgba(255,224,145,.62), transparent 13rem),
        linear-gradient(145deg, #e9fbf5, #fff7df);
    box-shadow: 0 28px 58px rgba(41,128,118,.16);
}

.about-gardener::after {
    content: "✦";
    position: absolute;
    left: 24px;
    bottom: 5px;
    color: rgba(239,130,69,.23);
    font-size: 130px;
}

.about-gardener .about-philosophy-icon {
    color: #fff;
    background: linear-gradient(145deg, #45b5a8, #268f83);
    box-shadow: 0 13px 25px rgba(38,143,131,.22);
}

.about-versus {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-versus span {
    width: 82px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dbe9f2;
    border-radius: 50%;
    color: var(--about-blue);
    background: #fff;
    box-shadow: 0 17px 38px rgba(11,53,93,.11);
    font-size: 13px;
    font-weight: 950;
}

.about-philosophy-result {
    width: min(100%, 900px);
    margin: 28px auto 0;
    padding: 18px 24px;
    border-right: 4px solid var(--about-orange);
    border-radius: 17px;
    color: var(--about-navy);
    background: #fff;
    box-shadow: 0 14px 32px rgba(11,53,93,.08);
    font-size: 14px;
    line-height: 2;
    font-weight: 850;
    text-align: center;
}

.about-manifesto {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(72px, 10vw, 120px) 22px;
    color: #fff;
    background:
        radial-gradient(circle at 15% 15%, rgba(239,130,69,.20), transparent 25rem),
        radial-gradient(circle at 88% 82%, rgba(62,170,158,.20), transparent 27rem),
        linear-gradient(135deg, #092c4c, #0d426d 55%, #0b355d);
}

.about-manifesto::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 52px 52px;
}

.about-manifesto-inner {
    width: min(100%, 1100px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: .84fr 1.16fr;
    align-items: center;
    gap: clamp(38px, 7vw, 82px);
}

.about-manifesto-statement {
    position: relative;
    padding: 38px 30px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 29px;
    background: rgba(255,255,255,.07);
    box-shadow: 0 28px 64px rgba(2,18,32,.25), inset 0 1px 0 rgba(255,255,255,.12);
}

.about-manifesto-statement span {
    display: block;
    color: #ffc876;
    font-size: 11px;
    font-weight: 950;
}

.about-manifesto-statement strong {
    display: block;
    margin-top: 12px;
    font-size: clamp(30px, 4.5vw, 51px);
    line-height: 1.65;
    font-weight: 950;
}

.about-manifesto-copy h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.55;
    font-weight: 950;
}

.about-manifesto-copy h2 em {
    color: #ffc876;
    font-style: normal;
}

.about-manifesto-copy p {
    margin: 17px 0 0;
    color: rgba(255,255,255,.76);
    font-size: 14px;
    line-height: 2.2;
}

.about-ecosystem {
    padding: clamp(72px, 9vw, 116px) 22px;
    background: #fff;
}

.about-disciplines {
    width: min(100%, 1160px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 17px;
}

.about-discipline {
    --discipline: 23, 105, 180;
    position: relative;
    min-height: 280px;
    overflow: hidden;
    padding: 25px;
    border: 1px solid rgba(var(--discipline), .18);
    border-radius: 24px;
    background:
        radial-gradient(circle at 90% 10%, rgba(var(--discipline), .15), transparent 11rem),
        linear-gradient(145deg, #fff, #f9fcfe);
    box-shadow: 0 18px 40px rgba(11,53,93,.08);
}

.about-discipline::after {
    content: "";
    position: absolute;
    width: 115px;
    height: 115px;
    left: -48px;
    bottom: -54px;
    border: 18px solid rgba(var(--discipline), .07);
    border-radius: 50%;
}

.about-discipline-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 17px;
    background: rgba(var(--discipline), .13);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
    font-size: 25px;
}

.about-discipline h3 {
    margin: 18px 0 0;
    color: var(--about-navy);
    font-size: 20px;
    font-weight: 950;
}

.about-discipline p {
    margin: 9px 0 0;
    color: #647b8e;
    font-size: 12px;
    line-height: 2.05;
}

.discipline-animation { --discipline: 239, 130, 69; }
.discipline-theater { --discipline: 154, 80, 174; }
.discipline-visual { --discipline: 23, 105, 180; }
.discipline-music { --discipline: 62, 170, 158; }
.discipline-literature { --discipline: 198, 91, 123; }
.discipline-business { --discipline: 220, 160, 45; }

.about-final {
    padding: 18px 22px 92px;
    background: #fff;
}

.about-final-card {
    position: relative;
    isolation: isolate;
    width: min(100%, 1160px);
    margin: 0 auto;
    overflow: hidden;
    padding: clamp(37px, 6vw, 68px);
    border-radius: 32px;
    color: #fff;
    background:
        radial-gradient(circle at 8% 10%, rgba(255,202,118,.34), transparent 18rem),
        radial-gradient(circle at 90% 90%, rgba(62,170,158,.33), transparent 22rem),
        linear-gradient(135deg, #1769b4, #0b355d);
    box-shadow: 0 32px 72px rgba(11,53,93,.22);
    text-align: center;
}

.about-final-card::before {
    content: "✦";
    position: absolute;
    top: -46px;
    left: 5%;
    z-index: -1;
    color: rgba(255,255,255,.08);
    font-size: 220px;
}

.about-final-card span {
    color: #ffd083;
    font-size: 11px;
    font-weight: 950;
}

.about-final-card h2 {
    max-width: 850px;
    margin: 11px auto 0;
    font-size: clamp(29px, 4.4vw, 50px);
    line-height: 1.55;
    font-weight: 950;
}

.about-final-card p {
    max-width: 790px;
    margin: 14px auto 0;
    color: rgba(255,255,255,.80);
    font-size: 13px;
    line-height: 2.05;
}

.about-final-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.about-final-actions a {
    min-height: 49px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 19px;
    border-radius: 14px;
    font-size: 11px;
    font-weight: 950;
    text-decoration: none;
}

.about-final-actions a:first-child {
    color: var(--about-navy);
    background: #ffd083;
}

.about-final-actions a:last-child {
    color: #fff;
    border: 1px solid rgba(255,255,255,.30);
    background: rgba(255,255,255,.09);
}

.about-motion-ready .about-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 520ms ease, transform 520ms cubic-bezier(.2,.75,.2,1);
}

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

@supports (content-visibility: auto) {
    .about-pazhvak > section:not(:first-child) {
        content-visibility: auto;
        contain-intrinsic-size: auto 720px;
    }
}

@media (max-width: 980px) {
    .about-hero {
        min-height: auto;
    }

    .about-hero-inner,
    .about-manifesto-inner {
        grid-template-columns: 1fr;
    }

    .about-hero-copy {
        text-align: center;
    }

    .about-eyebrow,
    .about-hero-lead {
        margin-right: auto;
        margin-left: auto;
    }

    .about-hero-actions {
        justify-content: center;
    }

    .about-hero-art {
        width: min(100%, 720px);
        margin: 16px auto 25px;
    }

    .about-story-inner {
        grid-template-columns: 220px minmax(0, 1fr);
    }

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

    .about-versus {
        min-height: 56px;
    }

    .about-versus span {
        width: auto;
        height: 42px;
        padding: 0 20px;
        border-radius: 999px;
    }

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

@media (max-width: 650px) {
    .about-hero {
        padding: 37px 14px 58px;
    }

    .about-hero h1 {
        font-size: clamp(37px, 12vw, 52px);
    }

    .about-hero-lead {
        font-size: 14px;
    }

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

    .about-primary-link,
    .about-secondary-link {
        min-height: 47px;
        padding: 0 9px;
        font-size: 10px;
    }

    .about-hero-art {
        transform: none;
    }

    .about-art-caption {
        right: 12px;
        bottom: -36px;
        max-width: calc(100% - 24px);
        padding: 11px 13px;
    }

    .about-story,
    .about-philosophy,
    .about-manifesto,
    .about-ecosystem {
        padding: 64px 14px;
    }

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

    .about-year {
        min-height: 205px;
    }

    .about-year strong {
        font-size: 62px;
    }

    .about-story-copy,
    .about-manifesto-copy {
        text-align: center;
    }

    .about-philosophy-card {
        min-height: auto;
        padding: 25px;
    }

    .about-manifesto-statement {
        padding: 28px 22px;
        text-align: center;
    }

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

    .about-discipline {
        min-height: auto;
    }

    .about-final {
        padding: 10px 11px 58px;
    }

    .about-final-card {
        padding: 37px 18px;
        border-radius: 25px;
    }

    .about-final-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

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

    .about-hero-art {
        transform: none !important;
        transition: none !important;
    }
}
