/* R3SPIN About page refresh, scoped to about.html. */

html {
    scroll-behavior: smooth;
}

/* Scene-matched ambient particles for the illustrated About backgrounds. */
.about-hero-layout,
.about-studio .about-shell {
    position: relative;
    z-index: 2;
}

.about-studio {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.ambient-particle-layer {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.ambient-particle {
    position: absolute;
    top: var(--particle-top);
    left: var(--particle-left);
    width: var(--particle-size);
    height: var(--particle-size);
    border-radius: 50%;
    opacity: 0;
    animation: ambient-particle-rise var(--particle-duration) linear var(--particle-delay) infinite;
}

.ambient-particle-layer--lanterns .ambient-particle {
    background: rgba(255, 163, 55, 0.82);
    box-shadow:
        0 0 6px rgba(255, 163, 55, 0.58),
        0 0 15px rgba(254, 97, 63, 0.22);
}

.ambient-particle-layer--lanterns .ambient-particle:nth-child(3n) {
    background: rgba(254, 97, 63, 0.7);
}

.ambient-particle-layer--fireflies .ambient-particle {
    background: rgba(214, 242, 135, 0.76);
    box-shadow:
        0 0 7px rgba(190, 237, 112, 0.55),
        0 0 17px rgba(116, 205, 136, 0.2);
}

.ambient-particle-layer--fireflies .ambient-particle:nth-child(4n) {
    background: rgba(255, 205, 92, 0.68);
}

@keyframes ambient-particle-rise {
    0% {
        opacity: 0;
        transform: translate3d(0, 20px, 0) scale(0.72);
    }

    14% {
        opacity: var(--particle-opacity);
    }

    72% {
        opacity: var(--particle-opacity);
    }

    100% {
        opacity: 0;
        transform: translate3d(var(--particle-drift), var(--particle-rise), 0) scale(1.16);
    }
}

@media only screen and (max-width: 600px) {
    .ambient-particle-layer {
        opacity: 0.72;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ambient-particle-layer {
        display: none;
    }
}

.about-main {
    overflow: hidden;
    background: #f6f3f1;
    color: #44394a;
}

.about-shell {
    width: min(100% - 96px, 1420px);
    margin: 0 auto;
}

.about-eyebrow {
    margin: 0 0 15px;
    color: #db2a24;
    font-size: 11pt;
    line-height: 1.2;
    letter-spacing: 0.18em;
}

.about-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
    border-radius: 999px;
    box-sizing: border-box;
    font-size: 13pt;
    line-height: 1;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.about-button:hover,
.about-button:focus-visible {
    transform: translateY(-2px);
}

.about-button:focus-visible,
.about-text-link:focus-visible {
    outline: 3px solid #ffae00;
    outline-offset: 4px;
}

.about-button-primary {
    background: linear-gradient(135deg, #ff7e00, #fe613f);
    color: #ffffff;
    box-shadow: 0 14px 34px rgba(189, 37, 33, 0.25);
}

.about-button-primary:hover,
.about-button-primary:focus-visible {
    box-shadow: 0 18px 42px rgba(189, 37, 33, 0.34);
}

/* Hero */
.about-hero {
    position: relative;
    isolation: isolate;
    min-height: clamp(650px, 72vh, 840px);
    overflow: hidden;
    background:
        linear-gradient(115deg, rgba(31, 24, 45, 0.96) 0%, rgba(43, 28, 53, 0.88) 54%, rgba(37, 25, 48, 0.68) 100%),
        url('../_images/about-lucky-coin.webp') center 52% / cover no-repeat;
}

.about-hero::before {
    content: "R3";
    position: absolute;
    z-index: -1;
    top: 50%;
    left: -2vw;
    color: rgba(255, 255, 255, 0.026);
    font-family: sourceSansPro-black;
    font-size: clamp(280px, 40vw, 660px);
    line-height: 0.65;
    letter-spacing: -0.12em;
    transform: translateY(-43%);
    pointer-events: none;
}

.about-hero-glow {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.about-hero-glow-one {
    top: -260px;
    right: 3%;
    width: 570px;
    height: 570px;
    background: radial-gradient(circle, rgba(254, 97, 63, 0.25), rgba(254, 97, 63, 0) 68%);
}

.about-hero-glow-two {
    bottom: -320px;
    left: 25%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(255, 126, 0, 0.18), rgba(255, 126, 0, 0) 67%);
}

.about-hero-layout {
    display: grid;
    grid-template-columns: minmax(430px, 0.92fr) minmax(430px, 1.08fr);
    align-items: center;
    gap: clamp(70px, 9vw, 150px);
    min-height: clamp(650px, 72vh, 840px);
    padding: 70px 0 110px;
    box-sizing: border-box;
}

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

.about-hero .about-eyebrow {
    color: #ffb141;
}

.about-hero h1 {
    margin: 0 0 30px;
    color: #ffffff;
    font-size: clamp(50pt, 6.2vw, 88pt);
    line-height: 0.92;
    letter-spacing: -0.055em;
}

.about-hero h1 span {
    color: #ff8b2a;
}

.about-hero-intro {
    max-width: 600px;
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 17pt;
    line-height: 1.55;
}

.about-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 38px;
}

.about-text-link {
    color: #ffffff;
    font-size: 13pt;
}

.about-text-link span {
    display: inline-block;
    margin-left: 8px;
    transition: transform 180ms ease;
}

.about-text-link:hover span,
.about-text-link:focus-visible span {
    transform: translateY(4px);
}

.about-hero-art {
    position: relative;
    display: grid;
    place-items: center;
    width: min(100%, 570px);
    aspect-ratio: 1;
    justify-self: end;
}

.about-hero-art::before,
.about-hero-art::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.about-hero-art::before {
    inset: 13%;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025));
    border: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow: inset 0 0 70px rgba(255, 126, 0, 0.08), 0 30px 80px rgba(13, 8, 18, 0.28);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.about-hero-art::after {
    inset: 28%;
    background: radial-gradient(circle at 40% 30%, rgba(255, 126, 0, 0.36), rgba(254, 97, 63, 0.08) 45%, transparent 70%);
    filter: blur(14px);
}

.about-hero-art img {
    position: relative;
    z-index: 3;
    width: 33%;
    max-height: 48%;
    object-fit: contain;
    filter: drop-shadow(0 18px 34px rgba(13, 8, 18, 0.35));
}

.about-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
}

.about-orbit-outer {
    inset: 2%;
    transform: rotate(-12deg) scaleY(0.77);
}

.about-orbit-inner {
    inset: 18%;
    border-color: rgba(255, 139, 42, 0.32);
    transform: rotate(28deg) scaleY(0.72);
}

.about-orbit-dot {
    position: absolute;
    z-index: 4;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff8b2a;
    box-shadow: 0 0 0 8px rgba(255, 139, 42, 0.13), 0 0 28px rgba(255, 139, 42, 0.75);
}

.about-orbit-dot-one {
    top: 12%;
    right: 24%;
}

.about-orbit-dot-two {
    bottom: 17%;
    left: 13%;
}

.about-orbit-dot-three {
    right: 9%;
    bottom: 34%;
    width: 7px;
    height: 7px;
}

.about-art-word {
    position: absolute;
    z-index: 3;
    color: rgba(255, 255, 255, 0.68);
    font-size: 9pt;
    letter-spacing: 0.18em;
}

.about-art-word-one {
    top: 19%;
    left: 15%;
}

.about-art-word-two {
    right: 6%;
    bottom: 24%;
}

.about-art-word-three {
    bottom: 11%;
    left: 39%;
}

/* Company origin */
.about-story {
    position: relative;
    padding: 126px 0 92px;
    background: #f6f3f1;
}

.about-story::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(100% - 96px, 1420px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(68, 57, 74, 0.18), transparent);
    transform: translateX(-50%);
}

