:root {
    --teal: #0E6E6B;
    --teal-deep: #083f3d;
    --teal-ink: #052b29;
    --blue: #00AEEF;
    --green: #4EA844;
    --lime: #BFD72F;
    --grey: #7F8083;
    --paper: #F5F9F9;
    --mist: #eaf4f4;
    --white: #fff;
    --ink: #0d1f1e;
    --line: #e2ebeb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased
}

img {
    display: block;
    max-width: 100%
}

a {
    text-decoration: none;
    color: inherit
}

h1,
h2,
h3 {
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.04
}

.wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 28px
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.in {
    opacity: 1;
    transform: none
}

/* NAV */
nav {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(5, 43, 41, .85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.ni {
    max-width: 1120px;
    margin: 0 auto;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.nlogo {
    display: flex;
    align-items: center
}

.nlogo img {
    height: 104px;
    width: auto
}

.nlinks {
    display: flex;
    align-items: center;
    gap: 28px
}

.nlinks a {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
    color: rgba(255, 255, 255, .72);
    text-transform: uppercase
}

.nlinks a:hover {
    color: #fff !important;
}

.nbtn {
    font-family: 'Inter';
    background: var(--blue);
    color: #04302e !important;
    font-size: 13px;
    font-weight: 700;
    padding: 11px 22px;
    border-radius: 999px;
    letter-spacing: .02em;
    white-space: nowrap;
    transition: transform .18s, box-shadow .18s
}

.nbtn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(0, 174, 239, .35)
}

@media(max-width:900px) {
    .nlinks a:not(.nbtn) {
        display: none
    }
}

@media(max-width:560px) {
    .nlogo img {
        height: 72px
    }
}

/* HERO */
.hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(120% 130% at 78% 8%, #0c5f5c 0%, var(--teal-deep) 46%, var(--teal-ink) 100%);
    color: #fff;
    padding: 78px 0 34px
}

.hero .wrap {
    position: relative;
    z-index: 3
}

.hero-art {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none
}

.hero-art svg {
    position: absolute;
    right: -6%;
    top: 44%;
    transform: translateY(-50%);
    width: min(720px, 90vw);
    opacity: .9
}

.hero-fade {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg, var(--teal-ink) 8%, rgba(5, 43, 41, .15) 55%, transparent 80%)
}

.wordmark {
    max-width: 800px
}

.wordmark .k1 {
    font-family: 'Archivo';
    font-weight: 900;
    font-size: clamp(2.4rem, 6.6vw, 5rem);
    line-height: .96;
    letter-spacing: -.03em;
    color: #fff
}

.wordmark .k1 .hl {
    color: var(--blue)
}

.wordmark .k2 {
    font-family: 'Archivo';
    font-weight: 700;
    font-size: clamp(1rem, 2.4vw, 1.55rem);
    letter-spacing: .02em;
    color: #eafcff;
    margin-top: 18px
}

.wordmark .k3 {
    font-family: 'Archivo';
    font-style: italic;
    font-weight: 600;
    font-size: clamp(.95rem, 2vw, 1.2rem);
    color: var(--green);
    margin-top: 4px
}

.sectors {
    margin-top: 18px;
    font-family: 'IBM Plex Mono';
    font-size: 12.5px;
    letter-spacing: .06em;
    color: rgba(255, 255, 255, .72);
    text-transform: uppercase
}

.sectors span {
    color: var(--lime);
    margin: 0 6px
}

.lede {
    max-width: 540px;
    font-size: 1.06rem;
    color: rgba(255, 255, 255, .8);
    margin: 24px 0 28px
}

.details {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 14px;
    overflow: hidden;
    max-width: 640px;
    margin-bottom: 28px
}

.det {
    flex: 1;
    min-width: 150px;
    padding: 15px 20px;
    border-right: 1px solid rgba(255, 255, 255, .12)
}

.det:last-child {
    border-right: none
}

.det .l {
    font-size: 10.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 5px
}

.det .v {
    font-family: 'Archivo';
    font-weight: 700;
    font-size: 1.02rem;
    color: #fff;
    line-height: 1.25
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center
}

.btn-primary {
    background: var(--lime);
    color: #0a3f1f;
    font-weight: 800;
    font-family: 'Archivo';
    font-size: 15px;
    padding: 16px 34px;
    border-radius: 999px;
    transition: transform .18s, box-shadow .18s
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(191, 215, 47, .34)
}

.btn-ghost {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 16px 4px;
    border-bottom: 1px solid transparent;
    transition: border-color .2s
}

.btn-ghost:hover {
    border-color: var(--blue)
}

/* COUNTDOWN */
.count {
    position: relative;
    z-index: 3;
    background: var(--teal-ink)
}

.count .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
    flex-wrap: wrap
}

