:root {
    --ink: #152027;
    --ink-soft: #26343b;
    --muted: #657177;
    --paper: #f5f5fe;
    --paper-deep: #ebe4d8;
    --white: #ffffff;
    --red: #be2027;
    --red-bright: #ef3e47;
    --line: rgba(21,32,39,.14);
    --shadow: 0 24px 70px rgba(21,32,39,.1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "poppins", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.site-shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.skip-link {
    position: fixed;
    left: 20px;
    top: -80px;
    z-index: 1000;
    padding: 12px 18px;
    color: #fff;
    background: var(--red);
}

    .skip-link:focus {
        top: 20px;
    }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    padding: 25px 0;
    color: #fff;
    transition: .25s ease;
}

    .site-header.is-scrolled {
        padding: 14px 0;
        color: var(--ink);
        background: rgba(255, 255, 255, 0.85);
        box-shadow: 0 1px 0 var(--line);
        backdrop-filter: blur(18px);
    }

.header-inner {
    display: flex;
    align-items: center;
    gap: 38px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    flex: 0 0 auto;
}

.brand img {
    display: block;
    width: 126px;
    filter: brightness(0) invert(1);
    transition: filter .25s ease;
}

.is-scrolled .brand img {
    filter: none;
}

.brand-slogan {
    max-width: 190px;
    font-size: .76rem;
    font-weight: 600;
    line-height: 1.35;
}

.site-header nav {
    display: flex;
    gap: 27px;
    margin-left: auto;
    font-size: .84rem;
    font-weight: 600;
}

    .site-header nav a {
        opacity: .72;
    }

        .site-header nav a:hover, .site-header nav a:focus-visible {
            opacity: 1;
        }

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 43px;
    padding: 0 19px;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: .84rem;
    font-weight: 800;
}

    .header-cta:hover {
        color: #fff;
        border-color: var(--red);
        background: var(--red);
    }

.ticket-dropdown {
    position: relative;
    display: inline-block;
    color: var(--ink);
}

.ticket-dropdown > summary {
    list-style: none;
}

.ticket-dropdown > summary::-webkit-details-marker {
    display: none;
}

.ticket-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-height: 51px;
    padding: 0 22px;
    border: 1px solid currentColor;
    color: inherit;
    background: transparent;
    font-size: .84rem;
    font-weight: 800;
    cursor: pointer;
    transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.ticket-dropdown-trigger:hover {
    transform: translateY(-1px);
}

.ticket-dropdown-trigger:focus-visible, .ticket-menu-item:focus-visible {
    outline: 3px solid rgba(239,62,71,.34);
    outline-offset: 3px;
}

.ticket-chevron {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform .2s ease;
}

.ticket-dropdown[open] .ticket-chevron {
    transform: translateY(2px) rotate(225deg);
}