.about-story-layout {
    display: grid;
    grid-template-columns: minmax(360px, 0.82fr) minmax(450px, 1.18fr);
    gap: clamp(70px, 9vw, 150px);
}

.about-story-heading h2,
.about-section-heading h2 {
    margin: 0;
    color: #3b3144;
    font-size: clamp(42pt, 5vw, 67pt);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.about-story-copy {
    padding-top: 30px;
}

.about-story-copy p {
    margin: 0 0 22px;
    color: #756a78;
    font-size: 14pt;
    line-height: 1.7;
}

.about-story-copy .about-story-lead {
    margin-bottom: 26px;
    color: #514656;
    font-family: sourceSansPro-semiBold;
    font-size: 17pt;
    line-height: 1.55;
}

.about-founder-line {
    display: grid;
    grid-template-columns: 0.6fr repeat(3, 1fr);
    margin-top: 86px;
    border-top: 1px solid rgba(68, 57, 74, 0.18);
    border-bottom: 1px solid rgba(68, 57, 74, 0.18);
}

.about-founder-line > div {
    min-height: 118px;
    padding: 28px 24px;
    box-sizing: border-box;
}

.about-founder-line > div:not(:last-child) {
    border-right: 1px solid rgba(68, 57, 74, 0.13);
}

.about-founder-line-label {
    display: flex;
    align-items: center;
    color: #db2a24;
    font-size: 10pt;
    letter-spacing: 0.16em;
}

.about-founder-name {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 9px;
}

.about-founder-number {
    color: #ff7e00;
    font-size: 9.5pt;
    letter-spacing: 0.12em;
}

.about-founder-name strong {
    color: #44394a;
    font-size: 17pt;
}

/* In-house journey */
.about-studio {
    padding: 116px 0 126px;
    background:
        linear-gradient(rgba(26, 29, 43, 0.91), rgba(31, 29, 47, 0.93)),
        url('../_images/about-viper.webp') center / cover no-repeat;
}

.about-studio .about-eyebrow {
    color: #ffb141;
}

.about-section-heading {
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(400px, 0.8fr);
    align-items: end;
    justify-content: space-between;
    gap: 70px;
    margin-bottom: 76px;
}

.about-studio .about-section-heading h2 {
    color: #ffffff;
}

.about-section-heading > p {
    max-width: 590px;
    margin: 0 0 2px auto;
    color: rgba(255, 255, 255, 0.68);
    font-size: 15pt;
    line-height: 1.6;
}

.about-journey {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-journey::before {
    content: "";
    position: absolute;
    top: 51px;
    right: 12.5%;
    left: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, #fe613f, #ffb141);
    opacity: 0.7;
}

.about-journey li {
    position: relative;
    min-height: 316px;
    padding: 0 34px 0 0;
    box-sizing: border-box;
}

.about-journey li:not(:last-child) {
    margin-right: 34px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.about-journey-step {
    display: inline-flex;
    position: relative;
    z-index: 2;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 177, 65, 0.72);
    border-radius: 50%;
    background: #2b2235;
    color: #ffb141;
    font-size: 9pt;
    box-shadow: 0 0 0 8px rgba(43, 34, 53, 1);
}

.about-journey-icon {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 58px;
    margin: 50px 0 26px;
}

.about-journey-icon span {
    display: block;
    width: 13px;
    border: 2px solid #fe613f;
    border-radius: 99px;
}

.about-journey-icon span:nth-child(1) { height: 26px; }
.about-journey-icon span:nth-child(2) { height: 48px; }
.about-journey-icon span:nth-child(3) { height: 36px; }

.about-journey-icon-grid {
    display: grid;
    grid-template-columns: repeat(2, 22px);
    grid-template-rows: repeat(2, 22px);
    gap: 6px;
}

.about-journey-icon-grid span {
    width: 22px;
    height: 22px !important;
    border-radius: 6px;
}

.about-journey-icon-build {
    align-items: center;
}

.about-journey-icon-build span {
    width: 13px;
    height: 50px !important;
    border-radius: 3px;
    transform: skew(-16deg);
}

.about-journey-icon-launch {
    align-items: center;
}

.about-journey-icon-launch span:first-child {
    width: 49px;
    height: 49px;
    border-radius: 50% 50% 50% 12px;
    transform: rotate(-45deg);
}

.about-journey-icon-launch span:last-child {
    width: 8px;
    height: 28px;
    border: 0;
    background: #ffb141;
    box-shadow: 0 0 18px rgba(255, 177, 65, 0.6);
}

.about-journey h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 22pt;
}

.about-journey p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12.5pt;
    line-height: 1.55;
}

