*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --ink: #111827;
    --paper: #f7f4ef;
    --white: #ffffff;
    --charcoal: #101417;
    --muted: #68707d;
    --line: rgba(17, 24, 39, 0.14);
    --green: #0d5c46;
    --green-dark: #073528;
    --lime: #b9ef43;
    --gold: #e6b450;
    --red: #e2473f;
    --blue: #246bfe;
    --shadow: 0 24px 80px rgba(17, 24, 39, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

.site-shell {
    width: 100%;
    overflow: hidden;
}

.nav {
    position: fixed;
    z-index: 50;
    top: 18px;
    left: 50%;
    width: min(1180px, calc(100% - 32px));
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 14px 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: var(--white);
    background: rgba(16, 20, 23, 0.66);
    backdrop-filter: blur(18px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    color: var(--green-dark);
    background: var(--lime);
    font-size: 0.88rem;
    font-weight: 950;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(10px, 2vw, 24px);
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.78);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 850;
    line-height: 1;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
    color: var(--green-dark);
    background: var(--lime);
    box-shadow: 0 18px 38px rgba(185, 239, 67, 0.28);
}

.btn-dark {
    color: var(--white);
    background: var(--charcoal);
}

.btn-ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    align-items: end;
    padding: 128px 0 0;
    color: var(--white);
    background:
        linear-gradient(110deg, rgba(7, 53, 40, 0.94), rgba(16, 20, 23, 0.82) 48%, rgba(226, 71, 63, 0.28)),
        radial-gradient(circle at 78% 20%, rgba(185, 239, 67, 0.42), transparent 28%),
        #0c1512;
}

#route-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.72;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 36%;
    background: linear-gradient(0deg, var(--paper), transparent);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
    padding-bottom: 54px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: var(--lime);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: currentColor;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
    gap: clamp(28px, 6vw, 84px);
    align-items: end;
}

.hero h1 {
    max-width: 920px;
    margin: 0;
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: clamp(3.1rem, 8.5vw, 8.6rem);
    line-height: 0.88;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-copy {
    max-width: 720px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1rem, 1.6vw, 1.28rem);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.event-pass {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    box-shadow: var(--shadow);
}

.event-pass-media {
    position: relative;
    min-height: 190px;
    background:
        linear-gradient(135deg, rgba(13, 92, 70, 0.35), rgba(36, 107, 254, 0.14)),
        url("data:image/svg+xml,%3Csvg width='900' height='520' viewBox='0 0 900 520' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='900' height='520' fill='%23111417'/%3E%3Cg fill='none' stroke='%23b9ef43' stroke-width='5' stroke-linecap='round' opacity='.75'%3E%3Cpath d='M73 360c105-119 219-151 341-96s235 31 340-72'/%3E%3Cpath d='M140 430c96-74 181-95 255-62s149 22 225-34 129-61 159-15' opacity='.36'/%3E%3C/g%3E%3Cg fill='%23e6b450'%3E%3Ccircle cx='153' cy='279' r='13'/%3E%3Ccircle cx='459' cy='283' r='10'/%3E%3Ccircle cx='743' cy='190' r='15'/%3E%3C/g%3E%3Cg fill='%23ffffff' opacity='.86'%3E%3Crect x='70' y='135' width='170' height='62' rx='9'/%3E%3Crect x='250' y='127' width='95' height='70' rx='9'/%3E%3Crect x='602' y='118' width='214' height='72' rx='10'/%3E%3C/g%3E%3Cg fill='%23111417'%3E%3Ccircle cx='121' cy='202' r='19'/%3E%3Ccircle cx='286' cy='202' r='19'/%3E%3Ccircle cx='655' cy='196' r='20'/%3E%3Ccircle cx='774' cy='196' r='20'/%3E%3C/g%3E%3C/svg%3E")
        center / cover;
}

.pass-label {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--green-dark);
    background: var(--lime);
    font-size: 0.76rem;
    font-weight: 950;
    text-transform: uppercase;
}

.pass-body {
    padding: 22px;
}

.pass-kicker {
    color: var(--red);
    font-weight: 900;
    text-transform: uppercase;
}

.pass-body h2 {
    margin: 8px 0 18px;
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.55rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.pass-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--muted);
}

.pass-list li {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 10px;
    align-items: start;
}

.section {
    position: relative;
    padding: clamp(76px, 9vw, 126px) 0;
}

.section.dark {
    color: var(--white);
    background: var(--charcoal);
}

.section.green {
    color: var(--white);
    background: var(--green-dark);
}

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

