
:root {
    --blue: #17213B;
    --blue-depth: #223158;
    --cream: #f7f8fa;
    --cream-deep: #eceef2;
    --sky: #6a91f0;
    --sky-soft: #cfd9f1;
    --white: #ffffff;
    --muted: #3d4e70;
    --faded40: #9ca2b4;
    --faded20: #c9cdd8;
    --sans: 'DM Sans', Helvetica, sans-serif;
    --mono: 'JetBrains Mono', monospace;
    --serif: 'Clash Display', sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--mono);
    background: var(--cream);
    color: var(--blue);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: 60px;
    background: rgba(247, 248, 250, .96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--faded20);
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nlm {
    width: 30px;
    height: 30px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 300;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: .02em;
    transition: color .2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--blue);
}

.nav-cta {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--cream);
    background: var(--blue);
    padding: 10px 16px;
    border-radius: 9999px;
    text-decoration: none;
    height: 37px;
    display: flex;
    align-items: center;
    transition: filter .2s;
}

.nav-cta:hover {
    filter: brightness(1.1);
}

.mob-btn svg {
    stroke: var(--blue);
}

/* HERO — full green */
.pg-hero {
    background: var(--blue);
    padding: 120px 32px 80px;
}

.pg-hero-in {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
}

.pg-tag {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(106, 145, 240, .65);
    margin-bottom: 16px;
}

.pg-h1 {
    font-family: var(--serif);
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -.03em;
    color: var(--white);
}

.pg-sub {
    font-family: var(--mono);
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, .5);
    line-height: 1.7;
    letter-spacing: -.01em;
    align-self: end;
    padding-bottom: 8px;
}

/* STUDIO PHOTO */
.photo-sc {
    background: var(--cream);
    padding: 64px 32px;
}

.photo-sc-w {
    max-width: 1200px;
    margin: 0 auto;
}

.studio-wrap {
    border-radius: 16px;
    overflow: hidden;
    height: 440px;
    background: var(--cream-deep);
    position: relative;
    border: 1px solid var(--faded20);
}

.studio-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.studio-cap {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(252, 252, 247, .9);
    backdrop-filter: blur(8px);
    padding: 9px 14px;
    border-radius: 9999px;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 300;
    color: var(--muted);
    border: 1px solid var(--faded20);
}

.sc {
    padding: 80px 32px;
}

.sc-w {
    max-width: 1200px;
    margin: 0 auto;
}

.lbl {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
}

.lbl-lt {
    color: rgba(255, 255, 255, .35);
}

.divider {
    border-top: 1px solid var(--faded20);
}

/* MISSION */
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.m-h2 {
    font-family: var(--serif);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -1.2px;
    margin-bottom: 22px;
}

.m-p {
    font-family: var(--mono);
    font-size: 15px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 14px;
    letter-spacing: -.01em;
}

.val-item {
    padding: 18px 0;
    border-bottom: 1px solid var(--faded20);
}

.val-item:first-child {
    border-top: 1px solid var(--faded20);
}

.val-title {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
}

.val-desc {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.6;
}

/* HOSTS */
.hosts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 0;
}

.host-card {
    background: var(--white);
    border: 1px solid var(--faded20);
    border-radius: 16px;
    padding: 32px;
}

.hc-top {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--faded20);
}

.hc-av {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--sky-soft), rgba(106, 145, 240, .5));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 24px;
    color: var(--blue);
    border: 1px solid var(--faded20);
}

.hc-name {
    font-family: var(--sans);
    font-size: 17px;
    font-weight: 500;
}

.hc-role {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 300;
    color: var(--muted);
    margin-top: 3px;
}

.hc-p {
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
}

/* PLANFAN — green section */
.pf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.pf-item {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 24px;
}

.pf-icon {
    width: 36px;
    height: 36px;
    background: rgba(106, 145, 240, .12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.pf-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--sky);
    fill: none;
    stroke-width: 1.8;
}

.pf-title {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 7px;
}

.pf-p {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, .45);
    line-height: 1.6;
}

.pf-h2 {
    font-family: var(--serif);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -1.5px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 14px;
}

