@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,500;0,600;0,700;0,800;0,900;1,700&family=Cinzel:wght@700;800;900&family=Inter:wght@400;500;600;700&display=swap");

:root {
    --bg: #08050c;
    --bg-2: #0f0817;
    --panel: rgba(16, 12, 22, 0.84);
    --panel-solid: #121019;
    --line: rgba(188, 78, 255, 0.34);
    --line-soft: rgba(255, 255, 255, 0.09);
    --text: #f8f5fb;
    --muted: #aaa3b2;
    --purple: #a92dff;
    --purple-2: #6c1fc1;
    --lime: #a8f000;
    --orange: #ff7317;
    --gold: #ffc52b;
    --cyan: #55dcff;
    --danger: #ff5d79;
    --radius: 22px;
    --wrap: min(1460px, calc(100% - 48px));
    --display: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
    --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    background: var(--bg);
}
body {
    margin: 0;
    color: var(--text);
    background: var(--bg);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.55;
    overflow-x: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
button,
input,
select,
textarea {
    font: inherit;
}
button,
label {
    -webkit-tap-highlight-color: transparent;
}
img {
    max-width: 100%;
    display: block;
}
::selection {
    background: var(--purple);
    color: #fff;
}
.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    transform: translateY(-160%);
    z-index: 1000;
    background: #fff;
    color: #000;
    padding: 10px 14px;
    border-radius: 8px;
}
.skip-link:focus {
    transform: translateY(0);
}
.wrap {
    width: var(--wrap);
    margin-inline: auto;
}
.site-shell {
    min-height: 100vh;
    background: radial-gradient(circle at 50% 14%, rgba(134, 33, 209, 0.12), transparent 35%), var(--bg);
}
.hero {
    position: relative;
    min-height: 890px;
    padding: 180px 0 92px;
    isolation: isolate;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: image-set(url("../images/hero-sponsor-1920.webp") 1x, url("../images/hero-sponsor-4k.webp") 2x);
    background-position: center center;
    background-size: cover;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    background: linear-gradient(
            90deg,
            rgba(6, 3, 9, 0.98) 0%,
            rgba(6, 3, 9, 0.89) 33%,
            rgba(6, 3, 9, 0.34) 62%,
            rgba(6, 3, 9, 0.44) 100%
        ),
        linear-gradient(0deg, var(--bg) 0%, transparent 25%, rgba(8, 5, 12, 0.1) 70%, rgba(8, 5, 12, 0.78) 100%);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: radial-gradient(circle at 73% 45%, transparent 0 13%, rgba(169, 45, 255, 0.11) 30%, transparent 47%),
        radial-gradient(circle at 50% 100%, rgba(255, 115, 23, 0.18), transparent 28%);
    mix-blend-mode: screen;
}
.hero-grid {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.16;
    background-image: linear-gradient(rgba(168, 240, 0, 0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 240, 0, 0.14) 1px, transparent 1px);
    background-size: 84px 84px;
    mask-image: linear-gradient(to right, black, transparent 66%);
}
.hero-content {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 30px;
    align-items: center;
}
.hero-copy {
    max-width: 790px;
}
.eyebrow {
    margin: 0 0 15px;
    color: var(--lime);
    font-family: var(--display);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}