.section-head {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(260px, 0.48fr);
    gap: clamp(24px, 7vw, 86px);
    align-items: end;
    margin-bottom: clamp(34px, 6vw, 66px);
}

.section-title {
    margin: 0;
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: clamp(2.35rem, 6vw, 5.8rem);
    line-height: 0.92;
    letter-spacing: 0;
    text-transform: uppercase;
}

.section-copy {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.dark .section-copy,
.green .section-copy {
    color: rgba(255, 255, 255, 0.72);
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.stat {
    min-height: 178px;
    padding: 24px;
    border-right: 1px solid var(--line);
}

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

.stat strong {
    display: block;
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: clamp(2.4rem, 5vw, 5rem);
    line-height: 0.92;
}

.stat span {
    display: block;
    margin-top: 12px;
    color: var(--muted);
    font-weight: 760;
}

.opportunity-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(22px, 4vw, 54px);
    align-items: stretch;
}

.feature-panel {
    position: relative;
    overflow: hidden;
    min-height: 540px;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(16, 20, 23, 0.9), rgba(16, 20, 23, 0.66)),
        url("/assets/images/tash2.jpg")
        center / cover;
}

.feature-panel-content {
    position: absolute;
    inset: auto 24px 24px;
    color: var(--white);
}

.feature-panel-content h3 {
    margin: 0 0 10px;
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: clamp(2rem, 4vw, 4.8rem);
    line-height: 0.92;
    text-transform: uppercase;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.feature-card,
.speaker-card,
.detail-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.62);
}

.feature-card {
    min-height: 170px;
    padding: 22px;
}

.feature-card .icon,
.detail-card .icon {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 50%;
    color: var(--green-dark);
    background: var(--lime);
    font-weight: 950;
}

.feature-card h3,
.detail-card h3,
.speaker-card h3 {
    margin: 0 0 8px;
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 1.32rem;
    line-height: 1;
}

.feature-card p,
.detail-card p,
.speaker-card p {
    margin: 0;
    color: var(--muted);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.detail-card {
    padding: 24px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
}

.detail-card p {
    color: rgba(255, 255, 255, 0.68);
}

.detail-card h3 {
    color: var(--white);
}

.ticker {
    display: flex;
    width: max-content;
    animation: ticker 24s linear infinite;
}

.ticker-wrap {
    overflow: hidden;
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--green-dark);
    color: var(--lime);
}

.ticker span {
    padding-right: 32px;
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: clamp(2rem, 5vw, 4.4rem);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.speakers {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.speaker-card {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
    background: var(--charcoal);
}

.speaker-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 24%, rgba(185, 239, 67, 0.3), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.68)),
        var(--tone, #0d5c46);
}

.speaker-card::after {
    content: attr(data-initials);
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    width: 108px;
    height: 108px;
    place-items: center;
    border: 2px solid rgba(255, 255, 255, 0.32);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.86);
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 2.1rem;
    font-weight: 900;
}

.speaker-card h3,
.speaker-card p {
    position: relative;
    z-index: 1;
}

.speaker-card p {
    color: rgba(255, 255, 255, 0.72);
}

.schedule {
    display: grid;
    gap: 12px;
}

.schedule-row {
    display: grid;
    grid-template-columns: 160px 1fr 180px;
    gap: 22px;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.schedule-row:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.schedule-time {
    color: var(--lime);
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 1.45rem;
    font-weight: 900;
}

.schedule-title {
    margin: 0;
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    line-height: 1.1;
}

.schedule-track {
    justify-self: end;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.84rem;
    font-weight: 800;
}

.venue-grid {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(24px, 5vw, 70px);
    align-items: stretch;
    box-sizing: border-box;
}

.venue-grid > *,
.registration-grid > * {
    min-width: 0;
}

#venue {
    overflow-x: hidden;
}

#venue .wrap {
    width: 100%;
    max-width: 1180px;
    padding-right: 20px;
    padding-left: 20px;
}

#venue *,
#venue *::before,
#venue *::after {
    min-width: 0;
}

#venue .section-title,
#venue .venue-list,
#venue .map-panel {
    max-width: 100%;
}

#venue .section-title {
    width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.map-panel {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(13, 92, 70, 0.5), rgba(16, 20, 23, 0.5)),
        url("/assets/images/tash1.jpg")
        center / cover;
}

.map-card {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--white);
    background: rgba(16, 20, 23, 0.78);
    backdrop-filter: blur(16px);
}

.map-card h3 {
    margin: 0 0 8px;
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 2rem;
    line-height: 1;
}

.map-card p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.72);
}

.venue-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
}

.venue-list li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.58);
}

