:root {
    --yellow: #ffd21f;
    --yellow-soft: #fff2a8;
    --black: #100f0c;
    --ink: #1d1a14;
    --white: #ffffff;
    --paper: #fffdf4;
    --green: #0e7c57;
    --red: #bd1f2d;
    --blue: #1d4e89;
    --line: rgba(16, 15, 12, 0.16);
    --muted: #635e50;
    --shadow: 0 18px 60px rgba(16, 15, 12, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: var(--scroll-progress, 0%);
    height: 4px;
    background: linear-gradient(90deg, var(--yellow), var(--green), var(--red));
    box-shadow: 0 0 22px rgba(255, 210, 31, 0.62);
    transform-origin: left center;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 72px;
    padding: 14px 32px;
    background: rgba(255, 253, 244, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
    transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
    background: rgba(255, 253, 244, 0.98);
    box-shadow: 0 10px 32px rgba(16, 15, 12, 0.1);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    padding: 7px;
    border-radius: 8px;
    background: var(--black);
    transition: transform 280ms ease, box-shadow 280ms ease;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand:hover .brand-mark,
.brand:focus-visible .brand-mark {
    box-shadow: 0 0 0 6px rgba(255, 210, 31, 0.22);
    transform: rotate(-6deg) scale(1.04);
}

.brand strong,
.brand small {
    display: block;
}

.brand small {
    color: var(--muted);
    font-size: 0.78rem;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    flex-wrap: wrap;
}

.main-nav a {
    padding: 10px 12px;
    border-radius: 8px;
    color: #2f2a20;
    font-size: 0.94rem;
    font-weight: 700;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    background: rgba(255, 210, 31, 0.3);
    outline: none;
    transform: translateY(-1px);
}

.main-nav a.is-active {
    background: var(--yellow);
    color: var(--black);
}

.main-nav .nav-cta {
    background: var(--black);
    color: var(--white);
}

.main-nav .nav-cta.is-active,
.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus-visible {
    background: var(--yellow);
    color: var(--black);
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--black);
    color: var(--yellow);
    cursor: pointer;
    transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 99px;
    background: var(--yellow);
    transition: transform 220ms ease, opacity 180ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
    box-shadow: 0 0 0 5px rgba(255, 210, 31, 0.18);
    outline: none;
    transform: translateY(-1px);
}

.site-header.menu-open .menu-toggle span:first-child {
    transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.menu-open .menu-toggle span:last-child {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    min-height: 82svh;
    display: flex;
    align-items: center;
    position: relative;
    background-image:
        linear-gradient(90deg, rgba(16, 15, 12, 0.94), rgba(16, 15, 12, 0.82) 38%, rgba(16, 15, 12, 0.24) 72%),
        var(--hero-image);
    background-size: cover;
    background-position: center;
    color: var(--white);
    isolation: isolate;
    overflow: hidden;
    animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-slider {
    background-image: none;
    animation: none;
}

.hero-slides,
.hero-slide,
.hero-slide::after {
    position: absolute;
    inset: 0;
}

.hero-slides {
    z-index: 0;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.045);
    transition: opacity 1200ms ease, transform 6800ms ease;
}

.hero-slide::after {
    content: "";
    background: linear-gradient(90deg, rgba(16, 15, 12, 0.94), rgba(16, 15, 12, 0.82) 38%, rgba(16, 15, 12, 0.24) 72%);
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

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

.eyebrow,
.section-kicker {
    margin: 0 0 12px;
    color: var(--green);
    font-size: 0.92rem;
    font-weight: 900;
}

.hero .eyebrow {
    display: inline-flex;
    padding: 8px 10px;
    border-radius: 8px;
    background: var(--yellow);
    color: var(--black);
    animation: heroRise 720ms ease both 120ms;
}

.hero h1 {
    max-width: 720px;
    margin: 0;
    color: var(--yellow);
    font-size: 5.2rem;
    line-height: 0.96;
    font-weight: 950;
    animation: heroRise 820ms ease both 240ms;
}

.hero-copy {
    max-width: 650px;
    margin: 24px 0 0;
    color: #fff8dc;
    font-size: 1.22rem;
    line-height: 1.6;
    animation: heroRise 820ms ease both 360ms;
}

.hero-actions,
.hero-flags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
    animation: heroRise 820ms ease both 480ms;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 18px;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 900;
    position: relative;
    overflow: hidden;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(16, 15, 12, 0.18);
}

.button::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.48), transparent);
    transform: translateX(-120%);
    transition: transform 600ms ease;
}