.hero h1,
.section-heading h2,
.custom-copy h2,
.checkout-heading h2,
.closing-inner h2 {
    margin: 0;
    font-family: var(--display);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 0.9;
    text-transform: uppercase;
}
.hero h1 {
    font-size: clamp(66px, 7vw, 116px);
    text-shadow: 0 8px 35px rgba(0, 0, 0, 0.62);
}
.hero h1 span {
    display: inline-block;
    color: transparent;
    background: linear-gradient(90deg, var(--orange), #ffc238 40%, var(--lime) 95%);
    -webkit-background-clip: text;
    background-clip: text;
}
.hero-lede {
    max-width: 720px;
    margin: 30px 0 0;
    color: #e7e0eb;
    font-size: clamp(18px, 1.5vw, 23px);
    line-height: 1.55;
}
.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 34px;
    flex-wrap: wrap;
}
.button-primary {
    color: #0b0a0c;
    background: linear-gradient(135deg, #c7ff37, #83c900);
    box-shadow: 0 14px 45px rgba(168, 240, 0, 0.18);
}
.button-ghost {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: rgba(8, 5, 12, 0.44);
    backdrop-filter: blur(12px);
}
.button-ghost:hover {
    border-color: var(--purple);
}
.hero-stats {
    margin: 46px 0 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(8, 5, 12, 0.36);
    backdrop-filter: blur(10px);
}
.hero-stats div {
    padding: 18px 18px 18px 0;
}
.hero-stats div + div {
    padding-left: 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-stats dt {
    font-family: var(--display);
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
    color: var(--lime);
}
.hero-stats dd {
    margin: 7px 0 0;
    color: #bcb5c2;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.hero-mark {
    position: relative;
    min-height: 570px;
    display: grid;
    place-items: center;
}
.hero-mark img {
    position: relative;
    width: min(590px, 94%);
    z-index: 2;
    filter: drop-shadow(0 35px 70px rgba(0, 0, 0, 0.62)) drop-shadow(0 0 32px rgba(169, 45, 255, 0.32));
    animation: floatLogo 6s ease-in-out infinite;
}
.logo-orbit {
    position: absolute;
    width: 92%;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(177, 75, 255, 0.32);
    box-shadow:
        inset 0 0 80px rgba(169, 45, 255, 0.14),
        0 0 90px rgba(169, 45, 255, 0.16);
}
.logo-orbit::before,
.logo-orbit::after {
    content: "";
    position: absolute;
    inset: 8%;
    border-radius: inherit;
    border: 1px dashed rgba(168, 240, 0, 0.22);
    animation: spin 22s linear infinite;
}
.logo-orbit::after {
    inset: 22%;
    animation-direction: reverse;
    animation-duration: 15s;
    border-color: rgba(255, 115, 23, 0.22);
}
.hero-ribbon {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 54px;
    display: flex;
    overflow: hidden;
    background: rgba(8, 5, 12, 0.88);
    border-block: 1px solid rgba(168, 240, 0, 0.24);
    color: #d8d1dd;
    font-family: var(--display);
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    white-space: nowrap;
}
.hero-ribbon div {
    min-width: max-content;
    display: flex;
    align-items: center;
    padding-right: 20px;
    animation: marquee 26s linear infinite;
}
.impact-strip {
    position: relative;
    background: #0c0811;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.impact-grid article {
    display: flex;
    gap: 18px;
    padding: 34px clamp(20px, 3vw, 46px);
}
.impact-grid article + article {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.impact-grid .index {
    color: var(--purple);
    font-family: var(--display);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.08em;
}
.impact-grid h2 {
    margin: 0 0 5px;
    font-family: var(--display);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.impact-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}
.section {
    position: relative;
    padding: 110px 0;
}
.section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 15% 10%, rgba(169, 45, 255, 0.08), transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(168, 240, 0, 0.04), transparent 28%);
}
.section-heading {
    position: relative;
    display: grid;
    grid-template-columns: 1fr minmax(280px, 520px);
    gap: 40px;
    align-items: end;
    margin-bottom: 45px;
}
.section-heading h2,
.custom-copy h2,
.checkout-heading h2 {
    font-size: clamp(46px, 5vw, 78px);
}
.section-heading > p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    border-left: 2px solid var(--purple);
    padding-left: 24px;
}
.tiers-section {
    background: linear-gradient(180deg, #09060d, #0d0713 50%, #09060d);
}
.tier-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}
.tier-card {
    --accent: var(--orange);
    position: relative;
    min-height: 535px;
    padding: 27px 25px 24px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid color-mix(in srgb, var(--accent), transparent 45%);
    border-radius: 14px;
    background: linear-gradient(180deg, color-mix(in srgb, var(--accent), transparent 88%), rgba(15, 12, 21, 0.96) 28%),
        #100d16;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.035),
        0 24px 70px rgba(0, 0, 0, 0.26);
    transition: 0.25s ease;
}
.tier-card:nth-child(2) {
    --accent: #f0f0f0;
}
.tier-card:nth-child(3) {
    --accent: var(--gold);
}
.tier-card:nth-child(4) {
    --accent: var(--cyan);
}
.tier-card:nth-child(5) {
    --accent: #c26cff;
}
.tier-card:hover {
    transform: translateY(-8px);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.07),
        0 35px 80px rgba(0, 0, 0, 0.4),
        0 0 35px color-mix(in srgb, var(--accent), transparent 82%);
}
.tier-card:has(input:checked) {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow:
        0 0 0 2px color-mix(in srgb, var(--accent), transparent 55%),
        0 35px 90px rgba(0, 0, 0, 0.45),
        0 0 45px color-mix(in srgb, var(--accent), transparent 74%);
}
.tier-card input,
.asset-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.tier-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    right: -70px;
    top: -80px;
    border-radius: 50%;
    background: var(--accent);
    filter: blur(70px);
    opacity: 0.2;
}
.tier-kicker {
    position: relative;
    font-family: var(--display);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #aaa2b0;
}
.tier-name {
    position: relative;
    margin-top: 20px;
    font-family: var(--display);
    font-size: clamp(28px, 2.5vw, 39px);
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--accent);
}
.tier-price {
    position: relative;
    margin-top: 12px;
    font-family: var(--display);
    font-size: 26px;
    font-weight: 900;
}
.tier-rule {
    width: 100%;
    height: 1px;
    margin: 25px 0 22px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0.6;
}
.tier-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 13px;
    color: #cec8d2;
    font-size: 13px;
}
.tier-card li {
    position: relative;
    padding-left: 20px;
}
.tier-card li::before {
    content: "◆";
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--accent);
    font-size: 8px;
}
.tier-select {
    margin-top: auto;
    min-height: 46px;
    border: 1px solid color-mix(in srgb, var(--accent), transparent 35%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    color: var(--accent);
    font-family: var(--display);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
}
.tier-select i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--accent);
    color: #09060d;
    font-style: normal;
    opacity: 0;
    transform: scale(0.7);
    transition: 0.2s ease;
}
.tier-card:has(input:checked) .tier-select i {
    opacity: 1;
    transform: scale(1);
}
.clear-selection-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 18px;
}
.text-button {
    border: 0;
    background: transparent;
    color: #918997;
    text-decoration: underline;
    text-underline-offset: 4px;
    cursor: pointer;
}
.text-button:hover {
    color: #fff;
}
.assets-section {
    overflow: hidden;
    background:
        linear-gradient(rgba(7, 4, 10, 0.88), rgba(7, 4, 10, 0.95)),
        url("../images/ambient-bg.webp") center/cover;
}
.assets-section::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.18;
    background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 42px 42px;
}
.asset-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.asset-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 385px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 14px;
    border: 1px solid rgba(187, 76, 255, 0.34);
    background: rgba(13, 9, 18, 0.96);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.32);
    transition: 0.25s ease;
}
.asset-card:hover {
    transform: translateY(-6px);
    border-color: rgba(168, 240, 0, 0.62);
}
.asset-card:has(input:checked) {
    transform: translateY(-6px);
    border-color: var(--lime);
    box-shadow:
        0 0 0 2px rgba(168, 240, 0, 0.2),
        0 30px 80px rgba(0, 0, 0, 0.46),
        0 0 38px rgba(168, 240, 0, 0.12);
}
.asset-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}
.asset-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.asset-card:hover .asset-image img {
    transform: scale(1.06);
}
.asset-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #0d0912 0%, transparent 60%);
}
.asset-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 21px 21px 18px;
}
.asset-meta {
    color: var(--purple);
    font-family: var(--display);
    font-weight: 900;
    font-size: 11px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}