.venue-list span,
.map-card {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.registration-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
    gap: clamp(24px, 5vw, 70px);
    align-items: start;
}

.registration-aside {
    position: sticky;
    top: 110px;
}

.form-card {
    padding: clamp(20px, 4vw, 36px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 8px;
    font-weight: 800;
}

.alert.success {
    color: #063525;
    background: #dff9b7;
}

.alert.error {
    color: #67130e;
    background: #ffe0dd;
}

.form-section {
    min-width: 0;
    margin: 0 0 30px;
    padding: 0 0 28px;
    border: 0;
    border-bottom: 1px solid var(--line);
}

.form-section:last-of-type {
    border-bottom: 0;
}

.form-section legend {
    margin-bottom: 16px;
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
}

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

.field {
    display: grid;
    gap: 8px;
}

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

.field span,
.choice-label {
    color: #394150;
    font-size: 0.86rem;
    font-weight: 850;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(17, 24, 39, 0.18);
    border-radius: 8px;
    padding: 12px 13px;
    color: var(--ink);
    background: #fbfaf8;
}

.field textarea {
    min-height: 120px;
    resize: vertical;
}

.choice-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.choice {
    position: relative;
    display: flex;
    min-height: 48px;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid rgba(17, 24, 39, 0.16);
    border-radius: 8px;
    background: #fbfaf8;
    color: #2d3643;
    font-size: 0.9rem;
    font-weight: 760;
    overflow-wrap: anywhere;
}

.choice input {
    accent-color: var(--green);
}

.hidden-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.form-note {
    max-width: 360px;
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.footer {
    color: var(--white);
    background: var(--charcoal);
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: end;
    padding: 72px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer h2 {
    max-width: 860px;
    margin: 0;
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: clamp(2.5rem, 6vw, 6rem);
    line-height: 0.9;
    text-transform: uppercase;
}

.footer-bottom {
    display: grid;
    grid-template-columns:3fr 1fr 1fr;
    gap: 22px;
    padding: 32px 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom strong {
    display: block;
    margin-bottom: 8px;
    color: var(--white);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
}

@media (max-width: 980px) {
    .nav {
        align-items: center;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 76px;
        right: 16px;
        left: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        border-radius: 8px;
        background: rgba(16, 20, 23, 0.96);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 10px 0;
    }

    .nav-actions .btn {
        display: none;
    }

    .hero-grid,
    .section-head,
    .opportunity-grid,
    .venue-grid,
    .registration-grid,
    .footer-top {
        grid-template-columns: 1fr;
    }

    .stats,
    .details-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .speakers {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .registration-aside {
        position: static;
    }

    .choice-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .nav {
        top: 10px;
        width: calc(100% - 20px);
        padding-left: 12px;
    }

    .brand span:last-child {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: 110px;
    }

    .hero-inner {
        width: min(100% - 28px, 1180px);
        padding-bottom: 34px;
    }

    .hero h1 {
        font-size: clamp(3rem, 16vw, 4.6rem);
    }

    .event-pass-media,
    .feature-panel,
    .map-panel {
        min-height: 320px;
    }

    .map-panel {
        width: 100%;
        min-height: 280px;
    }

    .map-card {
        right: 14px;
        bottom: 14px;
        left: 14px;
        padding: 18px;
    }

    .venue-list li {
        width: 100%;
        grid-template-columns: 34px 1fr;
        gap: 12px;
        padding: 16px;
    }

    #venue .section-title {
        font-size: clamp(2rem, 11vw, 3rem);
        line-height: 0.98;
    }

    #venue .wrap {
        width: 100%;
        max-width: 100%;
        padding-right: 14px;
        padding-left: 14px;
    }

    .wrap {
        width: min(100% - 28px, 1180px);
    }

    .section {
        padding: 64px 0;
    }

    .stats,
    .feature-list,
    .details-grid,
    .speakers,
    .field-grid,
    .choice-grid,
    .footer-bottom {
        grid-template-columns: 1fr;
    }

    .stat {
        min-height: 138px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .stat:last-child {
        border-bottom: 0;
    }

    .schedule-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .schedule-track {
        justify-self: start;
    }

    .form-actions .btn {
        width: 100%;
    }
}

@media (max-width: 420px) {
    #venue .wrap {
        width: 100%;
        padding-right: 10px;
        padding-left: 10px;
    }

    #venue .section-title {
        font-size: clamp(1.8rem, 10vw, 2.35rem);
    }

    .form-card {
        padding: 18px 14px;
    }

    .choice {
        align-items: flex-start;
    }

    .venue-list li {
        grid-template-columns: 1fr;
    }

    .map-card .btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }

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