.button:hover::after,
.button:focus-visible::after {
    transform: translateX(120%);
}

.button-primary {
    background: var(--yellow);
    color: var(--black);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: #ffe66d;
    outline: none;
}

.button-secondary {
    border-color: rgba(255, 255, 255, 0.72);
    color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    outline: none;
}

.hero-flags span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    background: rgba(16, 15, 12, 0.5);
    color: #fff8dc;
    font-weight: 800;
    transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.hero-flags span:hover {
    background: rgba(255, 210, 31, 0.18);
    border-color: rgba(255, 210, 31, 0.78);
    transform: translateY(-2px);
}

.hero-slider-dots {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 22px;
    animation: heroRise 820ms ease both 560ms;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    cursor: pointer;
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, width 180ms ease;
}

.hero-slider-dot.is-active {
    width: 34px;
    background: var(--yellow);
    border-color: var(--yellow);
}

.hero-slider-dot:hover,
.hero-slider-dot:focus-visible {
    border-color: var(--yellow);
    outline: none;
    transform: translateY(-2px);
}

.ticker-band {
    overflow: hidden;
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--yellow);
}

.ticker-track {
    display: flex;
    width: max-content;
    gap: 36px;
    padding: 14px 0;
    animation: tickerSlide 28s linear infinite;
}

.ticker-track span {
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 950;
}

.ticker-track span::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 12px;
    border-radius: 50%;
    background: var(--green);
}

.page-hero {
    min-height: 62svh;
    display: flex;
    align-items: center;
    background-image:
        linear-gradient(90deg, rgba(16, 15, 12, 0.94), rgba(16, 15, 12, 0.78) 44%, rgba(16, 15, 12, 0.2)),
        var(--hero-image);
    background-size: cover;
    background-position: center;
    color: var(--white);
    overflow: hidden;
    animation: heroDrift 18s ease-in-out infinite alternate;
}

.page-hero-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 72px 0;
}

.page-hero .eyebrow {
    display: inline-flex;
    padding: 8px 10px;
    border-radius: 8px;
    background: var(--yellow);
    color: var(--black);
    animation: heroRise 720ms ease both 120ms;
}

.page-hero h1 {
    max-width: 850px;
    margin: 0;
    color: var(--yellow);
    font-size: 4.2rem;
    line-height: 1;
    font-weight: 950;
    animation: heroRise 820ms ease both 240ms;
}

.page-hero p:last-child {
    max-width: 700px;
    margin: 22px 0 0;
    color: #fff8dc;
    font-size: 1.16rem;
    line-height: 1.7;
    animation: heroRise 820ms ease both 360ms;
}

.intro-band {
    background: var(--yellow);
    color: var(--black);
    border-top: 6px solid var(--black);
    border-bottom: 1px solid var(--line);
}

.band-grid {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr);
    gap: 44px;
    padding: 48px 0;
}

.band-grid h2,
.section h2 {
    margin: 0;
    color: var(--black);
    font-size: 2.55rem;
    line-height: 1.08;
    font-weight: 950;
}

.band-grid p,
.section-heading p,
.launch-copy p,
.waitlist-copy p {
    margin: 0;
    color: #332e23;
    font-size: 1.06rem;
    line-height: 1.75;
}