.asset-title {
    margin-top: 8px;
    font-family: var(--display);
    font-size: 25px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}
.asset-price {
    margin-top: 9px;
    color: var(--lime);
    font-family: var(--display);
    font-size: 22px;
    font-weight: 900;
}
.asset-description {
    margin-top: 12px;
    color: #aaa2b0;
    font-size: 13px;
}
.asset-select {
    margin-top: auto;
    padding-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #d9d3dd;
    font-family: var(--display);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.asset-select i {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
    font-style: normal;
    transition: 0.2s ease;
}
.asset-card:has(input:checked) .asset-select i {
    transform: rotate(45deg);
    background: var(--lime);
    color: #09060d;
    border-color: var(--lime);
}
.custom-section {
    padding-block: 60px;
    background: #08050c;
}
.custom-panel {
    position: relative;
    min-height: 350px;
    display: grid;
    grid-template-columns: 0.72fr 1fr 0.8fr;
    gap: 42px;
    align-items: center;
    overflow: hidden;
    padding: 48px;
    border: 1px solid rgba(187, 76, 255, 0.42);
    border-radius: var(--radius);
    background: linear-gradient(115deg, rgba(169, 45, 255, 0.13), rgba(13, 9, 18, 0.94) 36%, rgba(168, 240, 0, 0.05));
}
.custom-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 5% 50%, rgba(169, 45, 255, 0.24), transparent 30%),
        radial-gradient(circle at 100% 50%, rgba(168, 240, 0, 0.1), transparent 25%);
}
.custom-panel > * {
    position: relative;
}
.custom-art {
    align-self: stretch;
    display: grid;
    align-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(48px, 5vw, 82px);
    line-height: 0.8;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.18);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}