/* Philosophy */
.about-philosophy {
    padding: 126px 0;
    background: #ffffff;
}

.about-philosophy-layout {
    display: grid;
    grid-template-columns: minmax(500px, 1.15fr) minmax(360px, 0.75fr);
    gap: clamp(70px, 9vw, 145px);
    align-items: end;
}

.about-philosophy-statement h2 {
    margin: 0;
    color: #3b3144;
    font-size: clamp(42pt, 5.6vw, 75pt);
    line-height: 0.96;
    letter-spacing: -0.05em;
}

.about-philosophy-statement h2 span {
    color: #db2a24;
}

.about-philosophy-copy p {
    margin: 0 0 20px;
    color: #746a78;
    font-size: 14pt;
    line-height: 1.7;
}

.about-philosophy-copy p:first-child {
    color: #504654;
    font-family: sourceSansPro-semiBold;
    font-size: 16pt;
}

.about-principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 92px;
    border-top: 1px solid rgba(68, 57, 74, 0.16);
    border-bottom: 1px solid rgba(68, 57, 74, 0.16);
}

.about-principles article {
    position: relative;
    min-height: 210px;
    padding: 38px 42px 34px 0;
    box-sizing: border-box;
}

.about-principles article:not(:last-child) {
    margin-right: 42px;
    border-right: 1px solid rgba(68, 57, 74, 0.13);
}