.impact-strip {
    width: min(1180px, calc(100% - 40px));
    margin: 22px auto 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.impact-metric {
    min-height: 132px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 10px 32px rgba(16, 15, 12, 0.08);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.impact-metric:hover {
    border-color: rgba(14, 124, 87, 0.36);
    box-shadow: 0 18px 44px rgba(16, 15, 12, 0.13);
    transform: translateY(-4px);
}

.impact-metric strong,
.impact-metric span {
    display: block;
}

.impact-metric strong {
    color: var(--black);
    font-size: 2.65rem;
    line-height: 1;
    font-weight: 950;
}

.impact-metric strong::after {
    content: "+";
    color: var(--green);
    font-size: 1.6rem;
}

.impact-metric:first-child strong::after,
.impact-metric:nth-child(2) strong::after,
.impact-metric:nth-child(4) strong::after {
    content: "";
}

.impact-metric span {
    margin-top: 10px;
    color: var(--muted);
    font-weight: 850;
}

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

.section-heading {
    max-width: 820px;
    margin-bottom: 34px;
}

.section-heading.compact {
    max-width: 760px;
}

.section-heading h2 + p {
    margin-top: 16px;
}

.campaign-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(300px, 1.1fr);
    gap: 26px;
    align-items: stretch;
}

.story-panel {
    padding: 30px;
    border-radius: 8px;
    background: var(--black);
    color: var(--white);
    box-shadow: var(--shadow);
}

.story-panel p {
    margin: 18px 0 0;
    color: #fff7d4;
    line-height: 1.75;
}

.story-panel .quote {
    margin: 0;
    color: var(--yellow);
    font-size: 1.45rem;
    line-height: 1.45;
    font-weight: 900;
}

.pillar-grid,
.experience-grid,
.partner-grid,
.event-grid,
.awards-list {
    display: grid;
    gap: 16px;
}

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

.pillar-card,
.experience-grid article,
.partner-grid article,
.event-card,
.awards-list article {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.pillar-card:hover,
.experience-grid article:hover,
.partner-grid article:hover,
.event-card:hover,
.awards-list article:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 44px rgba(16, 15, 12, 0.12);
    border-color: rgba(255, 210, 31, 0.78);
}

.pillar-card {
    min-height: 250px;
    padding: 22px;
}

.pillar-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--black);
    font-weight: 950;
}

.pillar-card h3,
.experience-grid h3,
.partner-grid h3,
.event-card h3 {
    margin: 18px 0 8px;
    color: var(--black);
    font-size: 1.26rem;
    line-height: 1.2;
    font-weight: 950;
}

.pillar-card p,
.experience-grid p,
.partner-grid p,
.event-card p,
.awards-list p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.hashtag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.hashtag-row span {
    padding: 10px 12px;
    border-radius: 8px;
    background: #f6faf6;
    color: var(--green);
    border: 1px solid rgba(14, 124, 87, 0.24);
    font-weight: 900;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.hashtag-row span:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-2px);
}

.carousel-viewport {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 16px;
    transform: translate3d(0, 0, 0);
    transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 var(--slide-width, 100%);
}

.carousel-controls,
.carousel-header {
    display: flex;
    align-items: center;
}

.carousel-controls {
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
}

.carousel-header {
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.carousel-header p {
    margin: 0;
    color: var(--muted);
    font-weight: 950;
}

.compact-controls {
    margin-top: 0;
}

.carousel-button {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--black);
    color: var(--yellow);
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 950;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.carousel-button:hover,
.carousel-button:focus-visible {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
    outline: none;
    transform: translateY(-2px) scale(1.03);
}

.carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 50%;
    background: rgba(16, 15, 12, 0.28);
    cursor: pointer;
    padding: 0;
    transition: background 180ms ease, transform 180ms ease, width 180ms ease, border-radius 180ms ease;
}

.carousel-dot.is-active {
    width: 26px;
    border-radius: 99px;
    background: var(--green);
}

.campaign-slider {
    margin-top: 26px;
    padding: 20px;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 210, 31, 0.2), rgba(14, 124, 87, 0.08)),
        var(--white);
    border: 1px solid var(--line);
}

.campaign-slide {
    min-height: 210px;
    padding: 26px;
    border-radius: 8px;
    background: var(--black);
    color: var(--white);
}

.campaign-slide span {
    color: var(--yellow);
    font-weight: 950;
}

.campaign-slide h3 {
    margin: 12px 0 10px;
    color: var(--yellow);
    font-size: 1.55rem;
    line-height: 1.18;
}

.campaign-slide p {
    margin: 0;
    color: #fff8dc;
    line-height: 1.7;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 1.05fr);
    gap: 28px;
    align-items: stretch;
}

.about-copy,
.timeline-card,
.contact-panel,
.summit-grid article,
.value-grid article {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.about-copy,
.contact-panel {
    padding: 28px;
}

.about-copy:hover,
.timeline-card:hover,
.contact-panel:hover,
.summit-grid article:hover,
.value-grid article:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 44px rgba(16, 15, 12, 0.12);
    border-color: rgba(255, 210, 31, 0.78);
}