@keyframes ticket-menu-enter {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ticket-menu {
    position: absolute;
    z-index: 60;
    top: calc(100% + 10px);
    right: 0;
    width: min(350px, calc(100vw - 30px));
    padding: 10px;
    border: 1px solid rgba(190,32,39,.28);
    color: var(--ink);
    background: #fff;
    box-shadow: 0 24px 60px rgba(10,18,22,.2);
    animation: ticket-menu-enter .2s ease-out both;
}

.ticket-menu-item {
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    gap: 18px;
    align-items: center;
    min-height: 64px;
    padding: 13px 15px;
    border: 1px solid rgba(190,32,39,.24);
    color: var(--ink);
    font-size: .82rem;
    font-weight: 700;
    transition: color .2s ease, background .2s ease;
}

.ticket-menu-item + .ticket-menu-item {
    margin-top: 8px;
}

.ticket-menu-item:hover {
    color: #fff;
    background: var(--red);
}

.ticket-menu-item strong {
    color: var(--red);
    font-size: .92rem;
}

.ticket-menu-item:hover strong {
    color: #fff;
}

.ticket-dropdown--header {
    color: inherit;
}

.ticket-dropdown--header .ticket-dropdown-trigger {
    min-height: 43px;
    padding: 0 19px;
    border-radius: 999px;
}

.ticket-dropdown--header .ticket-dropdown-trigger:hover,
.ticket-dropdown--header[open] .ticket-dropdown-trigger {
    color: #fff;
    border-color: var(--red);
    background: var(--red);
}

.ticket-dropdown--hero {
    color: #fff;
}

.ticket-dropdown--hero .ticket-dropdown-trigger {
    min-height: 52px;
    border-color: rgba(255,255,255,.38);
    border-radius: 999px;
    font-size: .91rem;
}

.ticket-dropdown--hero .ticket-dropdown-trigger:hover,
.ticket-dropdown--hero[open] .ticket-dropdown-trigger {
    border-color: #fff;
    background: rgba(255,255,255,.1);
}

.ticket-dropdown--stop .ticket-dropdown-trigger,
.ticket-dropdown--modal .ticket-dropdown-trigger {
    min-width: 126px;
    color: #fff;
    border-color: var(--red);
    background: var(--red);
}

.ticket-dropdown--stop .ticket-dropdown-trigger:hover,
.ticket-dropdown--stop[open] .ticket-dropdown-trigger,
.ticket-dropdown--modal .ticket-dropdown-trigger:hover,
.ticket-dropdown--modal[open] .ticket-dropdown-trigger {
    border-color: #9f171e;
    background: #9f171e;
}

.ticket-dropdown--modal .ticket-menu {
    top: auto;
    bottom: calc(100% + 10px);
}
.hero {
    position: relative;
    min-height: 820px;
    overflow: hidden;
    display: grid;
    align-items: center;
    color: #fff;
    background: radial-gradient(circle at 78% 20%, rgba(190,32,39,.64), transparent 24%), radial-gradient(circle at 10% 92%, rgba(65,99,110,.4), transparent 28%), linear-gradient(125deg, #0e181d, #22343b 54%, #10191e);
}

    .hero::before {
        content: "";
        position: absolute;
        width: 760px;
        height: 760px;
        right: -130px;
        bottom: -470px;
        border: 1px solid rgba(255,255,255,.14);
        border-radius: 50%;
        box-shadow: 0 0 0 100px rgba(255,255,255,.025), 0 0 0 220px rgba(255,255,255,.018);
    }

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .12;
    background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 72%, transparent);
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 160px 0 116px;
}

.eyebrow {
    margin: 0 0 20px;
    color: var(--red);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .21em;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: #ff777d;
}

h1, h2, h3, h4 {
    font-family: "poppins", sans-serif;
}

h1 {
    max-width: 1000px;
    margin: 0;
    font-size: clamp(4.3rem, 8vw, 8.2rem);
    line-height: .9;
    letter-spacing: -.065em;
    text-transform: uppercase;
}

    h1 span {
        color: #ff4f58;
    }

.hero-copy {
    max-width: 650px;
    margin: 32px 0 0;
    color: rgba(255,255,255,.72);
    font-size: 1.14rem;
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 35px;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 0 23px;
    border-radius: 999px;
    font-size: .91rem;
    font-weight: 800;
    transition: .2s ease;
}

    .button:hover {
        transform: translateY(-2px);
    }

.button-primary {
    color: #fff;
    background: var(--red);
}

.button-secondary {
    border: 1px solid rgba(255,255,255,.38);
    color: #fff;
}

