:root {
    --black: #050505;
    --ink: #121212;
    --blue: #16a7df;
    --blue-dark: #078cc4;
    --ice: #e9f8ff;
    --paper: #f5f3ed;
    --white: #fff;
    --line: rgba(18, 18, 18, .16);
    --muted: #646464;
    --radius: 2px;
    --shadow: 0 28px 70px rgba(0, 0, 0, .18);
    --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

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

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
}

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

button,
input,
textarea,
select,
h1,
h2,
h3,
h4,
p,
a,
summary { font-family: var(--font-sans); }

a { color: inherit; }
img { display: block; max-width: 100%; }

.shell {
    width: min(1200px, calc(100% - 48px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    background: var(--white);
    color: var(--black);
    transform: translateY(-150%);
}

.skip-link:focus { transform: none; }

.site-header {
    position: sticky;
    z-index: 20;
    top: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    background: rgba(5, 5, 5, .94);
    color: var(--white);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand img {
    width: 138px;
    height: 48px;
    object-fit: contain;
    object-position: left center;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}

.desktop-nav a,
.footer-links a {
    position: relative;
    text-decoration: none;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .04em;
}

.desktop-nav a::after,
.footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 2px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.footer-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    text-decoration: none;
    text-transform: uppercase;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .09em;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible { outline: 3px solid #ffd400; outline-offset: 3px; }
.button-small { min-height: 42px; padding-inline: 18px; }
.button-light { background: var(--white); color: var(--black); }
.button-light:hover { background: var(--blue); color: var(--black); }
.button-primary { background: var(--blue); color: var(--black); }
.button-primary:hover { background: var(--white); }
.button-outline { border-color: var(--ink); color: var(--ink); }
.button-outline:hover { background: var(--ink); color: var(--white); }
.button-outline-light { border-color: rgba(255, 255, 255, .55); color: var(--white); }
.button-outline-light:hover { border-color: var(--white); background: var(--white); color: var(--black); }
.button-large { min-height: 62px; padding-inline: 28px; }

.hero {
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 144px 0 90px;
    background: var(--black);
    color: var(--white);
}

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

.orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.orb-one {
    width: 560px;
    height: 560px;
    right: -200px;
    top: 100px;
    border: 90px solid rgba(22, 167, 223, .17);
}
.orb-two {
    width: 250px;
    height: 250px;
    right: 30%;
    bottom: -170px;
    background: var(--blue);
    opacity: .18;
    filter: blur(70px);
}

.hero-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(310px, .65fr);
    gap: 92px;
    align-items: center;
}

.hero h1,
.section h2,
.closing-cta h2 {
    margin: 0;
    font-size: clamp(3.8rem, 7.8vw, 7.5rem);
    line-height: .86;
    letter-spacing: -.075em;
    text-transform: uppercase;
}

.hero h1 em,
.closing-cta h2 em {
    color: var(--blue);
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: 300;
    text-transform: uppercase;
}

.hero-lede {
    max-width: 620px;
    margin: 36px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 1.16rem;
    line-height: 1.65;
}

.hero-actions { display: flex; align-items: center; gap: 32px; margin-top: 40px; }
.text-link {
    text-decoration: none;
    padding-block: 8px;
    border-bottom: 1px solid currentColor;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.event-card {
    position: relative;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(9, 9, 9, .85);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.event-card::before {
    content: "";
    position: absolute;
    top: -8px;
    right: -8px;
    width: 64px;
    height: 64px;
    border-top: 2px solid var(--blue);
    border-right: 2px solid var(--blue);
}

.event-card-top {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, .7);
    text-transform: uppercase;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 5px rgba(22, 167, 223, .15); }
.event-card-mark { margin: 28px 0 20px; color: var(--blue); font-size: 6rem; font-weight: 900; line-height: .8; letter-spacing: -.08em; }
.event-card-mark span { margin-left: 5px; color: var(--white); font-size: .9rem; letter-spacing: .12em; }
.event-facts { margin: 0; border-top: 1px solid rgba(255, 255, 255, .2); }
.event-facts div { display: grid; grid-template-columns: 72px 1fr; gap: 14px; padding: 18px 0; border-bottom: 1px solid rgba(255, 255, 255, .13); }
.event-facts dt { color: rgba(255, 255, 255, .48); text-transform: uppercase; font-size: .62rem; font-weight: 800; letter-spacing: .12em; }
.event-facts dd { margin: 0; font-size: .86rem; font-weight: 700; line-height: 1.45; }
.event-facts dd span { color: rgba(255, 255, 255, .55); font-weight: 400; }
.event-card-note { margin: 18px 0 0; color: rgba(255, 255, 255, .48); font-size: .72rem; line-height: 1.5; }
.hero-index { position: absolute; right: 26px; bottom: 22px; color: rgba(255, 255, 255, .3); font: .62rem/1 monospace; letter-spacing: .1em; writing-mode: vertical-rl; }

.signal-strip { overflow: hidden; padding: 16px 0; background: var(--blue); color: var(--black); }
.signal-track { width: max-content; display: flex; align-items: center; gap: 28px; animation: ticker 30s linear infinite; }
.signal-track span { text-transform: uppercase; font-size: .74rem; font-weight: 900; letter-spacing: .14em; }
.signal-track i { width: 7px; height: 7px; background: var(--black); transform: rotate(45deg); }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding: 128px 0; }
.split-heading { display: block; }
.split-heading > div { max-width: 920px; }
.section h2 { font-size: clamp(2.9rem, 5.2vw, 5rem); }
.section h2 span { color: #9d9b94; }
.split-heading > div > p {
    max-width: 760px;
    margin: 42px 0 0;
    color: #484846;
    font-size: 1.12rem;
    line-height: 1.75;
}

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

.feature-card { min-height: 520px; display: flex; flex-direction: column; overflow: hidden; border-right: 1px solid var(--line); background: #efede6; }
.feature-card:last-child { border-right: 0; }
.feature-dark { background: var(--black); color: var(--white); }
.feature-blue { background: var(--blue); color: var(--black); }
.feature-photo { aspect-ratio: 4 / 3; margin: 0; overflow: hidden; background: var(--black); }
.feature-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2, .7, .2, 1); }
.feature-card:hover .feature-photo img { transform: scale(1.035); }
.feature-card-body { flex: 1; display: flex; flex-direction: column; padding: 24px 28px 30px; }
.feature-meta { display: flex; align-items: center; justify-content: space-between; }
.card-number { font: .72rem/1 monospace; opacity: .55; }
.feature-icon { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 1.15rem; }
.feature-card h3 { margin: 34px 0 12px; font-size: 1.7rem; letter-spacing: -.04em; }
.feature-card p { margin: 0; color: inherit; opacity: .68; line-height: 1.6; }

.photo-story { padding: 0 0 128px; background: var(--paper); }
.photo-story-grid { display: grid; grid-template-columns: 1.55fr .7fr; grid-template-rows: 330px 330px; gap: 18px; }
.photo-story figure { margin: 0; overflow: hidden; background: var(--black); }
.photo-story img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2, .7, .2, 1); }
.photo-story figure:hover img { transform: scale(1.025); }
.photo-primary { grid-row: 1 / 3; }
.photo-secondary { grid-column: 2; grid-row: 1; }
.photo-statement { grid-column: 2; grid-row: 2; display: flex; flex-direction: column; justify-content: space-between; padding: 34px; background: var(--blue); color: var(--black); }
.photo-statement strong { font-size: clamp(2.5rem, 4vw, 4.4rem); line-height: .82; letter-spacing: -.075em; text-transform: uppercase; }
.photo-statement span { max-width: 250px; font-size: .82rem; font-weight: 700; line-height: 1.5; }

.weekend { background: var(--white); }
.section-head { max-width: 880px; margin-bottom: 66px; }
.section-head > p:last-child { max-width: 520px; color: var(--muted); line-height: 1.6; }
.timeline { border-top: 1px solid var(--line); }
.day { position: relative; min-height: 200px; display: grid; grid-template-columns: .55fr 1.2fr 100px; align-items: center; gap: 44px; overflow: hidden; padding: 38px 20px; border-bottom: 1px solid var(--line); }
.day-label span { display: block; margin-bottom: 12px; color: var(--blue-dark); text-transform: uppercase; font-size: .64rem; font-weight: 800; letter-spacing: .16em; }
.day-label strong { font-size: 1.3rem; }
.day-copy h3 { margin: 0 0 12px; font-size: 1.65rem; letter-spacing: -.03em; }
.day-copy p { max-width: 660px; margin: 0; color: var(--muted); line-height: 1.65; }
.day-stamp { color: rgba(0, 0, 0, .045); font-size: 8rem; font-weight: 900; letter-spacing: -.1em; transition: color .25s ease; }
.day:hover .day-stamp { color: rgba(22, 167, 223, .22); }
.schedule-note { margin: 24px 0 0; color: var(--muted); font-size: .8rem; }

.who-section { background: var(--blue); color: var(--black); }
.who-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: end; }
.who-section h2 { font-size: clamp(2.5rem, 4.4vw, 4.4rem); }
.roles { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.roles span { padding: 12px 16px; border: 1px solid rgba(0, 0, 0, .55); border-radius: 100px; font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }

.community { background: var(--paper); }
.section-head-row { max-width: none; display: grid; grid-template-columns: 1.35fr .65fr; gap: 60px; align-items: end; }
.section-head-row > p { margin: 0; }
.lineup-callout { display: grid; grid-template-columns: 180px 1fr auto; gap: 44px; align-items: center; padding: 42px; border: 1px solid var(--line); background: var(--white); }
.lineup-type { width: 150px; height: 150px; display: grid; place-items: center; background: var(--black); color: var(--blue); font-size: 1.65rem; font-weight: 900; letter-spacing: .12em; }
.lineup-callout h3 { max-width: 620px; margin: 0; font-size: 1.7rem; line-height: 1.2; letter-spacing: -.03em; }
.lineup-callout > div p:last-child { margin: 12px 0 0; color: var(--muted); }
.people-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.person-card { padding: 18px; background: var(--white); }
.person-placeholder { aspect-ratio: 1; display: grid; place-items: center; background: var(--ink); color: var(--blue); font-size: 5rem; font-weight: 900; }
.person-card p { color: var(--blue-dark); text-transform: uppercase; font-size: .62rem; font-weight: 800; letter-spacing: .12em; }
.person-card h3 { margin: 0; font-size: 1.5rem; }

.team-section { background: var(--white); }
.team-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: end; margin-bottom: 64px; }
.team-heading h2 { font-size: clamp(3rem, 5.2vw, 5.2rem); }
.team-heading p { max-width: 500px; margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.7; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.team-card { border: 1px solid var(--line); background: var(--paper); }
.team-photo { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--black); }
.team-photo::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255, 255, 255, .12); pointer-events: none; }
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    filter: grayscale(100%);
    transition: filter .25s ease, transform .5s ease;
}
.team-card:hover .team-photo img { filter: grayscale(0%); transform: scale(1.025); }
.team-photo-placeholder { display: grid; place-items: center; background-image: linear-gradient(rgba(22, 167, 223, .16) 1px, transparent 1px), linear-gradient(90deg, rgba(22, 167, 223, .16) 1px, transparent 1px); background-size: 36px 36px; }
.team-photo-placeholder span { width: 96px; height: 96px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .25); border-radius: 50%; color: var(--blue); font-size: 2rem; font-weight: 900; }
.team-card-copy { padding: 22px; }
.team-card-copy p { margin: 0 0 8px; color: var(--blue-dark); text-transform: uppercase; font-size: .62rem; font-weight: 800; letter-spacing: .12em; }
.team-card-copy h3 { margin: 0; font-size: 1.25rem; letter-spacing: -.035em; }
.team-card-copy a { display: inline-block; margin-top: 16px; color: var(--ink); text-decoration: none; border-bottom: 1px solid currentColor; font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.team-card-placeholder .team-photo { display: grid; place-items: center; background-image: linear-gradient(rgba(22, 167, 223, .16) 1px, transparent 1px), linear-gradient(90deg, rgba(22, 167, 223, .16) 1px, transparent 1px); background-size: 36px 36px; }
.team-card-placeholder .team-photo span { width: 88px; height: 88px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .25); border-radius: 50%; color: rgba(255, 255, 255, .52); text-transform: uppercase; font-size: .59rem; font-weight: 800; letter-spacing: .1em; }