.custom-art span:last-child {
    color: rgba(169, 45, 255, 0.22);
    -webkit-text-stroke: 0;
}
.custom-copy h2 {
    font-size: clamp(42px, 4vw, 70px);
}
.custom-copy p:last-child {
    color: var(--muted);
    max-width: 640px;
}
.custom-inputs {
    display: grid;
    gap: 18px;
}
.custom-inputs label,
.form-grid label {
    display: grid;
    gap: 8px;
    color: #cfc8d3;
    font-size: 13px;
    font-weight: 700;
}
.money-input {
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: stretch;
}
.money-input b {
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-right: 0;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px 0 0 8px;
    color: var(--lime);
}
.money-input input {
    border-radius: 0 8px 8px 0 !important;
}
input,
select,
textarea {
    width: 100%;
    color: #fff;
    background: rgba(5, 3, 8, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    min-height: 51px;
    padding: 12px 14px;
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}
textarea {
    resize: vertical;
}
input:focus,
select:focus,
textarea:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(169, 45, 255, 0.14);
}
input::placeholder,
textarea::placeholder {
    color: #6f6875;
}
.checkout-section {
    background: linear-gradient(180deg, #09060d, #110819 58%, #08050c);
}
.checkout-heading {
    margin-bottom: 38px;
}
.checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(370px, 0.7fr);
    gap: 24px;
    align-items: start;
}
.sponsor-details,
.order-panel {
    border-radius: var(--radius);
    background: rgba(15, 11, 20, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}
.sponsor-details {
    padding: clamp(25px, 4vw, 50px);
}
.form-section-title {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-bottom: 24px;
}
.form-section-title.second {
    margin-top: 44px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.form-section-title > span {
    flex: 0 0 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(168, 240, 0, 0.4);
    color: var(--lime);
    font-family: var(--display);
    font-weight: 900;
    border-radius: 50%;
}
.form-section-title h3 {
    margin: 0;
    font-family: var(--display);
    font-size: 25px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.form-section-title p {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 13px;
}
.form-grid {
    display: grid;
    gap: 18px;
}
.form-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.form-grid .full {
    grid-column: 1 / -1;
}
.order-panel {
    position: sticky;
    top: 118px;
    overflow: hidden;
    border-color: rgba(168, 240, 0, 0.26);
}
.order-top {
    padding: 30px 30px 24px;
    background: linear-gradient(135deg, rgba(169, 45, 255, 0.15), transparent);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.order-top h3 {
    margin: 0;
    font-family: var(--display);
    font-size: 36px;
    text-transform: uppercase;
}
.order-empty {
    min-height: 190px;
    padding: 28px;
    display: grid;
    place-items: center;
    text-align: center;
    color: #8f8796;
}
.order-empty span {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 30px;
    color: var(--purple);
}
.order-empty p {
    margin: -10px 0 0;
    max-width: 280px;
}
.order-items {
    display: grid;
    padding: 10px 30px 0;
}
.order-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.order-item strong {
    font-size: 14px;
}
.order-item span {
    color: #bbb3c1;
    font-size: 14px;
    white-space: nowrap;
}
.contact-interests {
    margin: 20px 30px 0;
    padding: 15px;
    border: 1px solid rgba(169, 45, 255, 0.32);
    background: rgba(169, 45, 255, 0.08);
    border-radius: 10px;
}
.contact-interests strong {
    color: #d6a3ff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
}
.contact-interests p {
    margin: 5px 0 0;
    color: #c2b9c8;
    font-size: 13px;
}
.order-total {
    margin: 18px 30px 0;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.order-total span {
    color: #a8a0ae;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.order-total strong {
    color: var(--lime);
    font-family: var(--display);
    font-size: 42px;
    line-height: 1;
}
.order-note {
    margin: 0 30px 20px;
    color: #8f8796;
    font-size: 12px;
}
.consent {
    margin: 0 30px 14px;
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    align-items: start;
    color: #c1bac6;
    font-size: 12px;
}
.consent input {
    min-height: 0;
    width: 18px;
    height: 18px;
    accent-color: var(--lime);
}
.consent a {
    color: var(--lime);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.checkout-button {
    width: calc(100% - 60px);
    min-height: 62px;
    margin: 10px 30px 0;
    border: 0;
    border-radius: 7px;
    background: linear-gradient(135deg, #c6ff32, #80c800);
    color: #0b0c08;
    font-family: var(--display);
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(168, 240, 0, 0.16);
}
.checkout-button small {
    display: block;
    font-family: var(--body);
    font-size: 9px;
    letter-spacing: 0.11em;
}
.checkout-button:disabled {
    cursor: not-allowed;
    filter: grayscale(1);
    opacity: 0.45;
    box-shadow: none;
}
.secure-row {
    margin: 20px 30px 0;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.secure-row span {
    padding: 7px 9px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: #aaa2b0;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}
.tax-note {
    margin: 18px 30px 30px;
    color: #706878;
    font-size: 10px;
    line-height: 1.5;
}
.closing-cta {
    position: relative;
    min-height: 460px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.closing-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6, 3, 9, 0.98), rgba(6, 3, 9, 0.64), rgba(6, 3, 9, 0.95)),
        url("../images/hero-sponsor-1920.webp") center 58% / cover;
    filter: saturate(0.85);
}
.closing-inner {
    position: relative;
    display: grid;
    grid-template-columns: 180px 1fr auto;
    gap: 36px;
    align-items: center;
}
.closing-inner img {
    width: 180px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}
.closing-inner h2 {
    font-size: clamp(42px, 5vw, 76px);
}
.closing-inner p:not(.eyebrow) {
    max-width: 760px;
    color: #c7bfcb;
}
.site-footer {
    padding: 72px 0 28px;
    background: #050307;
    border-top: 1px solid rgba(169, 45, 255, 0.24);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 0.7fr);
    gap: 50px;
}
.footer-brand img {
    width: 190px;
}
.footer-brand p {
    max-width: 380px;
    color: #8e8694;
}
.footer-grid h2 {
    margin: 0 0 18px;
    color: var(--lime);
    font-family: var(--display);
    font-size: 15px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}
.footer-grid a,
.footer-grid > div > p {
    display: block;
    margin: 0 0 10px;
    color: #a9a1af;
    font-size: 13px;
}
.footer-grid a:hover {
    color: #fff;
}
.footer-bottom {
    margin-top: 48px;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #706878;
    font-size: 11px;
}
.toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 100;
    max-width: 380px;
    padding: 14px 18px;
    border: 1px solid rgba(168, 240, 0, 0.45);
    border-radius: 10px;
    background: rgba(13, 10, 17, 0.96);
    color: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: 0.25s ease;
}
.toast.show {
    opacity: 1;
    transform: translateY(0);
}
.reveal {
    opacity: 1;
    transform: none;
}
.js .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}
.js .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 {
    transition-delay: 0.08s;
}
.delay-2 {
    transition-delay: 0.14s;
}
.delay-3 {
    transition-delay: 0.2s;
}
.delay-4 {
    transition-delay: 0.26s;
}
@keyframes marquee {
    to {
        transform: translateX(-100%);
    }
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
@keyframes floatLogo {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}
@media (max-width: 1240px) {
    .main-nav {
        gap: 18px;
    }
    .main-nav a {
        font-size: 12px;
    }
    .tier-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .tier-card {
        min-height: 500px;
    }
    .asset-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .custom-panel {
        grid-template-columns: 0.5fr 1fr 1fr;
    }
}
@media (max-width: 980px) {
    :root {
        --wrap: min(100% - 32px, 840px);
    }
    .topline-inner {
        justify-content: space-between;
    }
    .topline-inner span:nth-child(2) {
        display: none;
    }
    .site-header {
        top: 34px;
    }
    .nav-wrap {
        height: 78px;
    }
    .brand {
        width: 108px;
    }
    .brand img {
        width: 100px;
    }
    .nav-toggle {
        margin-left: auto;
        display: flex;
        width: 50px;
        height: 46px;
        padding: 10px;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.15);
        background: rgba(7, 4, 10, 0.8);
    }
    .nav-toggle span {
        width: 100%;
        height: 2px;
        background: #fff;
    }
    .nav-toggle b {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
    }
    .main-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 78px;
        display: none;
        padding: 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(7, 4, 10, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 12px;
    }
    .main-nav.open {
        display: flex;
    }
    .main-nav a {
        padding: 13px 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .main-nav a::after {
        display: none;
    }
    .nav-cta {
        display: none;
    }
    .hero {
        min-height: 920px;
        padding-top: 150px;
    }
    .hero-content {
        grid-template-columns: 1fr;
    }
    .hero-mark {
        position: absolute;
        inset: 135px -130px auto auto;
        width: 540px;
        min-height: 540px;
        opacity: 0.4;
        z-index: -1;
    }
    .hero-copy {
        max-width: 760px;
    }
    .hero-stats {
        max-width: 720px;
    }
    .impact-grid {
        grid-template-columns: 1fr;
    }
    .impact-grid article + article {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .section-heading {
        grid-template-columns: 1fr;
    }
    .section-heading > p {
        max-width: 680px;
    }
    .tier-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .asset-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .custom-panel {
        grid-template-columns: 1fr;
    }
    .custom-art {
        display: none;
    }
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    .order-panel {
        position: relative;
        top: auto;
    }
    .closing-inner {
        grid-template-columns: 130px 1fr;
    }
    .closing-inner .button {
        grid-column: 2;
        justify-self: start;
    }
    .footer-grid {
        grid-template-columns: 1.3fr repeat(2, 1fr);
    }
    .footer-grid > div:last-child {
        grid-column: 2 / -1;
    }
}
@media (max-width: 640px) {
    :root {
        --wrap: min(100% - 24px, 560px);
    }
    .topline {
        font-size: 10px;
    }
    .topline-inner span:first-child {
        white-space: nowrap;
    }
    .topline a {
        font-size: 0;
    }
    .topline a::after {
        content: "Presale ↗";
        font-size: 10px;
    }
    .hero {
        min-height: 860px;
        padding: 135px 0 80px;
        background-position: 63% center;
    }
    .hero h1 {
        font-size: clamp(52px, 17vw, 76px);
    }
    .hero-lede {
        font-size: 17px;
    }
    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-stats div:nth-child(3) {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }
    .hero-stats div:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }
    .hero-mark {
        width: 390px;
        right: -155px;
        top: 165px;
        opacity: 0.3;
    }
    .section {
        padding: 78px 0;
    }
    .section-heading h2,
    .custom-copy h2,
    .checkout-heading h2 {
        font-size: 44px;
    }
    .tier-grid,
    .asset-grid {
        grid-template-columns: 1fr;
    }
    .tier-card {
        min-height: 470px;
    }
    .asset-card {
        min-height: 370px;
    }
    .custom-panel {
        padding: 28px 22px;
    }
    .form-grid.two {
        grid-template-columns: 1fr;
    }
    .form-grid .full {
        grid-column: auto;
    }
    .sponsor-details {
        padding: 24px 18px;
    }
    .order-top,
    .order-items {
        padding-inline: 20px;
    }
    .order-total,
    .consent,
    .order-note,
    .tax-note {
        margin-inline: 20px;
    }
    .checkout-button {
        width: calc(100% - 40px);
        margin-inline: 20px;
    }
    .secure-row {
        margin-inline: 20px;
    }
    .contact-interests {
        margin-inline: 20px;
    }
    .closing-inner {
        grid-template-columns: 1fr;
        text-align: left;
        padding-block: 60px;
    }
    .closing-inner img {
        width: 130px;
    }
    .closing-inner .button {
        grid-column: auto;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 34px 24px;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
    .footer-grid > div:last-child {
        grid-column: 1 / -1;
    }
    .footer-bottom {
        flex-direction: column;
    }
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}