.hero-route {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 82px;
    color: rgba(255,255,255,.58);
    font-size: .69rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

    .hero-route i {
        flex: 1;
        min-width: 12px;
        height: 1px;
        background: rgba(255,255,255,.2);
    }

    .hero-route strong {
        color: #ff6970;
    }

.intro-section {
    padding: 126px 0 112px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 10vw;
    align-items: end;
}

    .intro-grid h2, .section-heading h2, .agenda-sticky h2, .interest-copy h2 {
        margin: 0;
        font-size: clamp(3.1rem, 5.7vw, 6.2rem);
        line-height: .96;
        letter-spacing: -.06em;
    }

        .intro-grid h2 em {
            color: var(--red);
            font-style: normal;
        }

.intro-copy .lead {
    margin: 0 0 24px;
    color: var(--ink);
    font-size: 1.22rem;
    line-height: 1.65;
}

.intro-copy p:not(.lead), .heading-row > p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.principles {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    margin-top: 92px;
    border-top: 1px solid var(--line);
}

.principle {
    padding: 31px 34px 0 0;
    border-right: 1px solid var(--line);
}

    .principle + .principle {
        padding-left: 34px;
    }

    .principle:last-child {
        border-right: 0;
    }

    .principle span, .benefit-card > span {
        color: var(--red);
        font-size: .72rem;
        font-weight: 800;
    }

    .principle h3 {
        margin: 34px 0 10px;
        font-size: 1.45rem;
    }

    .principle p {
        margin: 0;
        color: var(--muted);
        line-height: 1.65;
    }

.benefits-section {
    padding: 120px 0;
    color: #fff;
    background: var(--ink);
}

.section-heading {
    max-width: 900px;
}

.benefits-section .eyebrow {
    color: #ff6b72;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1px;
    margin-top: 70px;
    background: rgba(255,255,255,.14);
}

.benefit-card {
    min-height: 280px;
    padding: 36px;
    background: var(--ink);
    transition: background .25s ease;
}

    .benefit-card:hover {
        background: var(--ink-soft);
    }

    .benefit-card h3 {
        margin: 58px 0 12px;
        font-size: 1.65rem;
    }

    .benefit-card p {
        margin: 0;
        color: rgba(255,255,255,.58);
        line-height: 1.7;
    }

.roadshow-section, .sponsor-section {
    padding: 126px 0;
}

.heading-row {
    max-width: none;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 70px;
    align-items: end;
}

.stop-list {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
    margin-top: 72px;
}

.stop-card {
    overflow: visible;
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 1px 0 rgba(21,32,39,.08);
}

.stop-card:has(.ticket-dropdown[open]) {
    position: relative;
    z-index: 10;
}

.stop-image {
    min-height: 330px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
    background-image: linear-gradient(180deg, rgba(8,16,20,.15), rgba(8,16,20,.83)), var(--stop-image);
    background-size: cover;
    background-position: center;
}

.stop-number {
    align-self: flex-start;
    padding: 8px 11px;
    border: 1px solid rgba(255,255,255,.42);
    border-radius: 999px;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.stop-location h3 {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 4.1rem);
    line-height: .95;
    letter-spacing: -.055em;
}

.stop-location p {
    margin: 9px 0 0;
    color: rgba(255,255,255,.7);
}

.stop-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 31px 31px 34px;
}

    .stop-body time {
        color: var(--red);
        font-size: .76rem;
        font-weight: 800;
        letter-spacing: .11em;
        text-transform: uppercase;
    }

    .stop-body h4 {
        margin: 18px 0 13px;
        font-size: 1.5rem;
        line-height: 1.23;
    }

    .stop-body > p {
        min-height: 86px;
        margin: 0;
        color: var(--muted);
        line-height: 1.68;
    }