.ticket-section { background: var(--black); color: var(--white); }
.ticket-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 110px; align-items: start; }
.ticket-copy { position: sticky; top: 120px; }
.ticket-copy h2 { font-size: clamp(3.5rem, 6vw, 6.2rem); }
.ticket-copy > p:not(.privacy-note) { margin: 32px 0; color: rgba(255, 255, 255, .6); line-height: 1.65; }
.ticket-benefits { margin: 38px 0; padding: 0; list-style: none; border-top: 1px solid rgba(255, 255, 255, .16); }
.ticket-benefits li { padding: 16px 0; border-bottom: 1px solid rgba(255, 255, 255, .16); font-size: .84rem; font-weight: 700; }
.ticket-benefits span { display: inline-block; width: 42px; color: var(--blue); font: .68rem/1 monospace; }
.privacy-note { color: rgba(255, 255, 255, .38); font-size: .72rem; line-height: 1.5; }

.eventbrite-card { position: relative; overflow: hidden; padding: clamp(32px, 5vw, 64px); background: var(--white); color: var(--ink); box-shadow: var(--shadow); }
.eventbrite-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 7px; background: #f05537; }
.eventbrite-wordmark { margin-bottom: 56px; color: #f05537; font-size: 2rem; font-weight: 800; letter-spacing: -.06em; }
.ticket-status { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; color: #267b3d; text-transform: uppercase; font-size: .68rem; font-weight: 800; letter-spacing: .12em; }
.ticket-status span { width: 9px; height: 9px; border-radius: 50%; background: #38a758; box-shadow: 0 0 0 5px rgba(56, 167, 88, .13); }
.ticket-status-pending { color: #8a6322; }
.ticket-status-pending span { background: #d9992b; box-shadow: 0 0 0 5px rgba(217, 153, 43, .14); }
.eventbrite-card h3 { max-width: 600px; margin: 0; font-size: clamp(2.3rem, 4.6vw, 4.5rem); line-height: .95; letter-spacing: -.065em; }
.eventbrite-card > p { max-width: 560px; margin: 28px 0 36px; color: var(--muted); font-size: 1rem; line-height: 1.7; }
.button-submit { width: 100%; background: var(--blue); color: var(--black); border: 0; }
.button-submit:hover { background: var(--black); color: var(--white); }
.eventbrite-card > small { display: block; margin-top: 13px; color: #888; text-align: center; font-size: .67rem; }
.ticket-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line); }
.ticket-trust strong,
.ticket-trust span { display: block; }
.ticket-trust strong { margin-bottom: 6px; font-size: .78rem; }
.ticket-trust span { color: var(--muted); font-size: .7rem; line-height: 1.45; }
.faq-section a { color: #007caf; text-underline-offset: 2px; }

.partners-section { background: var(--white); }
.partners-heading { max-width: 780px; margin-bottom: 68px; }
.partners-section h2 { font-size: clamp(2.4rem, 4vw, 4rem); }
.partner-groups { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; }
.partner-group { padding: 34px; border: 1px solid var(--line); background: var(--paper); }
.partner-group h3 { margin: 0 0 28px; font-size: 1.55rem; letter-spacing: -.035em; }
.partner-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.partner-grid-global { grid-template-columns: repeat(2, 1fr); }
.partner-card { display: grid; min-height: 118px; place-items: center; overflow: hidden; padding: 22px; border: 1px solid var(--line); background: var(--white); color: var(--ink); text-align: center; text-decoration: none; font-weight: 800; }
.partner-card img { width: auto; max-width: 100%; max-height: 56px; object-fit: contain; }
.partner-grid-local .partner-card img { max-height: 76px; }
.partner-grid-local .partner-logo-startup-inglewood { transform: scale(2.15); }
a.partner-card { transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
a.partner-card:hover { border-color: var(--blue-dark); box-shadow: inset 0 0 0 1px var(--blue-dark); transform: translateY(-2px); }
.partner-library-link { display: inline-flex; gap: 8px; margin-top: 22px; color: var(--ink); text-decoration: none; border-bottom: 1px solid currentColor; font-size: .72rem; font-weight: 800; }
.partner-library-link:hover { color: var(--blue-dark); }
.sponsor-cta { display: flex; align-items: center; justify-content: space-between; gap: 40px; margin-top: 24px; padding: 36px; background: var(--black); color: var(--white); }
.sponsor-cta h3 { margin: 0; font-size: 1.55rem; letter-spacing: -.035em; }
.sponsor-cta p { max-width: 620px; margin: 10px 0 0; color: rgba(255, 255, 255, .58); line-height: 1.6; }
.sponsor-cta .button { flex: 0 0 auto; }
.sponsor-actions { display: flex; flex: 0 0 auto; flex-wrap: wrap; gap: 12px; }

.faq-section { background: var(--paper); }
.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 100px; }
.faq-heading { position: sticky; top: 120px; align-self: start; }
.faq-heading > p:last-child { margin-top: 28px; color: var(--muted); line-height: 1.6; }
.accordions { border-top: 1px solid var(--line); }
.accordions details { border-bottom: 1px solid var(--line); }
.accordions summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 28px 0; list-style: none; cursor: pointer; font-size: 1.05rem; font-weight: 800; }
.accordions summary::-webkit-details-marker { display: none; }
.accordions summary span { color: var(--blue-dark); font-size: 1.5rem; font-weight: 300; transition: transform .2s ease; }
.accordions details[open] summary span { transform: rotate(45deg); }
.accordions details > p,
.terms-copy { max-width: 700px; margin: -4px 0 28px; color: var(--muted); line-height: 1.7; }
.terms-copy p { margin: 0 0 18px; }

.closing-cta { position: relative; overflow: hidden; padding: 130px 0; background: var(--blue); text-align: center; }
.closing-cta::before { content: "INGLEWOOD"; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); color: rgba(0, 0, 0, .07); font-size: 18vw; font-weight: 900; letter-spacing: -.08em; white-space: nowrap; }
.closing-cta .shell { position: relative; }
.closing-cta p { margin: 0 0 22px; text-transform: uppercase; font-size: .72rem; font-weight: 800; letter-spacing: .16em; }
.closing-cta h2 { font-size: clamp(4.5rem, 9vw, 9rem); }
.closing-cta h2 em { color: var(--white); }
.closing-cta .button { margin-top: 42px; }

.site-footer { padding: 70px 0 28px; background: var(--black); color: var(--white); }
.footer-top { display: grid; grid-template-columns: 260px 1fr auto; gap: 60px; align-items: center; padding-bottom: 54px; }
.footer-brands { display: grid; grid-template-columns: 108px 1px 125px; gap: 13px; align-items: center; }
.footer-brands img { width: 100%; max-height: 58px; object-fit: contain; object-position: left center; }
.footer-brands span { width: 1px; height: 38px; background: rgba(255, 255, 255, .22); }
.footer-links { display: flex; gap: 30px; }
.techstars-link { color: var(--blue); text-decoration: none; font-size: .78rem; font-weight: 800; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .13); color: rgba(255, 255, 255, .42); font-size: .67rem; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 22px; }

.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; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
    .desktop-nav { display: none; }
    .hero { min-height: auto; }
    .hero-layout { grid-template-columns: 1fr; gap: 64px; }
    .event-card { max-width: 520px; }
    .split-heading,
    .ticket-layout,
    .faq-layout,
    .partner-groups { grid-template-columns: 1fr; }
    .ticket-copy,
    .faq-heading { position: static; }
    .experience-grid { grid-template-columns: 1fr; }
    .feature-card { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
    .feature-card:last-child { border-bottom: 0; }
    .photo-story-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 460px 300px; }
    .photo-primary { grid-column: 1 / 3; grid-row: 1; }
    .photo-secondary { grid-column: 1; grid-row: 2; }
    .photo-statement { grid-column: 2; grid-row: 2; }
    .who-layout { grid-template-columns: 1fr; gap: 40px; }
    .roles { justify-content: flex-start; }
    .section-head-row { grid-template-columns: 1fr; gap: 25px; }
    .lineup-callout { grid-template-columns: 150px 1fr; }
    .lineup-callout .button { grid-column: 2; justify-self: start; }
    .team-heading { grid-template-columns: 1fr; gap: 28px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .sponsor-cta { align-items: flex-start; flex-direction: column; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .techstars-link { grid-column: 2; }
}

@media (max-width: 680px) {
    .shell { width: min(100% - 30px, 1200px); }
    .header-inner { min-height: 70px; }
    .brand img { width: 116px; height: 40px; }
    .site-header .button { min-height: 38px; padding-inline: 13px; font-size: .62rem; }
    .site-header .button span { display: none; }
    .hero { padding: 124px 0 70px; }
    .hero h1 { font-size: clamp(3.4rem, 16vw, 5rem); }
    .hero-lede { font-size: 1rem; }
    .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
    .hero-actions .button { width: 100%; }
    .hero-actions .text-link { align-self: flex-start; }
    .event-card-mark { font-size: 5rem; }
    .hero-index { display: none; }
    .section { padding: 86px 0; }
    .split-heading { gap: 30px; }
    .section h2 { font-size: clamp(2.7rem, 13vw, 4rem); }
    .split-heading > div > p { margin-top: 26px; font-size: 1rem; }
    .experience-grid { margin-top: 50px; }
    .photo-story { padding-bottom: 86px; }
    .photo-story-grid { grid-template-columns: 1fr; grid-template-rows: 330px 230px 250px; gap: 12px; }
    .photo-primary { grid-column: 1; grid-row: 1; }
    .photo-secondary { grid-column: 1; grid-row: 2; }
    .photo-statement { grid-column: 1; grid-row: 3; padding: 28px; }
    .day { grid-template-columns: 1fr; gap: 22px; padding-inline: 0; }
    .day-stamp { position: absolute; right: 10px; top: 15px; font-size: 5rem; }
    .lineup-callout { grid-template-columns: 1fr; padding: 25px; }
    .lineup-type { width: 100%; height: 110px; }
    .lineup-callout .button { grid-column: 1; }
    .team-grid { grid-template-columns: 1fr; }
    .ticket-layout { gap: 48px; }
    .eventbrite-card { margin-inline: -15px; padding: 36px 22px; }
    .ticket-trust { grid-template-columns: 1fr; }
    .partner-grid { grid-template-columns: 1fr; }
    .sponsor-actions { width: 100%; flex-direction: column; }
    .sponsor-actions .button { width: 100%; }
    .faq-layout { gap: 45px; }
    .closing-cta { padding: 95px 0; }
    .closing-cta h2 { font-size: 20vw; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-links { flex-wrap: wrap; }
    .techstars-link { grid-column: 1; }
    .footer-bottom { flex-direction: column; }
}

.mentor-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-weight: 700;
    text-decoration: none;
}

.mentor-cta span {
    transition: transform .2s ease;
}

.mentor-cta:hover span {
    transform: translateX(4px);
}