.count-label {
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    font-weight: 600
}

.count-units {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.cu {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 12px 16px;
    text-align: center;
    min-width: 70px
}

.cu b {
    font-family: 'IBM Plex Mono';
    font-weight: 600;
    font-size: 1.7rem;
    color: var(--blue);
    display: block;
    line-height: 1
}

.cu span {
    font-size: 9.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    margin-top: 6px;
    display: block
}

/* SECTION SHELL */
section {
    padding: 80px 0
}

.slabel {
    display: inline-block;
    font-family: 'IBM Plex Mono';
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 500;
    margin-bottom: 14px
}

.slabel::before {
    content: "//";
    color: var(--blue);
    margin-right: 8px
}

.stitle {
    font-size: clamp(1.7rem, 3.6vw, 2.5rem);
    color: var(--ink);
    max-width: 720px
}

.sintro {
    font-size: 1.05rem;
    color: #4a5a59;
    max-width: 620px;
    margin-top: 16px
}

/* COMMUNITY + GET IN TOUCH (LIGHT) */
.community {
    background: linear-gradient(180deg, var(--mist) 0%, var(--paper) 100%);
    border-top: 1px solid #dbe9e9
}

.comm-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center
}

.comm-left .cl-ey {
    font-family: 'IBM Plex Mono';
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 10px
}

.comm-left .cl-ey::before {
    content: "// ";
    color: var(--blue)
}

.comm-left h2 {
    color: var(--ink);
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
    margin-bottom: 10px
}

.comm-left p {
    color: #4a5a59;
    font-size: 1rem;
    max-width: 460px;
    margin-bottom: 30px
}

.brlink {
    color: var(--teal);
    font-weight: 600;
    border-bottom: 1px solid rgba(14, 110, 107, .3);
    white-space: nowrap
}

.brlink:hover {
    border-color: var(--teal)
}

.bignums {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: start;
    max-width: 520px
}

.bn {
    flex: 1 1 0;
    text-align: center
}

.bn b {
    font-family: 'IBM Plex Mono';
    font-weight: 600;
    font-size: clamp(1.6rem, 2.7vw, 2.2rem);
    display: block;
    line-height: 1;
    white-space: nowrap
}

.bn.n1 b {
    color: var(--blue)
}

.bn.n2 b {
    color: var(--green)
}

.bn.n3 b {
    color: var(--teal)
}

.bn span {
    font-size: 11.5px;
    color: #5a6a69;
    margin-top: 10px;
    display: block;
    line-height: 1.4
}

.chips {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
    margin-top: 28px
}

.chips .chip {
    font-family: 'IBM Plex Mono';
    font-size: 12px;
    color: var(--teal);
    border: 1px solid #cfe0e0;
    background: #fff;
    border-radius: 999px;
    padding: 7px 14px
}

.chips .chip b {
    color: var(--blue)
}

/* supplier form card (light) */
.supbox {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(14, 110, 107, .10)
}

.supbox .sb-tag {
    display: inline-block;
    font-family: 'IBM Plex Mono';
    font-size: 10.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #04302e;
    background: var(--lime);
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 14px
}

.supbox h3 {
    color: var(--ink);
    font-size: 1.3rem;
    line-height: 1.15;
    margin-bottom: 8px
}

.supbox .sb-sub {
    color: #5a6a69;
    font-size: 14px;
    margin-bottom: 20px
}

.fld {
    margin-bottom: 12px
}

.fld label {
    display: block;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 6px
}

.fld label .req {
    color: var(--green)
}

.fld input,
.fld select,
.fld textarea {
    width: 100%;
    background: #f3f8f8;
    border: 1px solid #d8e6e6;
    border-radius: 10px;
    padding: 12px 14px;
    color: var(--ink);
    font-family: 'Inter';
    font-size: 14.5px;
    appearance: none;
    -webkit-appearance: none
}

.fld textarea {
    resize: vertical;
    min-height: 60px
}

.fld input::placeholder,
.fld textarea::placeholder {
    color: #9db3b2
}

.fld input:focus,
.fld select:focus,
.fld textarea:focus {
    outline: none;
    border-color: var(--blue);
    background: #fff
}

.fld input.err,
.fld select.err,
.fld textarea.err {
    border-color: #e06b6b;
    background: #fdf0f0
}

.fld select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12'%3E%3Cpath fill='%230E6E6B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px
}