.stop-partners {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

    .stop-partners span {
        font-size: .67rem;
        font-weight: 800;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .stop-partners p {
        margin: 7px 0 0;
        color: var(--muted);
        font-size: .82rem;
        line-height: 1.55;
    }

.final-stop {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
}

    .final-stop .stop-image {
        min-height: 450px;
    }

    .final-stop .stop-body {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 55px;
    }

        .final-stop .stop-body > p {
            min-height: 0;
        }

.stop-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    margin-top: auto;
    padding-top: 26px;
}

.roadmap-button {
    min-height: 51px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    border: 1px solid var(--ink);
    color: var(--ink);
    background: transparent;
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.stop-join {
    min-width: 108px;
    min-height: 51px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    color: #fff;
    background: var(--red);
    font-size: .82rem;
    font-weight: 700;
    transition: background .2s ease, transform .2s ease;
}

    .stop-join:hover {
        background: #9f171e;
        transform: translateY(-1px);
    }

.roadmap-button:hover {
    color: #fff;
    background: var(--ink);
    transform: translateY(-1px);
}

.roadmap-button:focus-visible, .stop-join:focus-visible, .roadmap-close:focus-visible, .roadmap-dismiss:focus-visible {
    outline: 3px solid rgba(190,32,39,.28);
    outline-offset: 3px;
}

body:has(.roadmap-dialog[open]) {
    overflow: hidden;
}

.roadmap-dialog {
    width: min(700px, calc(100% - 30px));
    max-height: 90vh;
    margin: auto;
    padding: 0;
    overflow: visible;
    border: 0;
    color: var(--ink);
    background: transparent;
}

@keyframes roadmap-enter {
    from {
        opacity: 0;
        transform: translateY(-48px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes roadmap-exit {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-32px);
    }
}

@keyframes roadmap-backdrop-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes roadmap-backdrop-out {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.roadmap-dialog::backdrop {
    background: rgba(8,16,20,.76);
    backdrop-filter: blur(7px);
}

.roadmap-dialog[open]::backdrop {
    animation: roadmap-backdrop-in .28s ease-out both;
}

.roadmap-dialog.is-closing::backdrop {
    animation: roadmap-backdrop-out .2s ease-in both;
}

.roadmap-modal {
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    padding: 48px;
    background: #fff;
    box-shadow: 0 35px 100px rgba(0,0,0,.28);
}

.roadmap-dialog[open] .roadmap-modal {
    animation: roadmap-enter .34s cubic-bezier(.22,.8,.24,1) both;
}

.roadmap-dialog.is-closing .roadmap-modal {
    animation: roadmap-exit .2s ease-in both;
}

.roadmap-close {
    position: absolute;
    right: 20px;
    top: 18px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink);
    background: transparent;
    font-size: 1.55rem;
    line-height: 1;
    cursor: pointer;
    transition: color .2s ease, border-color .2s ease, background .2s ease;
}

    .roadmap-close:hover {
        color: #fff;
        border-color: #000;
        background: #000;
    }

.roadmap-modal .eyebrow {
    margin-right: 46px;
}

.roadmap-modal h2 {
    max-width: 560px;
    margin: 0;
    font-size: clamp(2.7rem, 7vw, 4.7rem);
    line-height: .96;
    letter-spacing: -.055em;
}

.roadmap-meta {
    display: grid;
    gap: 5px;
    margin: 18px 0 32px;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.5;
}

    .roadmap-meta strong {
        color: var(--red);
        font-size: .72rem;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

.roadmap-timeline {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

    .roadmap-timeline li {
        display: grid;
        grid-template-columns: 90px 1fr;
        gap: 22px;
        padding: 19px 0;
        border-bottom: 1px solid var(--line);
    }

    .roadmap-timeline time {
        color: var(--red);
        font-size: .75rem;
        font-weight: 700;
    }

    .roadmap-timeline p {
        margin: 0;
        font-weight: 600;
        line-height: 1.45;
    }

.roadmap-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 32px;
}

    .roadmap-actions .button {
        border-radius: 0;
    }

.roadmap-dismiss {
    min-height: 52px;
    padding: 0 22px;
    border: 1px solid var(--line);
    color: var(--ink);
    background: transparent;
    font-weight: 700;
    cursor: pointer;
    transition: color .2s ease, border-color .2s ease, background .2s ease;
}

    .roadmap-dismiss:hover {
        color: #fff;
        border-color: #000;
        background: #000;
    }

.interest-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 6vw;
    align-items: start;
}

.interest-copy {
    position: sticky;
    top: 130px;
}

    .interest-copy > p:not(.eyebrow) {
        color: var(--muted);
        line-height: 1.75;
    }







.tier-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 19px;
    margin-top: 70px;
}

.tier-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 35px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.48);
}

    .tier-card.featured {
        color: #fff;
        border-color: var(--ink);
        background: var(--ink);
        transform: translateY(-10px);
        box-shadow: var(--shadow);
    }

.tier-flag {
    position: absolute;
    right: 22px;
    top: 22px;
    padding: 6px 9px;
    border-radius: 999px;
    color: var(--ink);
    background: #ff777d;
    font-size: .61rem;
    font-weight: 800;
    text-transform: uppercase;
}