.pf-sub {
    font-family: var(--mono);
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, .48);
    line-height: 1.7;
    max-width: 560px;
    letter-spacing: -.01em;
}

/* CTA */
.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cta-h2 {
    font-family: var(--serif);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -1.5px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 14px;
}

.cta-p {
    font-family: var(--mono);
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, .47);
    line-height: 1.7;
    letter-spacing: -.01em;
}

.cf-lbl {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 14px;
}

.cf-row {
    display: flex;
}

.cf-in {
    flex: 1;
    height: 52px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, .05);
    border: 2px solid rgba(252, 252, 247, .14);
    border-right: none;
    border-radius: 9999px 0 0 9999px;
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 300;
    color: var(--white);
    outline: none;
    transition: border-color .2s;
}

.cf-in::placeholder {
    color: rgba(255, 255, 255, .22);
}

.cf-in:focus {
    border-color: rgba(106, 145, 240, .45);
}

.cf-btn {
    height: 52px;
    padding: 0 28px;
    background: var(--sky);
    color: var(--blue);
    border: none;
    border-radius: 0 9999px 9999px 0;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: filter .2s;
    white-space: nowrap;
}

.cf-btn:hover {
    filter: brightness(.92);
}

.cf-note {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 255, 255, .6);
    margin-top: 10px;
}

footer {
    background: var(--cream);
    border-top: 1px solid var(--faded20);
    padding: 48px 32px;
}

.ft-in {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
}

.ft-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 14px;
}

.ft-lm {
    width: 28px;
    height: 28px;
}

.ft-tag {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.6;
    max-width: 280px;
}

.ft-cols {
    display: flex;
    gap: 64px;
}

.ft-col h4 {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    margin-bottom: 14px;
}

.ft-col a {
    display: block;
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 300;
    color: var(--muted);
    text-decoration: none;
    margin-bottom: 9px;
    transition: color .2s;
}

.ft-col a:hover {
    color: var(--blue);
}

.ft-btm {
    max-width: 1200px;
    margin: 28px auto 0;
    padding-top: 22px;
    border-top: 1px solid var(--faded20);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.ft-copy {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 300;
    color: var(--muted);
}

.ft-disc {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 300;
    color: var(--faded40);
    max-width: 560px;
    line-height: 1.5;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .4s ease-out, transform .4s ease-out;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

.rd1 {
    transition-delay: 80ms;
}

.rd2 {
    transition-delay: 160ms;
}

.white-text {
    color: var(--white) !important;
}

.mob-btn {
    display: none;
    position: relative;
    z-index: 210;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    width: 36px;
    height: 36px;
    flex-direction: column;
    justify-content: center;
    gap: 5.5px;
}

/* Real logo image */
.nlm-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 50%;
    display: block;
    background: var(--cream-deep);
    padding: 2px;
}

.ft-lm-img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    border-radius: 50%;
    display: block;
    background: var(--cream-deep);
    padding: 2px;
}

/* Footer platform icons */
.ft-col a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ft-col a svg {
    opacity: .75;
    transition: opacity .2s;
}

.ft-col a:hover svg {
    opacity: 1;
}

.ft-col-a {
    display: flex;
    align-items: center;
    gap: 9px;
}

.brand-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: 0.75;
    transition: opacity .2s;
}

.ft-col a:hover .brand-icon {
    opacity: 1;
}

