:root {
    --slate: #3c4a52;
    --slate-deep: #2c363c;
    --slate-ink: #1b232a;
    --green: #3f9c5a;
    --green-deep: #2e7d46;
    --lime: #bcd430;
    --lime-deep: #a4bb20;
    --orange: #f28c1f;
    --magenta: #d51f6a;
    --grey: #7f8083;
    --paper: #f6f8f7;
    --mist: #eef3ef;
    --ink: #1d2529;
    --line: #e3eae6;
    --footer: #10161a;
    --brand-grad: linear-gradient(90deg, var(--magenta), var(--orange), var(--lime), var(--green));
    --sans: 'DM Sans', system-ui, sans-serif;
    --serif: 'Source Serif 4', Georgia, serif;
    --wrap: 1120px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--sans);
    color: var(--ink);
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased
}

.wrap {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 28px
}

.band {
    padding: 80px 0
}

a {
    color: inherit;
    text-decoration: none
}

img {
    max-width: 100%;
    display: block
}

.label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--green);
    font-family: var(--sans)
}

h1,
h2,
h3 {
    font-family: var(--sans);
    color: var(--slate);
    line-height: 1.08;
    letter-spacing: -.02em
}

.lede {
    font-size: 19px;
    color: #465058;
    max-width: 60ch
}

.serif-q {
    font-family: var(--serif);
    font-style: italic;
    color: var(--green-deep)
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5em;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 24px;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
    white-space: nowrap
}

.btn:hover {
    transform: translateY(-2px)
}

.btn-lime {
    background: var(--lime);
    color: var(--slate-ink);
    box-shadow: 0 8px 22px -10px var(--lime-deep)
}

.btn-lime:hover {
    background: var(--lime-deep) !important;
    color: inherit !important;
}

.btn-ghost {
    background: transparent;
    border-color: rgba(60, 74, 82, .28);
    color: var(--slate)
}

.btn-ghost:hover {
    border-color: var(--green);
    color: var(--green-deep)
}

.btn-ghost-dark {
    background: transparent;
    border-color: rgba(255, 255, 255, .3);
    color: #fff
}

.btn-ghost-dark:hover {
    border-color: var(--lime);
    color: var(--lime)!important;
}

/* ---------- Nav ---------- */
.nav {
    position: sticky;
    top: 0;
    z-index: 60;
    background: var(--slate-ink);
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.nav-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
}

.nav-logo img {
    height: 60px;
    width: auto
}

.nav-logo .wm {
    display: flex;
    flex-direction: column;
    line-height: 1.05
}

.nav-logo .wm b {
    font-weight: 800;
    font-size: 15px;
    color: #fff;
    letter-spacing: .01em
}

.nav-logo .wm span {
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--lime);
    font-weight: 700
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px
}

.nav-links a {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, .82);
    transition: color .15s
}

.nav-links a:hover {
    color: var(--lime) !important;
    text-decoration: none !important;
}

.nav-links .btn {
    padding: 9px 18px;
    font-size: 13.5px
}

/* ---------- Hero (dark, impactful) ---------- */
.hero {
    background: var(--slate-ink);
    position: relative;
    overflow: hidden;
    padding: 64px 0 86px
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(680px 380px at 88% -8%, rgba(63, 156, 90, .30), transparent 62%),
        radial-gradient(620px 420px at 4% 118%, rgba(213, 31, 106, .22), transparent 60%),
        radial-gradient(520px 320px at 60% 120%, rgba(242, 140, 31, .16), transparent 60%);
    pointer-events: none
}

.hero .wrap {
    position: relative
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 48px;
    align-items: center
}

.hero-lockup {
    width: min(430px, 84%);
    margin-bottom: 24px
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 20px
}

.hero-eyebrow::before {
    content: "";
    width: 28px;
    height: 3px;
    border-radius: 2px;
    background: var(--brand-grad)
}

.hero h1 {
    font-size: clamp(34px, 5vw, 60px) !important;
    font-weight: 700;
    line-height: 1.02 !important;
    letter-spacing: -.025em;
    color: #fff;
    margin-bottom: 22px;
    max-width: 15ch
}