.tier-label {
    margin: 0 0 31px;
    color: var(--red);
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.featured .tier-label {
    color: #ff777d;
}

.tier-card h3 {
    margin: 0;
    font-size: 1.5rem;
}

.tier-card > strong {
    margin-top: 18px;
    font-size: 2.35rem;
}

.membership-note {
    min-height: 42px;
    margin-top: 9px;
    color: var(--muted);
    font-size: .78rem;
}

.featured .membership-note, .featured li {
    color: rgba(255,255,255,.62);
}

.tier-card ul {
    flex: 1;
    margin: 29px 0 34px;
    padding: 25px 0 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.tier-card li {
    position: relative;
    margin-bottom: 14px;
    padding-left: 19px;
    color: var(--muted);
    font-size: .86rem;
    line-height: 1.55;
}

    .tier-card li::before {
        content: "";
        position: absolute;
        left: 0;
        top: .57em;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--red);
    }

.tier-card > a {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    font-size: .82rem;
    font-weight: 800;
}

.no-payment-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 40px auto 0;
    color: var(--muted);
    font-size: .82rem;
    text-align: center;
}

    .no-payment-note span {
        display: grid;
        flex: 0 0 24px;
        height: 24px;
        place-items: center;
        border: 1px solid var(--line);
        border-radius: 50%;
        color: var(--red);
    }

.interest-section {
    padding: 126px 0;
    color: #fff;
    background: radial-gradient(circle at 14% 88%, rgba(190,32,39,.34), transparent 28%), var(--ink);
}

.interest-copy .eyebrow {
    color: #ff6f76;
}

.interest-copy > p:not(.eyebrow) {
    color: rgba(255,255,255,.62);
}

.contact-promise {
    display: grid;
    grid-template-columns: 35px 1fr;
    gap: 17px 18px;
    margin-top: 45px;
}

    .contact-promise > span {
        color: #ff6f76;
        font-size: .7rem;
        font-weight: 800;
    }

    .contact-promise p {
        margin: 0;
        color: rgba(255,255,255,.48);
        font-size: .84rem;
    }

    .contact-promise strong {
        display: block;
        margin-bottom: 3px;
        color: #fff;
    }

.form-card {
    padding: 44px;
    color: var(--ink);
    background: #fff;
    box-shadow: var(--shadow);
}

.interest-choice {
    margin: 0 0 34px;
    padding: 0;
    border: 0;
}

    .interest-choice legend {
        margin-bottom: 14px;
        font-size: .76rem;
        font-weight: 800;
        text-transform: uppercase;
    }

    .interest-choice label {
        position: relative;
        display: block;
        margin-bottom: 10px;
        cursor: pointer;
    }

    .interest-choice input {
        position: absolute;
        opacity: 0;
    }

    .interest-choice label > span {
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding: 17px 18px 17px 49px;
        border: 1px solid var(--line);
    }

        .interest-choice label > span::before {
            content: "";
            position: absolute;
            left: 18px;
            top: 50%;
            width: 16px;
            height: 16px;
            border: 1px solid #899298;
            border-radius: 50%;
            transform: translateY(-50%);
        }

    .interest-choice input:checked + span {
        border-color: var(--red);
        background: rgba(190,32,39,.045);
    }

        .interest-choice input:checked + span::before {
            border: 5px solid var(--red);
        }

    .interest-choice small {
        color: var(--muted);
    }

.field-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px 17px;
}

    .field-grid label {
        display: flex;
        flex-direction: column;
        gap: 9px;
    }

        .field-grid label > span {
            font-size: .72rem;
            font-weight: 800;
            text-transform: uppercase;
        }

    .field-grid input, .field-grid textarea {
        width: 100%;
        padding: 13px 0;
        border: 0;
        border-bottom: 1px solid var(--line);
        outline: 0;
        color: var(--ink);
        background: transparent;
    }

        .field-grid input:focus, .field-grid textarea:focus {
            border-color: var(--red);
        }

.full-field {
    grid-column: 1/-1;
}

.consent {
    display: flex;
    gap: 11px;
    margin: 27px 0;
    color: var(--muted);
    font-size: .78rem;
    line-height: 1.5;
}

    .consent input {
        width: 17px;
        height: 17px;
        accent-color: var(--red);
    }

.submit-button {
    width: 100%;
    min-height: 55px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 22px;
    border: 0;
    color: #fff;
    background: var(--red);
    font-weight: 800;
    cursor: pointer;
}

    .submit-button:disabled {
        opacity: .65;
    }

    .submit-button.is-loading span::after {
        content: "...";
    }

.form-message {
    display: none;
    margin-top: 15px;
    padding: 13px 15px;
    font-size: .84rem;
}

    .form-message.success {
        display: block;
        color: #166534;
        background: #dcfce7;
    }

    .form-message.error {
        display: block;
        color: #991b1b;
        background: #fee2e2;
    }

