
: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);
}

/* PAGE HERO */
.pg-hero {
    background: var(--blue);
    padding: 120px 32px 80px;
}

.pg-hero-in {
    max-width: 1200px;
    margin: 0 auto;
}

.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, 5.5vw, 72px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -.03em;
    color: var(--white);
    margin-bottom: 18px;
}

.pg-sub {
    font-family: var(--mono);
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, .5);
    line-height: 1.7;
    max-width: 560px;
    letter-spacing: -.01em;
}

/* TRUST STRIP */
.trust-strip {
    background: var(--cream);
    border-bottom: 1px solid var(--faded20);
    padding: 28px 32px;
}

.trust-in {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 0 32px 0 0;
}

.trust-item:not(:first-child) {
    padding-left: 32px;
    border-left: 1px solid var(--faded20);
}

.t-icon {
    width: 34px;
    height: 34px;
    background: var(--sky-soft);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.t-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 1.8;
}

.t-title {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 3px;
}

.t-desc {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.55;
}

/* SPONSOR CARDS */
.sc {
    padding: 72px 32px 100px;
}

.sc-w {
    max-width: 1200px;
    margin: 0 auto;
}

.sp-cards {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.sp-card {
    background: var(--white);
    border: 1px solid var(--faded20);
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 380px 1fr;
    transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}

.sp-card:hover {
    box-shadow: 0 12px 48px rgba(23, 33, 59, .07);
    transform: translateY(-2px);
}

.sp-img {
    background: var(--cream-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px;
    min-height: 300px;
    position: relative;
}

.sp-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 70%, rgba(23, 33, 59, .04) 0%, transparent 70%);
    pointer-events: none;
}

.sp-img img {
    max-width: 280px;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.sp-ph {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--sky-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-ph svg {
    width: 40px;
    height: 40px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 1.5;
}

.sp-body {
    padding: 44px 48px;
    border-left: 1px solid var(--faded20);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sp-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.sp-badge {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--blue);
    background: var(--sky-soft);
    padding: 4px 10px;
    border-radius: 9999px;
}

.sp-since {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 300;
    color: var(--muted);
}

.sp-h2 {
    font-family: var(--serif);
    font-size: clamp(22px, 2.5vw, 32px);
    line-height: 1.2;
    letter-spacing: -.02em;
    margin-bottom: 14px;
}

.sp-p {
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 24px;
    letter-spacing: -.01em;
}

.sp-details {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 28px;
}

.sp-det {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 300;
    color: var(--muted);
}

.sp-det svg {
    width: 13px;
    height: 13px;
    stroke: var(--muted);
    fill: none;
    stroke-width: 1.8;
    flex-shrink: 0;
}

.sp-det a {
    color: var(--blue);
    text-decoration: none;
    transition: opacity .2s;
}

.sp-det a:hover {
    opacity: .7;
}

.sp-acts {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-p {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 400;
    color: var(--cream);
    background: var(--blue);
    padding: 0 22px;
    border-radius: 9999px;
    text-decoration: none;
    height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: filter .2s ease-out;
}

.btn-p:hover {
    filter: brightness(1.1);
}

.btn-p svg {
    width: 12px;
    height: 12px;
}

.btn-ol {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 400;
    color: var(--blue);
    border: 1.5px solid var(--blue);
    padding: 0 20px;
    border-radius: 9999px;
    text-decoration: none;
    height: 44px;
    display: inline-flex;
    align-items: center;
    transition: all .2s ease-out;
}

.btn-ol:hover {
    background: var(--blue);
    color: var(--sky);
}

/* BECOME SPONSOR */
.become {
    background: var(--blue);
    padding: 80px 32px;
}

.become-in {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.b-lbl {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(106, 145, 240, .6);
    margin-bottom: 14px;
}

.b-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;
}

.b-p {
    font-family: var(--mono);
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, .47);
    line-height: 1.7;
    letter-spacing: -.01em;
}

.crit-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.crit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    padding: 18px 20px;
}

.crit-n {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .06);
    padding: 3px 7px;
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 1px;
}

.crit-title {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 4px;
}

.crit-desc {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, .4);
    line-height: 1.55;
}

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;
}

.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);
}

/* Contact CTA button */
.b-cta {
    margin-top: 28px;
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 500;
    color: var(--blue);
    background: var(--sky);
    border: none;
    padding: 0 32px;
    border-radius: 9999px;
    height: 51px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: filter .2s ease-out;
    letter-spacing: -.04px;
}

.b-cta:hover {
    filter: brightness(.92);
}