.hero h1 em {
    font-style: normal;
    background: var(--brand-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent
}

.hero .lede {
    color: rgba(255, 255, 255, .78);
    font-size: 19px;
    margin-bottom: 28px;
    max-width: 54ch
}

.details {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px
}

.detail {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 13px;
    padding: 11px 15px
}

.detail b {
    display: block;
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--lime);
    font-weight: 700;
    margin-bottom: 3px
}

.detail span {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

/* Hero motif (variant-specific CSS injected below) */
.motif {
    position: relative;
    width: 100%;
    max-width: 460px;
    margin: 0 auto
}

.motif svg {
    width: 100%;
    height: auto;
    overflow: visible
}

@keyframes winpulse {

    0%,
    100% {
        opacity: .22
    }

    50% {
        opacity: 1
    }
}

@keyframes floaty {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-9px)
    }
}

@keyframes dash {
    to {
        stroke-dashoffset: -32
    }
}

@keyframes ring {
    0% {
        r: 6;
        opacity: .9
    }

    100% {
        r: 22;
        opacity: 0
    }
}

.link {
    stroke-dasharray: 3 6;
    animation: dash 3s linear infinite
}

.sys {
    transform-box: fill-box;
    transform-origin: center;
    animation: floaty 5s ease-in-out infinite
}

.sys.b {
    animation-delay: -1.6s
}

.sys.c {
    animation-delay: -3.1s
}

.win {
    animation: winpulse 3.4s ease-in-out infinite
}

.pulse-ring {
    animation: ring 2.6s ease-out infinite
}


/* ---------- Marquee ---------- */
.trust {
    background: #fff;
    padding: 40px 0;
    border-bottom: 1px solid var(--line)
}

.trust p {
    text-align: center;
    font-size: 12px!important;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--grey);
    font-weight: 700;
    margin-bottom: 22px
}

.marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent)
}

.track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: scroll 60s linear infinite
}

.marquee:hover .track {
    animation-play-state: paused
}

@keyframes scroll {
    to {
        transform: translateX(-50%)
    }
}

.tile {
    flex: 0 0 auto;
    height: 82px;
    min-width: 168px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0 24px
}

.tile img {
    height: 46px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    display: block
}

.tile.word {
    font-family: var(--sans);
    font-weight: 800;
    color: var(--slate);
    font-size: 17px;
    letter-spacing: .01em
}

.tile.word.paper {
    font-family: var(--serif);
    font-weight: 600;
    font-style: italic;
    font-size: 19px
}

/* ---------- Section head ---------- */
.head {
    max-width: 62ch;
    margin-bottom: 44px
}

.head h2 {
    font-size: clamp(26px, 3.4vw, 40px)!important;
    font-weight: 700;
    margin: 12px 0 14px
}

/* ---------- Committee (reveal) ---------- */
.committee {
    background: var(--paper)
}

.committee-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px
}

.cmember {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column
}

.cmember img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: top center
}

.cm-body {
    padding: 18px
}

.cmember h3 {
    font-size: 20px !important;
    font-weight: 700;
    color: var(--slate);
    margin-bottom: 4px;
}

.cmember .role {
    font-size: 12.5px !important;
    font-weight: 700;
    color: var(--green-deep);
    line-height: 1.3 !important;
}

.cmember .org {
    font-size: 12.5px !important;
    color: var(--grey);
    font-weight: 600 !important;
    margin-top: 2px;
    margin-bottom: 10px
}

.cmember .cbio {
    font-size: 13px !important;
    color: #525b62 !important;
    line-height: 1.55 !important;
}

/* Conference at a glance — stat banner */
.statbanner {
    background: var(--slate-ink);
    padding: 40px 0
}

.sb-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.sb {
    padding: 6px 46px;
    text-align: center
}

.sb+.sb {
    border-left: 1px solid rgba(255, 255, 255, .14)
}

.sb b {
    display: block;
    font-family: var(--sans);
    font-weight: 800;
    font-size: 44px;
    color: var(--lime);
    line-height: 1
}

.sb span {
    display: block;
    margin-top: 8px;
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
    font-weight: 700
}

.reveal-strip.light {
    margin-top: 30px;
    padding: 20px 24px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff
}

.reveal-strip.light .nr-label {
    color: var(--green-deep)
}

.reveal-strip.light .nr b {
    color: var(--slate)
}

.reveal-strip.light .nr-desc {
    color: #5a636a
}

/* Partner & supporter profiles */
.pprofiles {
    background: var(--paper)
}