/* ── MOBILE MENU OVERLAY ── */
.mob-overlay {
    position: fixed;
    inset: 0;
    z-index: 190;
    background: rgba(23, 33, 59, .97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mob-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.mob-overlay-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.mob-overlay-links a {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(32px, 8vw, 52px);
    font-weight: 500;
    color: rgba(255, 255, 255, .35);
    text-decoration: none;
    letter-spacing: -.03em;
    line-height: 1.2;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateY(20px);
    opacity: 0;
    transition: color .2s, transform .45s cubic-bezier(0.16, 1, 0.3, 1), opacity .45s cubic-bezier(0.16, 1, 0.3, 1);
}

.mob-overlay-links a:last-child {
    border-bottom: none;
}

.mob-overlay.open .mob-overlay-links a {
    transform: translateY(0);
    opacity: 1;
}

.mob-overlay.open .mob-overlay-links a:nth-child(1) {
    transition-delay: .08s;
}

.mob-overlay.open .mob-overlay-links a:nth-child(2) {
    transition-delay: .14s;
}

.mob-overlay.open .mob-overlay-links a:nth-child(3) {
    transition-delay: .20s;
}

.mob-overlay.open .mob-overlay-links a:nth-child(4) {
    transition-delay: .26s;
}

.mob-overlay-links a:hover {
    color: #fff;
}

.mob-overlay-links a.active {
    color: var(--sky);
}

.mob-link-arrow {
    font-size: 20px;
    color: rgba(255, 255, 255, .15);
    transition: color .2s, transform .2s;
}

.mob-overlay-links a:hover .mob-link-arrow,
.mob-overlay-links a.active .mob-link-arrow {
    color: var(--sky);
    transform: translateX(4px);
}

.mob-overlay-cta {
    margin-top: 40px;
    font-family: 'DM Sans', Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--blue);
    background: var(--sky);
    padding: 14px 32px;
    border-radius: 9999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transform: translateY(20px);
    opacity: 0;
    transition: filter .2s, transform .5s cubic-bezier(0.16, 1, 0.3, 1), opacity .5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mob-overlay.open .mob-overlay-cta {
    transform: translateY(0);
    opacity: 1;
    transition-delay: .32s;
}

.mob-overlay-cta:hover {
    filter: brightness(.92);
}

.mob-overlay-bottom {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 20px;
    transform: translateY(10px);
    opacity: 0;
    transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1), opacity .5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mob-overlay.open .mob-overlay-bottom {
    transform: translateY(0);
    opacity: 1;
    transition-delay: .38s;
}

.mob-overlay-bottom-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 255, 255, .25);
    letter-spacing: .06em;
}

.mob-overlay-socials {
    display: flex;
    gap: 16px;
}

.mob-overlay-socials a {
    color: rgba(255, 255, 255, .3);
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 300;
    transition: color .2s;
}

.mob-overlay-socials a:hover {
    color: var(--sky);
}

/* hamburger spans */
.mob-btn span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: rgba(255, 255, 255, .8);
    border-radius: 2px;
    transform-origin: center;
    transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1), opacity .2s, background .4s;
}

nav.scrolled .mob-btn span {
    background: var(--blue);
}

.mob-btn.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.mob-btn.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mob-btn.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.mob-btn.open span {
    background: var(--blue) !important;
}

nav .nav-cta.hidden {
    opacity: 0;
    pointer-events: none;
}

/* ── MOBILE MENU ── */
.mob-overlay {
    position: fixed;
    inset: 0;
    z-index: 190;
    background: rgba(23, 33, 59, .97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mob-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.mob-overlay-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.mob-overlay-links a {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(30px, 8vw, 50px);
    font-weight: 500;
    color: rgba(255, 255, 255, .3);
    text-decoration: none;
    letter-spacing: -.03em;
    line-height: 1.2;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateY(20px);
    opacity: 0;
    transition: color .2s, transform .45s cubic-bezier(0.16, 1, 0.3, 1), opacity .45s cubic-bezier(0.16, 1, 0.3, 1);
}

.mob-overlay-links a:last-child {
    border-bottom: none;
}

.mob-overlay.open .mob-overlay-links a {
    transform: translateY(0);
    opacity: 1;
}

.mob-overlay.open .mob-overlay-links a:nth-child(1) {
    transition-delay: .07s;
}

.mob-overlay.open .mob-overlay-links a:nth-child(2) {
    transition-delay: .13s;
}

.mob-overlay.open .mob-overlay-links a:nth-child(3) {
    transition-delay: .19s;
}

.mob-overlay.open .mob-overlay-links a:nth-child(4) {
    transition-delay: .25s;
}

.mob-overlay-links a:hover {
    color: #fff;
}

.mob-overlay-links a.active {
    color: var(--sky);
}

.mob-link-arrow {
    font-size: 18px;
    color: rgba(255, 255, 255, .12);
    transition: color .2s, transform .2s;
}

.mob-overlay-links a:hover .mob-link-arrow,
.mob-overlay-links a.active .mob-link-arrow {
    color: var(--sky);
    transform: translateX(5px);
}

.mob-overlay-cta {
    margin-top: 36px;
    font-family: 'DM Sans', Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--blue);
    background: var(--sky);
    padding: 14px 32px;
    border-radius: 9999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transform: translateY(20px);
    opacity: 0;
    transition: filter .2s, transform .5s cubic-bezier(0.16, 1, 0.3, 1), opacity .5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mob-overlay.open .mob-overlay-cta {
    transform: translateY(0);
    opacity: 1;
    transition-delay: .31s;
}

.mob-overlay-cta:hover {
    filter: brightness(.92);
}

.mob-overlay-bottom {
    position: absolute;
    bottom: 36px;
    left: 40px;
    right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 18px;
    transform: translateY(10px);
    opacity: 0;
    transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1), opacity .5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mob-overlay.open .mob-overlay-bottom {
    transform: translateY(0);
    opacity: 1;
    transition-delay: .37s;
}

.mob-overlay-bottom-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 255, 255, .2);
    letter-spacing: .06em;
}