.f2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.fsub {
    width: 100%;
    background: var(--teal);
    color: #fff;
    font-family: 'Archivo';
    font-weight: 800;
    font-size: 15px;
    padding: 14px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform .18s, box-shadow .18s;
    margin-top: 4px
}

.fsub:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(14, 110, 107, .28)
}

.policy {
    font-size: 12px;
    color: #5a6a69;
    border-left: 2px solid var(--blue);
    padding: 8px 0 8px 12px;
    margin-top: 14px;
    line-height: 1.5
}

.policy a {
    color: var(--teal);
    font-weight: 600
}

.fok {
    display: none;
    text-align: center;
    padding: 16px 0
}

.fok.show {
    display: block
}

.supbox .fok h3 {
    color: var(--teal);
    font-size: 1.3rem;
    margin-bottom: 6px
}

.supbox .fok p {
    color: #5a6a69;
    font-size: 14px
}

@media(max-width:840px) {
    .comm-2col {
        grid-template-columns: 1fr;
        gap: 36px
    }
}

/* TRUSTED-BY MARQUEE */
.trusted {
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 40px 0
}

.tr-lab {
    text-align: center;
    font-family: 'IBM Plex Mono';
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 26px
}

.tr-lab b {
    color: var(--teal)
}

.marquee {
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent)
}

.track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: scroll 46s linear infinite
}

.trusted:hover .track {
    animation-play-state: paused
}

@keyframes scroll {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.tile {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 76px;
    width: 200px;
    padding: 0 26px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px
}

.tile img {
    max-height: 46px;
    max-width: 150px;
    object-fit: contain;
    filter: none
}

@media(prefers-reduced-motion:reduce) {
    .track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center
    }

    .marquee {
        -webkit-mask: none;
        mask: none
    }
}

.comm-events {
    margin-top: 48px;
    border-top: 1px solid #dbe9e9;
    padding-top: 34px
}

.ce-lab {
    text-align: center;
    font-family: 'IBM Plex Mono';
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 22px
}

.ce-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px
}

.ce-tile {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    height: 96px;
    flex: 0 1 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 26px
}

.ce-tile img {
    max-height: 62px;
    max-width: 160px;
    object-fit: contain
}

/* THEMES */
.theme-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 44px
}

.tcard {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 34px 32px 32px;
    background: #fff;
    transition: transform .2s, box-shadow .2s, border-color .2s;
    overflow: hidden
}

.tcard::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent)
}

.tcard:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 46px rgba(14, 110, 107, .13);
    border-color: transparent
}

.tnum {
    font-family: 'IBM Plex Mono';
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: .05em
}

.tcard h3 {
    font-size: 1.4rem;
    color: var(--ink);
    margin: 12px 0 12px
}

.tcard p {
    font-size: .98rem;
    color: #4a5a59;
    margin-bottom: 18px
}

.tq {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: .92rem;
    color: var(--teal);
    font-weight: 600;
    font-style: italic;
    border-top: 1px dashed var(--line);
    padding-top: 16px
}

.tq svg {
    flex: none;
    margin-top: 3px
}

@media(max-width:720px) {
    .theme-grid {
        grid-template-columns: 1fr
    }
}

/* COMMITTEE — large square photos + bios */
.committee {
    background: var(--paper)
}

.comm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 44px
}

.cm {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
    display: flex;
    flex-direction: column
}

.cm:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(14, 110, 107, .14)
}

.cm .ph {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center 20%;
    border-bottom: 3px solid var(--blue)
}

.cm .body {
    padding: 26px 26px 28px;
    display: flex;
    flex-direction: column;
    flex: 1
}

.cm h3 {
    font-size: 1.28rem;
    color: var(--ink);
    margin-bottom: 6px
}

.cm .role {
    font-size: 13.5px;
    color: var(--teal);
    font-weight: 700;
    line-height: 1.35
}

.cm .org {
    font-size: 13px;
    color: var(--grey);
    margin-top: 2px;
    margin-bottom: 14px
}

.cm .bio {
    font-size: 13.5px;
    color: #4a5a59;
    line-height: 1.6;
    flex: 1
}

.cm .conf {
    align-self: flex-start;
    margin-top: 16px;
    font-family: 'IBM Plex Mono';
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--green);
    border: 1px solid rgba(78, 168, 68, .4);
    background: rgba(78, 168, 68, .07);
    padding: 5px 11px;
    border-radius: 999px
}

.ss-strip {
    margin-top: 40px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px
}

.ss-l {
    display: flex;
    align-items: center;
    gap: 16px
}

.ss-tag {
    font-family: 'IBM Plex Mono';
    font-size: 10.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--blue);
    border: 1px solid rgba(0, 174, 239, .35);
    background: rgba(0, 174, 239, .06);
    padding: 6px 12px;
    border-radius: 999px;
    white-space: nowrap
}