.about-copy h3 {
    margin: 0 0 12px;
    color: var(--black);
    font-size: 1.6rem;
    line-height: 1.18;
}

.about-copy p {
    margin: 0 0 16px;
    color: var(--muted);
    line-height: 1.72;
}

.about-copy p:last-child {
    margin-bottom: 0;
}

.value-grid,
.summit-grid {
    display: grid;
    gap: 16px;
}

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

.value-grid article,
.summit-grid article {
    padding: 22px;
}

.value-grid span {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--black);
    font-weight: 950;
}

.value-grid h3,
.summit-grid h3 {
    margin: 0 0 10px;
    color: var(--black);
    font-size: 1.25rem;
    line-height: 1.2;
}

.value-grid p,
.summit-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.page-cta {
    width: 100%;
    max-width: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 54px max(20px, calc((100% - 1180px) / 2));
    background: var(--black);
    color: var(--white);
}

.page-cta h2 {
    color: var(--yellow);
}

.page-cta .section-kicker {
    color: #8de3bd;
}

.launch-section {
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 1.05fr);
    gap: 38px;
    padding: 76px max(20px, calc((100% - 1180px) / 2));
    background:
        linear-gradient(135deg, rgba(255, 210, 31, 0.92), rgba(255, 210, 31, 0.74)),
        linear-gradient(90deg, var(--red), var(--green), var(--blue));
}

.launch-copy {
    align-self: center;
}

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

.launch-details div {
    min-height: 112px;
    padding: 18px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(16, 15, 12, 0.12);
}

.launch-details strong,
.launch-details span,
.launch-details a {
    display: block;
}

.launch-details strong {
    margin-bottom: 8px;
    color: var(--black);
}

.launch-details span,
.launch-details a {
    color: #3b3427;
    line-height: 1.55;
}

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

.experience-grid article,
.partner-grid article {
    padding: 22px;
}

.events-section {
    border-top: 1px solid var(--line);
}

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

.event-carousel {
    --slide-width: calc((100% - 32px) / 3);
}

.event-carousel .event-grid {
    display: flex;
    grid-template-columns: none;
}

.event-carousel .carousel-dots {
    margin-top: 18px;
}

.event-card {
    display: flex;
    flex-direction: column;
    min-height: 430px;
    padding: 22px;
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--yellow), var(--green), var(--red));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 260ms ease;
}

.event-card:hover::before {
    transform: scaleX(1);
}

.event-timeline {
    display: grid;
    gap: 18px;
    position: relative;
}

.event-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 156px;
    width: 3px;
    border-radius: 99px;
    background: linear-gradient(var(--yellow), var(--green), var(--red));
}

.timeline-item {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 26px;
    position: relative;
}

.timeline-date {
    min-height: 150px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--black);
    color: var(--white);
    z-index: 1;
}

.timeline-date strong,
.timeline-date small {
    display: block;
}

.timeline-date strong {
    margin-top: 10px;
    color: var(--yellow);
    font-size: 1.16rem;
    line-height: 1.25;
}

.timeline-date small {
    margin-top: 8px;
    color: #fff8dc;
    font-weight: 800;
}

.timeline-card {
    padding: 24px;
}

.timeline-card h2 {
    font-size: 1.65rem;
}

.timeline-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0;
}

.timeline-meta span {
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(255, 210, 31, 0.22);
    color: #352e1f;
    font-size: 0.9rem;
    font-weight: 850;
}

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

.event-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--green);
    font-size: 0.9rem;
    font-weight: 900;
}

.event-flag {
    font-size: 1.65rem;
}

.event-theme {
    color: var(--red);
    font-weight: 900;
}

.event-card dl {
    display: grid;
    gap: 10px;
    margin: 18px 0;
}

.event-card dt {
    color: var(--black);
    font-size: 0.78rem;
    font-weight: 950;
}

.event-card dd {
    margin: 0;
    color: #3b3427;
    line-height: 1.5;
}