.pp-grid {
    display: flex;
    flex-direction: column;
    gap: 18px
}

.pp-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 26px 30px;
    display: flex;
    gap: 30px;
    align-items: center;
    background: #fff
}

.pp-logo {
    flex: 0 0 200px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px
}

.pp-logo img {
    max-height: 64px;
    max-width: 160px;
    width: auto;
    object-fit: contain
}

.pp-text {
    flex: 1
}

.pp-tier {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 6px
}

.pp-card h3 {
    font-size: 20px!important;
    font-weight: 700;
    color: var(--slate);
    margin-bottom: 10px;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px
}

.pp-bio {
    font-size: 14.5px!important;
    color: #525b62;
    line-height: 1.6
}

.reveal-strip {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 34px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, .14)
}

.reveal-strip .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 5px rgba(188, 212, 48, .18);
    flex: 0 0 auto
}

.reveal-strip .nr {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.reveal-strip .nr-label {
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--lime);
    font-weight: 700
}

.reveal-strip .nr b {
    color: #fff;
    font-weight: 800;
    font-size: 17px
}

.reveal-strip .nr-desc {
    color: rgba(255, 255, 255, .7);
    font-size: 14.5px
}

.reveal-strip .soon {
    margin-left: auto;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 700
}

/* ---------- Community ---------- */
.community {
    background: #fff
}

.comm-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 52px;
    align-items: start
}

.comm-lead p {
    font-size: 18px;
    color: #465058;
    margin-bottom: 30px;
    max-width: 52ch
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 26px
}

.stat b {
    display: block;
    font-family: var(--sans);
    font-weight: 800;
    font-size: clamp(30px, 4vw, 42px);
    color: var(--green-deep);
    line-height: 1;
    letter-spacing: -.02em
}

.stat span {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #5a636a;
    font-weight: 600
}

.stat.lime b {
    color: var(--slate)
}

.stat.center {
    text-align: center
}

.pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px
}

.pill {
    font-size: 13px;
    font-weight: 700;
    color: var(--slate);
    background: var(--mist);
    border: 1px solid var(--line);
    padding: 7px 14px;
    border-radius: 999px
}

.mini {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
    padding-top: 22px;
    border-top: 1px solid var(--line)
}

.mini div b {
    font-family: var(--sans);
    font-weight: 800;
    font-size: 22px;
    color: var(--slate)
}

.mini div span {
    display: block;
    font-size: 12px;
    color: var(--grey);
    font-weight: 600;
    letter-spacing: .04em
}

.comm-events {
    margin-top: 54px;
    text-align: center
}

.ce-label {
    font-size: 12px!important;
    font-weight: 700!important;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 20px
}

.ce-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 16px
}

.ce-row .tile {
    min-width: 200px;
    height: 96px
}

.ce-row .tile img {
    max-width: 168px;
    max-height: 56px
}

/* form card */
.card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 30px
}

.card h3 {
    font-size: 22px!important;
    font-weight: 700;
    margin-bottom: 8px
}

.card>p {
    font-size: 14.5px;
    color: #5a636a;
    margin-bottom: 20px
}

.field {
    margin-bottom: 14px
}

.row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--slate);
    margin-bottom: 6px;
    letter-spacing: .02em
}

label .req {
    color: var(--magenta)
}

input,
select,
textarea {
    width: 100%;
    font-family: var(--sans);
    font-size: 15px;
    color: var(--ink);
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: 11px;
    padding: 12px 13px;
    transition: border-color .15s, box-shadow .15s
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(63, 156, 90, .15)
}

textarea {
    resize: vertical;
    min-height: 72px
}

.err {
    border-color: var(--magenta) !important
}

.errmsg {
    color: var(--magenta);
    font-size: 12px;
    font-weight: 600;
    margin-top: 4px;
    display: none
}

.err+.errmsg {
    display: block
}

.note {
    font-size: 12px!important;
    color: var(--grey);
    margin-top: 14px;
    line-height: 1.5!important;
}

.success {
    display: none;
    text-align: center;
    padding: 40px 20px
}

.success.on {
    display: block
}

.success .tick {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--lime);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px
}

.success h3 {
    margin-bottom: 8px
}

.success p {
    color: #5a636a;
    font-size: 15px;
    max-width: 40ch;
    margin: 0 auto
}