/* Contact Modal */
.cm-overlay {
    position: fixed;
    inset: 0;
    z-index: 900;
    background: rgba(23, 33, 59, .65);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--ease);
}

.cm-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.cm-panel {
    background: var(--white);
    border-radius: 20px;
    width: 100%;
    max-width: 520px;
    max-height: 92vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    transform: translateY(24px);
    transition: transform .35s var(--ease);
    box-shadow: 0 32px 80px rgba(23, 33, 59, .22);
}

.cm-overlay.open .cm-panel {
    transform: translateY(0);
}

.cm-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid var(--faded20);
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 20px;
    line-height: 1;
    transition: all .2s;
}

.cm-close:hover {
    background: var(--cream-deep);
    color: var(--blue);
}

.cm-title {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 500;
    color: var(--blue);
    letter-spacing: -.03em;
    line-height: 1.1;
    margin-bottom: 8px;
}

.cm-sub {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 28px;
    letter-spacing: -.01em;
}

.cm-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.cm-lbl {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 400;
    color: var(--blue);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.cm-req {
    color: var(--sky);
}

.cm-in {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 300;
    color: var(--blue);
    background: var(--cream);
    border: 1.5px solid var(--faded20);
    border-radius: 10px;
    padding: 11px 14px;
    outline: none;
    transition: border-color .2s;
    width: 100%;
}

.cm-in:focus {
    border-color: var(--sky);
    background: var(--white);
}

.cm-in::placeholder {
    color: var(--faded40);
}

.cm-submit {
    width: 100%;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    background: var(--blue);
    border: none;
    border-radius: 9999px;
    height: 50px;
    cursor: pointer;
    margin-top: 8px;
    transition: background .2s, transform .15s;
}

.cm-submit:hover {
    background: var(--blue-depth);
    transform: scale(.99);
}

.cm-thankyou {
    display: none;
    text-align: center;
    padding: 16px 0;
}

.cm-thankyou.show {
    display: block;
}

.cm-form.hide {
    display: none;
}

#cm-header.hide {
    display: none;
}

.cm-ty-icon {
    width: 56px;
    height: 56px;
    background: rgba(106, 145, 240, .1);
    border: 1.5px solid rgba(106, 145, 240, .25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.cm-ty-icon svg {
    width: 26px;
    height: 26px;
    color: var(--sky);
}

.cm-ty-h {
    font-family: 'Clash Display', sans-serif;
    font-size: 26px;
    font-weight: 500;
    color: var(--blue);
    letter-spacing: -.03em;
    margin-bottom: 10px;
}

.cm-ty-p {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
}

@media(max-width:768px) {
    .mob-btn {
        display: flex;
    }

    nav {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .pg-hero {
        padding: 100px 20px 56px;
    }

    .trust-strip {
        padding: 24px 20px;
    }

    .sc {
        padding: 40px 20px;
    }

    .become {
        padding: 40px 20px;
    }

    footer {
        padding: 40px 20px;
    }

    .trust-item {
        gap: 8px;
        padding: 0px 15px 0 0;
    }

    .trust-item:not(:first-child) {
        padding-left: 15px;
    }

    .sp-card {
        grid-template-columns: 280px 1fr;
    }

    .sp-body,
    .sp-img {
        padding: 30px 25px;
    }

    .become-in {
        gap: 20px;
    }
}

@media(max-width:767px) {
    .ft-col a.hide-ft-menu-mob {
        display: none;
    }

    .ft-in {
        grid-template-columns: 1fr;
    }

    .ft-cols {
        flex-wrap: wrap;
        gap: 32px;
    }

    .ft-btm {
        flex-direction: column;
    }

    .sp-img {
        min-height: 220px;
    }

    .sp-body {
        border-left: none;
        border-top: 1px solid var(--faded20);
        padding: 32px 24px;
    }

    .trust-item:not(:first-child) {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--faded20);
        padding-top: 20px;
    }

    .trust-in {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sp-card {
        grid-template-columns: 1fr;
    }

    .become-in {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media(max-width:600px) {
    .cm-panel {
        padding: 55px 20px 28px;
    }

    .ft-in {
        gap: 25px;
    }

    .pg-hero {
        padding: 100px 20px 40px;
    }

    .sp-acts {
        align-items: flex-start;
        flex-direction: column;
        justify-content: flex-end;
    }

    .btn-p,
    .btn-ol {
        min-width: 100%;
        justify-content: center;
    }

    .become-in {
        gap: 20px;
    }
}