.about-principle-mark {
    display: block;
    margin-bottom: 28px;
    color: #fe613f;
    font-family: sourceSansPro-semiBold;
    font-size: 10pt;
    letter-spacing: 0.15em;
}

.about-principles h3 {
    margin: 0 0 10px;
    color: #44394a;
    font-size: 19pt;
}

.about-principles p {
    max-width: 340px;
    margin: 0;
    color: #7a707d;
    font-size: 12.5pt;
    line-height: 1.55;
}

/* Closing CTA */
.about-next {
    padding: 0 0 92px;
    background: #ffffff;
}

.about-next-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 54px;
    overflow: hidden;
    padding: 52px 58px;
    border-radius: 26px;
    background: linear-gradient(120deg, #db2a24 0%, #fe613f 58%, #ff8b21 100%);
    box-sizing: border-box;
    box-shadow: 0 24px 62px rgba(189, 37, 33, 0.2);
}

.about-next-card::before,
.about-next-card::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
}

.about-next-card::before {
    top: -190px;
    right: -80px;
    width: 390px;
    height: 390px;
}

.about-next-card::after {
    right: 145px;
    bottom: -250px;
    width: 440px;
    height: 440px;
}

.about-next-card > div,
.about-next-card > a {
    position: relative;
    z-index: 1;
}

.about-next .about-eyebrow {
    color: rgba(255, 255, 255, 0.76);
}

.about-next h2 {
    max-width: 820px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(32pt, 4vw, 54pt);
    line-height: 1.02;
    letter-spacing: -0.035em;
}

.about-button-light {
    background: #ffffff;
    color: #c92723;
    box-shadow: 0 12px 30px rgba(92, 13, 16, 0.2);
    white-space: nowrap;
}

.about-button-light span {
    margin-left: 9px;
}

.about-button-light:hover,
.about-button-light:focus-visible {
    background: #fff5e9;
}

@media only screen and (max-width: 1100px) {
    .about-shell {
        width: min(100% - 64px, 980px);
    }

    .about-hero-layout {
        grid-template-columns: minmax(390px, 0.95fr) minmax(330px, 0.8fr);
        gap: 48px;
    }

    .about-story-layout,
    .about-philosophy-layout {
        gap: 68px;
    }

    .about-founder-line {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-founder-line-label {
        grid-column: 1 / -1;
        min-height: 65px !important;
        border-right: 0 !important;
        border-bottom: 1px solid rgba(68, 57, 74, 0.13);
    }

    .about-journey li {
        padding-right: 22px;
    }

    .about-journey li:not(:last-child) {
        margin-right: 22px;
    }
}

@media only screen and (max-width: 820px) {
    .about-shell {
        width: calc(100% - 42px);
    }

    .about-hero,
    .about-hero-layout {
        min-height: 0;
    }

    .about-hero-layout {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 82px 0 116px;
    }

    .about-hero-copy {
        max-width: 690px;
    }

    .about-hero h1 {
        font-size: clamp(48pt, 11vw, 70pt);
    }

    .about-hero-art {
        width: min(80vw, 480px);
        margin: -20px auto -60px;
        justify-self: center;
        opacity: 0.84;
    }

    .about-story,
    .about-philosophy {
        padding: 92px 0;
    }

    .about-story-layout,
    .about-section-heading,
    .about-philosophy-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .about-story-copy {
        padding-top: 0;
    }

    .about-founder-line {
        margin-top: 58px;
    }

    .about-founder-line > div {
        padding: 24px 18px;
    }

    .about-founder-name strong {
        font-size: 14pt;
    }

    .about-studio {
        padding: 92px 0 102px;
    }

    .about-section-heading {
        margin-bottom: 60px;
    }

    .about-section-heading > p {
        margin-left: 0;
    }

    .about-journey {
        grid-template-columns: repeat(2, 1fr);
        gap: 46px 0;
    }

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

    .about-journey li,
    .about-journey li:not(:last-child) {
        min-height: 290px;
        margin: 0 24px 0 0;
        padding: 25px 24px 0 0;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
        border-right: 0;
    }

    .about-journey-step {
        transform: translateY(-47px);
    }

    .about-journey-icon {
        margin-top: 4px;
    }

    .about-principles {
        grid-template-columns: 1fr;
        margin-top: 64px;
    }

    .about-principles article,
    .about-principles article:not(:last-child) {
        min-height: 0;
        margin: 0;
        padding: 30px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(68, 57, 74, 0.13);
    }

    .about-principles article:last-child {
        border-bottom: 0;
    }

    .about-principle-mark {
        margin-bottom: 16px;
    }

    .about-next {
        padding-bottom: 68px;
    }

    .about-next-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 44px;
    }

    .about-next-card .about-button {
        justify-self: start;
    }
}