.ss-t {
    font-family: 'Archivo';
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--ink)
}

.ss-t small {
    display: block;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 13px;
    color: #4a5a59;
    margin-top: 2px
}

.ss-soon {
    font-family: 'Archivo';
    font-weight: 700;
    color: var(--teal);
    display: inline-flex;
    align-items: center;
    gap: 9px
}

.ss-soon .g {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green)
}

@media(max-width:820px) {
    .comm-grid {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .cm .ph {
        height: 340px
    }
}

/* GALLERY CAROUSEL */
.gallery {
    background: var(--teal-ink);
    padding: 0
}

.gwrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 64px 28px
}

.gallery .slabel {
    color: var(--lime)
}

.gallery .slabel::before {
    color: var(--blue)
}

.gallery h2 {
    color: #fff;
    font-size: clamp(1.6rem, 3.4vw, 2.3rem)
}

.gallery .gintro {
    color: rgba(255, 255, 255, .65);
    max-width: 560px;
    margin-top: 14px
}

.car {
    position: relative;
    margin-top: 36px;
    border-radius: 20px;
    overflow: hidden;
    height: 480px;
    border: 1px solid rgba(255, 255, 255, .1)
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease
}

.slide.on {
    opacity: 1
}

.slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.slide .cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 52px 30px 18px;
    color: #fff;
    font-family: 'Archivo';
    font-weight: 700;
    font-size: 1.12rem;
    line-height: 1.2;
    background: linear-gradient(0deg, rgba(5, 43, 41, .92) 0%, rgba(5, 43, 41, .6) 45%, transparent)
}

.gdots {
    display: flex;
    gap: 9px;
    justify-content: center;
    margin-top: 22px
}

.gd {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .35);
    cursor: pointer;
    padding: 0;
    transition: all .25s
}

.gd.on {
    background: var(--lime);
    width: 26px;
    border-radius: 5px
}

@media(max-width:640px) {
    .car {
        height: 300px
    }
}

/* TESTIMONIALS */
.testi {
    background: var(--paper)
}

.testi .head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto
}

.tstage {
    position: relative;
    max-width: 820px;
    margin: 44px auto 0;
    min-height: 230px
}

.tq2 {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .6s ease;
    text-align: center;
    pointer-events: none
}

.tq2.on {
    opacity: 1;
    pointer-events: auto
}

.tq2 .mark {
    font-family: 'Archivo';
    font-size: 3rem;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 6px
}

.tq2 blockquote {
    font-family: 'Archivo';
    font-weight: 600;
    font-size: clamp(1.15rem, 2.4vw, 1.5rem);
    color: var(--ink);
    line-height: 1.35;
    max-width: 720px;
    margin: 0 auto 22px
}

.tq2 .who {
    font-weight: 700;
    color: var(--teal);
    font-family: 'Archivo'
}

.tq2 .who small {
    display: block;
    font-family: 'Inter';
    font-weight: 400;
    color: var(--grey);
    font-size: 13px;
    margin-top: 3px
}

.tdots {
    display: flex;
    gap: 9px;
    justify-content: center;
    margin-top: 12px
}

.td {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    background: #cdd9d9;
    cursor: pointer;
    padding: 0;
    transition: all .25s
}

.td.on {
    background: var(--teal);
    width: 26px;
    border-radius: 5px
}

.tsrc {
    text-align: center;
    font-family: 'IBM Plex Mono';
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--grey);
    margin-top: 28px
}

/* REGISTER */
.register {
    background: radial-gradient(120% 120% at 15% 0%, #0c5f5c 0%, var(--teal-deep) 55%, var(--teal-ink) 100%);
    color: #fff
}

.reg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start
}

.register .slabel {
    color: var(--lime)
}

.register .slabel::before {
    color: var(--blue)
}

.register h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3.8vw, 2.6rem)
}

.register .rlede {
    color: rgba(255, 255, 255, .78);
    margin-top: 18px;
    font-size: 1.05rem;
    max-width: 420px
}

.reg-persona {
    margin-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, .13);
    padding-top: 20px
}

.reg-persona .l {
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 12px
}

.reg-persona ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.reg-persona li {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .8);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    padding: 6px 13px
}

.reg-persona ul.sectors-chips {
    margin-bottom: 12px
}

.reg-persona ul.sectors-chips li {
    color: #04302e;
    background: var(--lime);
    border-color: var(--lime);
    font-weight: 700;
    font-family: 'Archivo'
}