.form.hide {
    display: none
}

/* ---------- Countdown ---------- */
.countdown {
    background: var(--slate-ink);
    color: #fff;
    text-align: center;
    padding: 60px 0
}

.countdown .label {
    color: var(--lime)
}

.cd-grid {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 22px
}

.cd {
    min-width: 104px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    padding: 20px 10px
}

.cd b {
    display: block;
    font-family: var(--sans);
    font-weight: 800;
    font-size: 42px;
    line-height: 1;
    color: #fff
}

.cd span {
    display: block;
    margin-top: 8px;
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
    font-weight: 700
}

/* ---------- Sponsors banner ---------- */
.sponsors {
    background: var(--slate-deep);
    padding: 48px 0
}

.sponsors p {
    text-align: center;
    font-size: 12px!important;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    font-weight: 700!important;
    margin-bottom: 24px;
}

.track-rev {
    animation-direction: reverse;
    animation-duration: 42s
}

.stile {
    flex: 0 0 auto;
    height: 104px;
    min-width: 210px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fff;
    border-radius: 14px;
    padding: 0 28px
}

.stile img {
    height: 44px;
    max-height: 44px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block
}

.stile b {
    font-weight: 800;
    color: var(--slate);
    font-size: 17px
}

.stile .tier {
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--green-deep)
}

/* ---------- Themes ---------- */
.themes {
    background: var(--paper)
}

.tgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.tcard {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: transform .18s ease, box-shadow .2s ease
}

.tcard:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -26px rgba(28, 35, 42, .35)
}

.tcard .bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px
}

.tcard .num {
    font-family: var(--sans);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .14em;
    color: var(--grey)
}

.tcard h3 {
    font-size: 21px!important;
    font-weight: 700;
    margin: 8px 0 12px
}

.tcard p {
    font-size: 15px!important;
    color: #525b62
}

.tcard .q {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px dashed var(--line);
    font-size: 16px
}

.tcard.centre {
    border-color: rgba(63, 156, 90, .4);
    background: linear-gradient(180deg, #fff, rgba(63, 156, 90, .05))
}

.centre-badge {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--green-deep);
    background: rgba(63, 156, 90, .12);
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 8px
}

.hot {
    margin-top: 26px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 24px 28px
}

.hot .htag {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--orange);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px
}

.hot .htag::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--orange)
}

.hotlist {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.hotchip {
    font-size: 14px;
    font-weight: 600;
    color: var(--slate);
    border: 1px solid rgba(242, 140, 31, .4);
    background: rgba(242, 140, 31, .07);
    padding: 9px 15px;
    border-radius: 12px
}

/* ---------- Gallery ---------- */
.gallery {
    background: #fff
}

.carousel {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--slate-ink)
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .8s ease;
    display: flex;
    align-items: flex-end
}

.slide.on {
    opacity: 1
}

.slide .g-art {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.slide .cap {
    position: relative;
    padding: 26px 30px;
    color: #fff;
    font-weight: 700;
    font-size: 19px;
    background: linear-gradient(0deg, rgba(16, 22, 26, .72), transparent);
    width: 100%
}

.dots {
    display: flex;
    gap: 9px;
    justify-content: center;
    margin-top: 18px
}

.dots button {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    background: var(--line);
    cursor: pointer;
    padding: 0;
    transition: background .2s, width .2s
}

.dots button.on {
    background: var(--green);
    width: 26px;
    border-radius: 5px
}

.g-src {
    text-align: center;
    font-size: 13px!important;
    color: var(--grey);
    margin-top: 12px
}

/* ---------- Testimonials ---------- */
.testi {
    background: var(--mist)
}

.tquote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    min-height: 180px;
    position: relative
}

.tslide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .6s ease;
    pointer-events: none
}

.tslide.on {
    opacity: 1;
    pointer-events: auto;
    position: relative
}

.tslide q {
    font-family: var(--serif);
    font-size: clamp(20px, 2.6vw, 27px);
    color: var(--slate-deep);
    line-height: 1.4;
    quotes: none
}

.tslide .who {
    margin-top: 22px;
    font-weight: 800;
    color: var(--slate);
    font-size: 15px
}

.tslide .who span {
    display: block;
    font-weight: 500;
    color: var(--grey);
    font-size: 13.5px;
    margin-top: 2px
}