.event-address {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    font-size: 0.95rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: auto;
    padding-top: 18px;
    color: var(--black);
    font-weight: 950;
    text-decoration: underline;
    text-decoration-color: var(--yellow);
    text-decoration-thickness: 4px;
    text-underline-offset: 4px;
}

.awards-section {
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: minmax(280px, 0.7fr) minmax(320px, 1.3fr);
    gap: 36px;
    padding: 76px max(20px, calc((100% - 1180px) / 2));
    background: var(--black);
    color: var(--white);
}

.awards-section h2 {
    color: var(--yellow);
}

.awards-section .section-kicker {
    color: #8de3bd;
}

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

.awards-list article {
    padding: 22px;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
}

.awards-list span {
    display: block;
    margin-bottom: 10px;
    color: var(--yellow);
    font-size: 1.1rem;
    font-weight: 950;
}

.awards-list p {
    color: #fff8dc;
}

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

.waitlist-section {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
    gap: 40px;
    align-items: start;
    border-top: 1px solid var(--line);
}

.contact-section {
    border-top: 1px solid var(--line);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
    gap: 40px;
    align-items: start;
}

.contact-panel h2 {
    margin-bottom: 18px;
}

.contact-methods {
    display: grid;
    gap: 12px;
}

.contact-methods a,
.contact-methods div {
    display: block;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fffef8;
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.contact-methods a:hover,
.contact-methods div:hover {
    background: rgba(255, 210, 31, 0.18);
    border-color: rgba(255, 210, 31, 0.78);
    transform: translateY(-2px);
}

.contact-methods strong,
.contact-methods span {
    display: block;
}

.contact-methods strong {
    margin-bottom: 6px;
    color: var(--black);
}

.contact-methods span {
    color: var(--muted);
    line-height: 1.55;
}

.contact-form {
    scroll-margin-top: 120px;
}

.waitlist-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 24px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.waitlist-form label,
.waitlist-form span,
.waitlist-form small {
    display: block;
}

.waitlist-form span {
    margin-bottom: 8px;
    color: var(--black);
    font-weight: 900;
}

.waitlist-form input,
.waitlist-form select,
.waitlist-form textarea {
    width: 100%;
    border: 1px solid rgba(16, 15, 12, 0.2);
    border-radius: 8px;
    background: #fffef8;
    color: var(--ink);
    padding: 12px 13px;
}

.waitlist-form input:focus,
.waitlist-form select:focus,
.waitlist-form textarea:focus {
    border-color: var(--green);
    outline: 3px solid rgba(14, 124, 87, 0.16);
}

.waitlist-form small {
    margin-top: 6px;
    color: var(--red);
    font-weight: 800;
}

.form-wide,
.form-status {
    grid-column: 1 / -1;
}

.form-status {
    padding: 14px;
    border-radius: 8px;
    background: rgba(14, 124, 87, 0.12);
    color: #064f36;
    font-weight: 900;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 32px;
    background: var(--black);
    color: var(--white);
}

.site-footer p,
.site-footer span {
    margin: 6px 0 0;
    color: #fff2a8;
}

.site-footer div:last-child {
    text-align: right;
}

.site-footer a {
    font-weight: 950;
}

.js .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 680ms ease, transform 680ms ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes heroRise {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

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

@keyframes heroDrift {
    from {
        background-position: center center;
    }

    to {
        background-position: 58% center;
    }
}

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

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

@media (max-width: 980px) {
    .site-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .main-nav {
        justify-content: flex-start;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .band-grid,
    .campaign-layout,
    .split-section,
    .launch-section,
    .awards-section,
    .contact-grid,
    .waitlist-section {
        grid-template-columns: 1fr;
    }

    .pillar-grid,
    .experience-grid,
    .event-grid,
    .partner-grid,
    .summit-grid,
    .value-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .event-carousel {
        --slide-width: calc((100% - 16px) / 2);
    }

    .page-hero h1 {
        font-size: 3.35rem;
    }
}

@media (max-width: 680px) {
    .site-header {
        position: static;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 10px;
        padding: 10px 14px;
    }

    .brand {
        min-width: 0;
        gap: 10px;
    }

    .main-nav {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        gap: 6px;
        padding-top: 8px;
    }

    .main-nav a {
        min-height: 42px;
        padding: 11px 12px;
        font-size: 0.92rem;
        text-align: left;
    }

    .main-nav .nav-cta {
        grid-column: auto;
        justify-content: center;
        text-align: center;
    }

    .js .menu-toggle {
        display: inline-flex;
        justify-self: end;
    }

    .js .main-nav {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        padding-top: 0;
        pointer-events: none;
        transition: max-height 260ms ease, opacity 200ms ease, padding 200ms ease;
    }

    .js .site-header.menu-open .main-nav {
        max-height: 360px;
        opacity: 1;
        padding-top: 8px;
        pointer-events: auto;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
        padding: 6px;
    }

    .brand strong {
        font-size: 1.05rem;
        line-height: 1.1;
    }

    .brand small {
        font-size: 0.76rem;
    }

    .hero {
        min-height: auto;
        background-image:
            linear-gradient(180deg, rgba(16, 15, 12, 0.96), rgba(16, 15, 12, 0.78), rgba(16, 15, 12, 0.38)),
            var(--hero-image);
        background-position: 64% center;
    }

    .hero-inner {
        width: min(100% - 36px, 1180px);
        padding: 44px 0 46px;
    }

    .hero .eyebrow {
        max-width: 100%;
        padding: 8px 11px;
        font-size: 0.82rem;
        line-height: 1.25;
        white-space: normal;
    }

    .hero-slider {
        background-image: none;
    }

    .hero-slide {
        background-position: 64% center;
    }

    .hero-slide::after {
        background: linear-gradient(180deg, rgba(16, 15, 12, 0.96), rgba(16, 15, 12, 0.78), rgba(16, 15, 12, 0.38));
    }

    .hero h1 {
        max-width: 360px;
        font-size: 2.55rem;
        line-height: 1.04;
    }

    .hero-copy {
        margin-top: 16px;
        font-size: 0.98rem;
        line-height: 1.58;
    }

    .button {
        width: 100%;
    }

    .hero-actions,
    .hero-flags {
        gap: 10px;
        margin-top: 20px;
    }

    .hero-actions .button {
        min-height: 54px;
    }

    .hero-flags span {
        flex: 1 1 calc(50% - 10px);
        justify-content: center;
        min-height: 42px;
        padding: 8px;
        font-size: 0.95rem;
    }

    .hero-slider-dots {
        justify-content: center;
        margin-top: 22px;
    }

    .section {
        width: min(100% - 28px, 1180px);
        padding: 56px 0;
    }

    .section-heading {
        margin-bottom: 24px;
    }

    .band-grid p,
    .section-heading p,
    .launch-copy p,
    .waitlist-copy p {
        font-size: 0.98rem;
        line-height: 1.62;
    }

    .band-grid,
    .launch-section,
    .awards-section {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .band-grid h2,
    .section h2 {
        font-size: 2rem;
    }

    .page-hero {
        min-height: auto;
        background-image:
            linear-gradient(180deg, rgba(16, 15, 12, 0.96), rgba(16, 15, 12, 0.78), rgba(16, 15, 12, 0.34)),
            var(--hero-image);
        background-position: 64% center;
    }

    .page-hero-inner {
        width: min(100% - 28px, 1180px);
        padding: 52px 0 56px;
    }

    .page-hero .eyebrow {
        max-width: 100%;
        padding: 8px 11px;
        font-size: 0.8rem;
        line-height: 1.25;
        white-space: normal;
    }

    .page-hero h1 {
        max-width: 360px;
        font-size: 2.32rem;
        line-height: 1.04;
    }

    .page-hero p:last-child {
        max-width: 360px;
        margin-top: 16px;
        font-size: 0.98rem;
        line-height: 1.58;
    }

    .pillar-grid,
    .experience-grid,
    .event-grid,
    .partner-grid,
    .awards-list,
    .launch-details,
    .summit-grid,
    .value-grid,
    .waitlist-form {
        grid-template-columns: 1fr;
    }

    .impact-strip {
        width: min(100% - 28px, 1180px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 14px;
    }

    .impact-metric {
        min-height: 116px;
        padding: 16px;
    }

    .impact-metric strong {
        font-size: 2.15rem;
    }

    .impact-metric strong::after {
        font-size: 1.15rem;
    }

    .impact-metric span {
        margin-top: 8px;
        font-size: 0.88rem;
        line-height: 1.3;
    }

    .split-section,
    .contact-grid,
    .waitlist-section {
        gap: 22px;
    }

    .story-panel,
    .about-copy,
    .contact-panel,
    .value-grid article,
    .summit-grid article,
    .waitlist-form {
        padding: 20px;
    }

    .story-panel .quote {
        font-size: 1.18rem;
        line-height: 1.45;
    }

    .about-copy h3 {
        font-size: 1.34rem;
    }

    .about-copy p,
    .story-panel p,
    .value-grid p,
    .summit-grid p {
        line-height: 1.6;
    }

    .value-grid span {
        width: 36px;
        height: 36px;
        margin-bottom: 14px;
    }

    .event-timeline {
        gap: 16px;
    }

    .event-timeline-section {
        padding-top: 32px;
    }

    .event-timeline-section .section-heading {
        margin-bottom: 20px;
    }

    .event-timeline::before {
        display: none;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 0;
        padding-left: 0;
    }

    .timeline-date {
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: center;
        column-gap: 10px;
        row-gap: 4px;
        min-height: 0;
        padding: 14px 16px;
        border-radius: 8px 8px 0 0;
    }

    .timeline-date strong {
        margin-top: 0;
        font-size: 1rem;
    }

    .timeline-date small {
        grid-column: 2;
        margin-top: 0;
        font-size: 0.78rem;
        line-height: 1.35;
    }

    .timeline-card {
        padding: 18px;
        border-top: 0;
        border-radius: 0 0 8px 8px;
    }

    .timeline-card h2 {
        font-size: 1.34rem;
        line-height: 1.16;
    }

    .event-theme {
        line-height: 1.45;
    }

    .timeline-meta {
        display: grid;
        grid-template-columns: 1fr;
        gap: 7px;
        margin: 14px 0;
    }

    .timeline-meta span {
        font-size: 0.84rem;
        line-height: 1.35;
    }

    .page-cta {
        align-items: flex-start;
        flex-direction: column;
        padding: 42px 14px;
    }

    .event-carousel,
    .campaign-slider {
        --slide-width: 100%;
    }

    .carousel-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .waitlist-form {
        gap: 14px;
        box-shadow: 0 12px 34px rgba(16, 15, 12, 0.12);
    }

    .waitlist-form input,
    .waitlist-form select,
    .waitlist-form textarea {
        min-height: 48px;
        padding: 11px 12px;
        font-size: 0.95rem;
    }

    .waitlist-form textarea {
        min-height: 128px;
    }

    .form-status {
        font-size: 0.92rem;
        line-height: 1.45;
    }

    .contact-methods a,
    .contact-methods div {
        padding: 14px;
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
        padding: 26px 20px;
    }

    .site-footer div:last-child {
        text-align: left;
    }

    .site-footer span {
        line-height: 1.6;
    }
}

@media (max-width: 430px) {
    .site-header {
        padding: 9px 12px;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
    }

    .brand strong {
        font-size: 1rem;
    }

    .brand small {
        font-size: 0.7rem;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
    }

    .section {
        width: min(100% - 24px, 1180px);
        padding: 46px 0;
    }

    .band-grid h2,
    .section h2 {
        font-size: 1.72rem;
        line-height: 1.13;
    }

    .page-hero-inner {
        width: min(100% - 24px, 1180px);
        padding: 44px 0 48px;
    }

    .page-hero h1 {
        font-size: 2.05rem;
    }

    .page-hero p:last-child {
        font-size: 0.94rem;
    }

    .event-timeline-section {
        padding-top: 28px;
    }

    .story-panel,
    .about-copy,
    .contact-panel,
    .timeline-card,
    .value-grid article,
    .summit-grid article,
    .waitlist-form {
        padding: 16px;
    }

    .timeline-date {
        padding: 13px 14px;
    }

    .event-flag {
        font-size: 1.35rem;
    }

    .timeline-card h2 {
        font-size: 1.22rem;
    }

    .timeline-meta span {
        font-size: 0.8rem;
    }

    .waitlist-form {
        gap: 12px;
    }

    .contact-methods span {
        font-size: 0.93rem;
    }
}

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

    .ticker-track {
        animation: none;
    }

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