.form {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
    padding: 30px
}

.register .fld label {
    color: rgba(255, 255, 255, .5)
}

.register .fld label .req {
    color: var(--lime)
}

.register .fld input,
.register .fld select {
    background-color: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .16);
    color: #fff
}

.register .fld input::placeholder {
    color: rgba(255, 255, 255, .3)
}

.register .fld input:focus,
.register .fld select:focus {
    border-color: var(--blue);
    background: rgba(255, 255, 255, .11)
}

.register .fld input.err,
.register .fld select.err {
    border-color: #ff9c9c;
    background: rgba(255, 120, 120, .1)
}

.register .fld select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12'%3E%3Cpath fill='%2300AEEF' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center
}

.register .fld select option {
    background: var(--teal-ink);
    color: #fff
}

.register .fsub {
    background: var(--lime);
    color: #0a3f1f
}

.register .fsub:hover {
    box-shadow: 0 12px 30px rgba(191, 215, 47, .3)
}

.register .policy {
    color: rgba(255, 255, 255, .6)
}

.register .policy a {
    color: var(--lime)
}

.fnote {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .4);
    text-align: center;
    margin-top: 12px
}

.register .fok h3 {
    color: var(--lime);
    font-size: 1.3rem;
    margin-bottom: 6px
}

.register .fok p {
    color: rgba(255, 255, 255, .72);
    font-size: 14px
}

@media(max-width:840px) {
    .reg-grid {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .f2 {
        grid-template-columns: 1fr
    }
}

/* SPONSORS */
.sponsors {
    background: #fff
}

.sponsors .lead {
    text-align: center;
    max-width: 640px;
    margin: 0 auto
}

.sp-tier {
    margin-top: 46px;
    text-align: center
}

.sp-lab {
    font-family: 'IBM Plex Mono';
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 20px
}

.sp-lab.plat {
    color: var(--teal)
}

.sp-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px
}

.sp-logo {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow .2s, transform .2s
}

.sp-logo:hover {
    box-shadow: 0 14px 34px rgba(14, 110, 107, .12);
    transform: translateY(-3px)
}

.sp-logo.big {
    height: 120px;
    padding: 26px 44px;
    flex: 0 1 300px
}

.sp-logo.big img {
    max-height: 60px;
    max-width: 210px;
    object-fit: contain
}

.sp-logo.sm {
    height: 88px;
    padding: 18px 30px;
    flex: 0 1 200px
}

.sp-supp {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px
}

.sp-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 22px 26px 18px;
    flex: 0 1 220px;
    text-align: center
}

.sp-card .lg {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px
}

.sp-card .lg img {
    max-height: 46px;
    max-width: 170px;
    object-fit: contain
}

.sp-card .lg .txt {
    font-family: 'Archivo';
    font-weight: 800;
    color: var(--ink);
    font-size: 1.05rem
}

.sp-card .cl {
    font-family: 'IBM Plex Mono';
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--blue)
}

/* SPONSOR RUNNING BANNER */
.spbanner {
    background: linear-gradient(120deg, var(--teal) 0%, var(--teal-deep) 100%);
    padding: 46px 0;
    color: #fff
}

.sb-lab {
    text-align: center;
    font-family: 'IBM Plex Mono';
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .62);
    margin-bottom: 26px
}

.sb-lab b {
    color: var(--lime)
}

.track.rev {
    animation: scroll-rev 42s linear infinite
}

@keyframes scroll-rev {
    from {
        transform: translateX(-50%)
    }

    to {
        transform: translateX(0)
    }
}

.sptile {
    flex: none;
    width: 214px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 11px
}

.sptile .box {
    height: 78px;
    width: 200px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px
}

.sptile .box img {
    max-height: 46px;
    max-width: 150px;
    object-fit: contain
}

.sptile .tier {
    font-family: 'IBM Plex Mono';
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6)
}

.sptile .tier.plat {
    color: var(--lime)
}

/* SPONSOR RUNNING BANNER END */
/* FOOTER */
footer {
    background: #040d0c;
    color: #fff;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, .08)
}

.fmark {
    display: inline-flex;
    margin-bottom: 24px
}

.fmark img {
    height: 46px
}

.fpartners {
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding: 28px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 14px 44px;
    align-items: center
}

.pblock .pl {
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 5px
}

.pblock .pn {
    font-family: 'Archivo';
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff
}

.fbottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .5)
}

.fbottom a {
    color: rgba(255, 255, 255, .6)
}

.fbottom a:hover {
    color: var(--blue)
}

@media(prefers-reduced-motion:reduce) {
    * {
        animation: none !important;
        transition: none !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}