.field-error {
    color: var(--red);
    font-size: .75rem;
}

.site-footer {
    padding: 74px 0 30px;
    color: #fff;
    background: #0d1519;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

    .footer-main img {
        width: 135px;
        filter: brightness(0) invert(1);
    }

    .footer-main p {
        color: rgba(255,255,255,.48);
        font-size: .84rem;
    }

.footer-brand > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
}

.footer-brand > a:hover {
    color: #ff777d;
}

.footer-route {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 11px;
    color: rgba(255,255,255,.54);
    font-size: .74rem;
    font-weight: 700;
    text-transform: uppercase;
}

    .footer-route strong {
        color: #ff6970;
    }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 28px;
    color: rgba(255,255,255,.35);
    font-size: .72rem;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

    .reveal.is-visible {
        opacity: 1;
        transform: none;
    }

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

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .roadmap-dialog[open] .roadmap-modal, .roadmap-dialog[open]::backdrop {
        animation: none;
    }
}

@media (max-width: 980px) {
    .site-header nav {
        display: none;
    }

    .header-cta {
        margin-left: auto;
    }

    .intro-grid, .interest-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .interest-copy {
        position: static;
    }

    .heading-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tier-grid {
        grid-template-columns: 1fr;
    }

    .tier-card.featured {
        transform: none;
    }
}

@media (max-width: 720px) {
    .site-shell {
        width: min(100% - 28px, 1180px);
    }

    .site-header {
        padding: 17px 0;
    }

    .brand img {
        width: 109px;
    }

    .header-cta {
        min-height: 38px;
        padding: 0 14px;
    }

    .hero {
        min-height: 760px;
    }

    .hero-inner {
        padding-top: 130px;
    }

    h1 {
        font-size: clamp(3.45rem,18vw,5.3rem);
    }

    .hero-route {
        flex-wrap: wrap;
        margin-top: 56px;
        gap: 8px;
    }

        .hero-route i {
            flex: 0 0 18px;
        }

    .intro-section, .roadshow-section, .sponsor-section, .interest-section {
        padding: 88px 0;
    }

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

    .principle, .principle + .principle {
        padding: 26px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .benefits-section {
        padding: 88px 0;
    }

    .benefit-grid, .stop-list {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        min-height: 240px;
        padding: 28px;
    }

    .stop-image {
        min-height: 280px;
    }

    .stop-body > p {
        min-height: 0;
    }

    .final-stop {
        grid-column: auto;
        display: block;
    }

        .final-stop .stop-image {
            min-height: 300px;
        }

        .final-stop .stop-body {
            padding: 31px;
        }

    .roadmap-modal {
        padding: 38px 22px 26px;
    }

    .roadmap-close {
        right: 13px;
        top: 13px;
    }

    .roadmap-timeline li {
        grid-template-columns: 72px 1fr;
        gap: 14px;
    }

    .roadmap-actions {
        flex-direction: column-reverse;
    }

        .roadmap-actions .button, .roadmap-dismiss {
            width: 100%;
        }

    .form-card {
        padding: 28px 22px;
    }

    .field-grid {
        grid-template-columns: 1fr;
    }

    .full-field {
        grid-column: auto;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .ticket-menu {
        animation: none;
    }
}

@media (max-width: 980px) {
    .ticket-dropdown--header {
        margin-left: auto;
    }

    .brand-slogan {
        display: none;
    }
}

@media (max-width: 720px) {
    .ticket-dropdown--header .ticket-dropdown-trigger {
        min-height: 38px;
        max-width: 170px;
        padding: 0 14px;
        font-size: .72rem;
    }

    .ticket-dropdown--header .ticket-menu {
        position: fixed;
        top: 70px;
        right: 14px;
    }

    .stop-actions {
        grid-template-columns: 1fr;
    }

    .ticket-dropdown--stop,
    .ticket-dropdown--stop .ticket-dropdown-trigger,
    .roadmap-actions .ticket-dropdown,
    .roadmap-actions .ticket-dropdown-trigger {
        width: 100%;
    }

    .ticket-dropdown--stop .ticket-menu,
    .roadmap-actions .ticket-menu {
        right: 0;
        width: 100%;
    }
}