.mob-overlay-socials {
    display: flex;
    gap: 16px;
}

.mob-overlay-socials a {
    color: rgba(255, 255, 255, .28);
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 300;
    transition: color .2s;
}

.mob-overlay-socials a:hover {
    color: var(--sky);
}

/* hamburger → X morph */
.mob-btn span {
    display: block;
    width: 20px;
    height: 1.5px;
    border-radius: 2px;
    transform-origin: center;
    transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1), opacity .2s, background .4s;
}

.mob-btn.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.mob-btn.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mob-btn.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.mob-btn span {
    background: var(--blue);
}

/* Real headshot avatars */
.h-av img,
.hc-av img,
.sc-av img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
    display: block;
}

.h-av,
.hc-av,
.sc-av {
    background: none !important;
    font-size: 0 !important;
    overflow: hidden;
}

@media(max-width:768px) {
    .mob-btn {
        display: flex;
    }

    nav {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .pg-hero {
        padding: 100px 20px 56px;
    }

    .photo-sc {
        padding: 0 20px 48px;
    }

    .studio-wrap {
        height: 240px;
    }

    .sc {
        padding: 56px 20px;
    }

    footer {
        padding: 40px 20px;
    }

    .pg-hero-in {
        gap: 20px;
    }

    .photo-sc {
        padding: 40px 20px 0px;
    }

    .mission-grid {
        gap: 20px;
    }

    .sc {
        padding: 40px 20px;
    }

    .pf-item {
        padding: 20px 15px;
    }

    .cta-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media(max-width:767px) {
    .ft-col a.hide-ft-menu-mob {
        display: none;
    }

    .cf-btn {
        padding: 0 15px;
    }
}

@media(max-width:600px) {
    .pg-hero-in {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hosts-grid {
        grid-template-columns: 1fr;
    }

    .pf-grid {
        grid-template-columns: 1fr;
    }

    .ft-in {
        grid-template-columns: 1fr;
    }

    .ft-cols {
        flex-wrap: wrap;
        gap: 32px;
    }

    .ft-btm {
        flex-direction: column;
    }

    .cf-note {
        font-size: 10px;
        letter-spacing: .01em;
    }

    .cf-in {
        width: calc(100% - 95px);
    }

    .cf-btn {
        width: 95px;
    }

    .cta-p {
        font-size: 14px;
    }

    .cta-grid {
        gap: 20px;
    }

    .ft-in {
        gap: 25px;
    }

    .pg-sub {
        padding-bottom: 0;
    }

    .pg-hero {
        padding: 100px 20px 40px;
    }

    .val-item:nth-child(2) {
        padding-top: 0;
    }

    .sc-w.join-wrap {
        padding-top: 40px !important;
    }
}