/* ---------- Register ---------- */
.register {
    background: #fff
}

.reg-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 52px;
    align-items: start
}

.chipset {
    margin-bottom: 22px
}

.chipset .label {
    margin-bottom: 12px;
    display: block
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 9px
}

.chip {
    font-size: 13px;
    font-weight: 700;
    color: var(--slate);
    background: var(--mist);
    border: 1px solid var(--line);
    padding: 8px 14px;
    border-radius: 999px
}

.chip.role {
    background: #fff;
    border-color: rgba(63, 156, 90, .35);
    color: var(--green-deep)
}

/* ---------- Footer ---------- */
.footer {
    background: var(--footer);
    color: rgba(255, 255, 255, .6);
    text-align: center;
    padding: 40px 0;
    font-size: 14px
}

.footer .flinks {
    margin-top: 12px
}

.footer .flinks a {
    color: rgba(255, 255, 255, .85);
    font-weight: 600;
    margin: 0 6px
}

.footer .flinks a:hover {
    color: var(--lime) !important;
    text-decoration: none !important;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.in {
    opacity: 1;
    transform: none
}

/* ---------- Responsive ---------- */
@media(max-width:960px) {
    .nav-links a:not(.btn) {
        display: none
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .motif {
        max-width: 300px;
        margin: 4px auto 0
    }

    .comm-grid,
    .reg-grid {
        grid-template-columns: 1fr;
        gap: 34px
    }

    .committee-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:720px) {
    .tgrid {
        grid-template-columns: 1fr
    }

    .row2 {
        grid-template-columns: 1fr
    }

    .band {
        padding: 60px 0
    }

    .details {
        gap: 22px
    }

    .stats {
        gap: 14px
    }

    .pp-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px
    }

    .pp-logo {
        flex: 0 0 auto;
        width: 100%
    }

    .sb {
        padding: 6px 30px
    }

    .sb b {
        font-size: 36px
    }
}

@media(max-width:560px) {
    .wrap {
        padding: 0 20px
    }

    .nav-logo .wm b {
        font-size: 13.5px
    }

    .cd {
        min-width: 82px
    }

    .cd b {
        font-size: 32px
    }

    .committee-grid {
        grid-template-columns: 1fr
    }

    .sb+.sb {
        border-left: none
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        animation: none !important;
        transition: none !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}

.keynote{
    background:var(--slate-ink);
    color:#fff;
    border-radius:18px;
    padding:28px 30px;
    margin-bottom:22px;
    position:relative;
    overflow:hidden;
}

.keynote::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    bottom:0;
    width:5px;
    background:var(--brand-grad);
}

.keynote .k-label{
    font-size:11px;
    font-weight:800;
    letter-spacing:.16em;
    text-transform:uppercase;
    color:var(--lime);
}

.keynote h3{
    color:#fff;
    font-size:clamp(18px,2.4vw,23px)!important;
    font-weight:700;
    margin:8px 0 10px;
    letter-spacing:-.01em;
}

.keynote p{
    color:rgba(255,255,255,.78);
    font-size:15px!important;
    max-width:90ch;
}

/* Custom CSS */
.nlinks .nbtn:hover {
    color: #fff !important;
}

.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(--lime);
}

.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(--lime);
}
.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(--lime);
    margin-top: 4px
}

#committee,
#partner,
#themes,
#testimonials,
#register {
  scroll-margin-top: 50px; 
}

@media screen and (max-width: 980px) {
    #testimonials button {
        width: 26px!important;
        border-radius: 5px!important;
    }

    #gdots button {
        padding: 0!important;
    }

    .hero {
        padding: 30px 0 10px 0;
    }

    .trust, .sponsors {
        padding: 30px 0 40px 0;
    }

    .band {
        padding: 25px 0 30px 0;
    }

    .countdown {
        padding: 30px 0;
    }

    .comm-grid, .reg-grid {
        gap: 10px;
    }

    .comm-events {
        margin-top: 30px;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .detail {
        width: 100%;
    }

    .stats {
        display: block;
        text-align-last: left;
    }

    .comm-lead p {
        margin-bottom: 20px;
    }

    .head {
        margin-bottom: 20px;
    }

    .statbanner {
        padding: 30px 0;
    }

    .ce-row .tile {
        min-width: 100%;
    }
}