@media only screen and (max-width: 560px) {
    .about-shell {
        width: calc(100% - 32px);
    }

    .about-eyebrow {
        font-size: 9.5pt;
    }

    .about-button {
        min-height: 46px;
        padding: 0 21px;
        font-size: 11.5pt;
    }

    .about-hero-layout {
        padding: 64px 0 100px;
    }

    .about-hero h1 {
        margin-bottom: 24px;
        font-size: clamp(39pt, 14.5vw, 55pt);
    }

    .about-hero-intro {
        font-size: 14pt;
    }

    .about-hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
        margin-top: 30px;
    }

    .about-hero-art {
        width: 92vw;
        margin-top: -6px;
        margin-bottom: -54px;
    }

    .about-art-word {
        font-size: 7.5pt;
    }

    .about-story,
    .about-philosophy {
        padding: 72px 0;
    }

    .about-story-heading h2,
    .about-section-heading h2,
    .about-philosophy-statement h2 {
        font-size: clamp(34pt, 12vw, 46pt);
    }

    .about-story-copy .about-story-lead {
        font-size: 14.5pt;
    }

    .about-story-copy p,
    .about-philosophy-copy p {
        font-size: 12.5pt;
    }

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

    .about-founder-line-label {
        grid-column: auto;
    }

    .about-founder-line > div,
    .about-founder-line > div:not(:last-child) {
        min-height: 82px;
        border-right: 0;
        border-bottom: 1px solid rgba(68, 57, 74, 0.13);
    }

    .about-founder-line > div:last-child {
        border-bottom: 0;
    }

    .about-founder-name {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 18px;
    }

    .about-studio {
        padding: 72px 0 82px;
    }

    .about-section-heading {
        gap: 28px;
        margin-bottom: 50px;
    }

    .about-section-heading > p {
        font-size: 12.5pt;
    }

    .about-journey {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-journey li,
    .about-journey li:not(:last-child) {
        display: grid;
        grid-template-columns: 46px minmax(0, 1fr);
        min-height: 0;
        margin: 0;
        padding: 24px 0 26px;
        column-gap: 18px;
    }

    .about-journey-step {
        grid-row: 1 / 4;
        transform: none;
    }

    .about-journey-icon {
        display: none;
    }

    .about-journey h3 {
        margin-bottom: 7px;
        font-size: 18pt;
    }

    .about-journey p {
        font-size: 11.5pt;
    }

    .about-philosophy-layout {
        gap: 34px;
    }

    .about-philosophy-copy p:first-child {
        font-size: 14pt;
    }

    .about-principles {
        margin-top: 52px;
    }

    .about-next {
        padding-bottom: 48px;
    }

    .about-next-card {
        gap: 25px;
        padding: 32px 26px;
        border-radius: 20px;
    }

    .about-next h2 {
        font-size: 31pt;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .about-button,
    .about-text-link span {
        transition: none;
    }
}

/* Mobile layout hardening */
@media only screen and (max-width: 600px) {
    .about-main {
        overflow-x: clip;
    }

    .about-hero::before {
        top: 44%;
        left: -18vw;
        font-size: min(108vw, 470px);
    }

    .about-hero-glow-one {
        top: -180px;
        right: -180px;
        width: 390px;
        height: 390px;
    }

    .about-hero-glow-two {
        bottom: -190px;
        left: -100px;
        width: 410px;
        height: 410px;
    }

    .about-hero-layout {
        gap: 24px;
        padding-top: 58px;
        padding-bottom: 78px;
    }

    .about-hero-copy,
    .about-story-heading,
    .about-story-copy,
    .about-philosophy-statement,
    .about-philosophy-copy {
        min-width: 0;
    }

    .about-hero h1,
    .about-story-heading h2,
    .about-section-heading h2,
    .about-philosophy-statement h2,
    .about-next h2 {
        overflow-wrap: anywhere;
    }

    .about-hero-art {
        width: min(86vw, 400px);
        margin: -4px auto -38px;
    }

    .about-founder-line > div,
    .about-principles article,
    .about-next-card {
        box-sizing: border-box;
        min-width: 0;
    }
}

@media only screen and (max-width: 380px) {
    .about-hero h1 {
        font-size: 37pt;
    }

    .about-hero-art {
        width: 88vw;
    }

    .about-founder-name {
        gap: 12px;
    }

    .about-next-card {
        padding: 28px 22px;
    }
}
