:root {
    /* Palette Direction 2 */
    --color-background: #F6F4F1;
    --color-line: rgba(15, 47, 35, 0.18);
    --color-text: #0F2F23;
    --color-muted: #6F806F;
    --color-cream: #F6F4F1;
    --color-accent: #C26A53;

    --font-display: "Helvetica Neue", "Avenir Next", Arial, sans-serif;
    --font-copy: "Avenir Next", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
    --font-mono: "IBM Plex Mono", "SFMono-Regular", Menlo, monospace;

    --content-width: min(1240px, calc(100vw - 2rem));
    --header-height: 76px;

    /* Recolors white/black source icons to the brand colors below */
    --icon-filter-green: brightness(0) saturate(100%) invert(16%) sepia(16%) saturate(1549%) hue-rotate(106deg) brightness(91%) contrast(96%);
    --icon-filter-accent: brightness(0) saturate(100%) invert(49%) sepia(41%) saturate(693%) hue-rotate(324deg) brightness(95%) contrast(88%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--color-text);
    font-family: var(--font-display);

    background:
        radial-gradient(
            circle at top center,
            rgba(143, 168, 143, 0.16),
            transparent 30%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(194, 106, 83, 0.08),
            transparent 26%
        ),
        var(--color-background);
}

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

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

h1,
h2,
p {
    margin: 0;
}


/* -------------------------
   HEADER
------------------------- */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 1.5rem;

    width: 100%;
    min-height: var(--header-height);

    padding: 0.65rem 2rem;

    background: rgba(246, 244, 241, 0.78);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 0;
    border-radius: 0;
    box-shadow: none;
}


/* -------------------------
   LOGO
------------------------- */

.logo-link {
    display: inline-flex;
    align-items: center;

    width: 240px;
    height: 58px;

    overflow: hidden;
    flex-shrink: 0;
}

.site-logo {
    width: 225%;
    max-width: none;
    height: 200%;

    object-fit: contain;
    object-position: center;

    transform: translateX(-27.5%);

    filter: var(--icon-filter-green);
}


/* -------------------------
   NAVIGATION
------------------------- */

.site-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;

    gap: 0.7rem 1.1rem;

    padding: 0;
}

.nav-link,
.section-label,
.cta-link,
.contact-link,
.process-number {
    font-family: var(--font-mono);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-link {
    color: var(--color-muted);
    font-size: 0.78rem;
    transition: color 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active,
.nav-link.is-current {
    color: var(--color-accent);
}


/* -------------------------
   PAGE
------------------------- */

.page-sections {
    position: relative;
    z-index: 1;

    scroll-snap-type: y proximity;
}

.page-section {
    display: flex;
    align-items: center;

    min-height: 100svh;

    padding:
        calc(var(--header-height) + 2rem)
        0
        3rem;

    scroll-snap-align: start;
}

.section-inner {
    display: grid;

    grid-template-columns:
        minmax(180px, 220px)
        minmax(0, 1fr);

    gap: 2rem;
    align-items: start;

    width: var(--content-width);

    margin: 0 auto;
    padding: 2rem 0;

    border-top: 1px solid var(--color-line);
}


/* -------------------------
   HERO
------------------------- */

.hero-section {
    position: relative;
    width: 100%;
    min-height: 100svh;
    padding: 0;
    overflow: hidden;
}

.hero-section .section-inner {
    width: 100%;
    max-width: none;
    margin: 0;
    padding:
        calc(var(--header-height) + 2.5rem)
        0
        3rem;
    grid-template-columns: 1fr;
    align-items: end;
    position: relative;
    min-height: 100svh;
    border: 0;
}

.hero-inner {
    padding-top: 0;
}

.hero-brand {
    position: relative;
    z-index: 2;
    width: var(--content-width);
    margin: 0 auto;
    padding: 0 0 1rem;
    transform: translateY(-38px);
}

.hero-gallery {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    opacity: 1;
    pointer-events: none;
}

.hero-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.7) sepia(0.08);
}

.hero-gallery::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(246, 244, 241, 0.12),
            rgba(246, 244, 241, 0.48)
        );
}

.hero-orbit {
    position: absolute;
    right: max(1rem, calc((100vw - var(--content-width)) / 2));
    bottom: 2.5rem;
    z-index: 2;
    width: min(180px, 18vw);
    opacity: 0.7;
    filter: var(--icon-filter-green);
}

.section-heading,
.section-copy {
    display: grid;
    gap: 1rem;
}

.section-label {
    color: var(--color-accent);
    font-size: 1rem;
}

.hero-section .section-copy {
    max-width: 720px;
    gap: 1.4rem;
}

.hero-logo {
    width: 300%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 0 auto;
    transform: translateY(-170px);

    filter: var(--icon-filter-green);
}


/* -------------------------
   ABOUT
------------------------- */

#about .section-inner {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 3rem;
}

.about-content {
    display: grid;
    gap: 2.5rem;
}

#about .section-copy {
    max-width: 620px;
    margin-top: 0;
}

.about-visual {
    position: relative;
    margin: 0;
    align-self: stretch;
    min-height: 560px;
    overflow: hidden;
    border: 1px solid var(--color-line);
    background: rgba(207, 198, 182, 0.24);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    filter: saturate(0.72) sepia(0.08);
}

.about-target {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 80px;
    opacity: 0.9;

    filter: var(--icon-filter-accent);
}


/* -------------------------
   HOW IT WORKS
------------------------- */

#how-it-works .section-inner {
    grid-template-columns: 1fr;
}

#how-it-works .section-heading {
    margin-bottom: 2.5rem;
}

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

    gap: 2.5rem;
}

.process-step {
    display: flex;
    flex-direction: column;

    min-height: 320px;

    padding-top: 1rem;

    border-top: 1px solid var(--color-line);
}

.process-icon {
    width: 48px;
    margin-bottom: 1.1rem;

    filter: var(--icon-filter-accent);
}

.process-number {
    margin-bottom: 1.3rem;

    color: var(--color-accent);
    font-size: 0.76rem;
}

.process-step h2 {
    margin-bottom: 2rem;

    font-size: clamp(1.9rem, 2.8vw, 2.9rem);
}

.process-step .section-text {
    margin-top: auto;

    max-width: 18rem;
}


/* -------------------------
   TYPOGRAPHY
------------------------- */

h1,
h2,
.lineup-list p {
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 0.96;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(2.4rem, 4.5vw, 4.6rem);
}

h2 {
    font-size: clamp(2rem, 3.6vw, 3.8rem);
}

.section-lead {
    max-width: 36rem;

    font-family: var(--font-copy);
    font-weight: 400;
    letter-spacing: -0.03em;

    font-size: clamp(1.15rem, 2vw, 1.6rem);
    line-height: 1.42;
}

.section-text {
    max-width: 34rem;

    font-family: var(--font-copy);
    font-weight: 400;
    letter-spacing: -0.025em;

    color: var(--color-muted);

    font-size: 1.02rem;
    line-height: 1.68;
}


/* -------------------------
   LINKS
------------------------- */

.cta-link,
.contact-link {
    display: inline-flex;
    align-items: center;

    gap: 0.6rem;

    width: fit-content;

    margin-top: 0.3rem;

    font-size: 0.88rem;

    color: var(--color-accent);
}

.cta-link {
    transition:
        color 180ms ease,
        transform 180ms ease,
        text-shadow 180ms ease;
}

.cta-text {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
}

.cta-link:hover {
    transform: translateX(6px);
    text-shadow: 0 0 18px rgba(194, 106, 83, 0.16);
}

.cta-graphic {
    width: 26px;
    height: 26px;
    opacity: 0.9;

    filter: var(--icon-filter-accent);
}

.cta-link::after,
.contact-link::after {
    content: "\2192";
    font-size: 1rem;
}


/* -------------------------
   LINEUP / WE PLAY
------------------------- */

#we-play .section-inner {
    position: relative;
}
#we-play {
    scroll-margin-top: -150px;
}

.lineup-list {
    display: grid;
    gap: 0.70rem;
    position: relative;
    z-index: 2;
    margin-top: 5rem;
}

.lineup-list p {
    font-size: clamp(1.5rem, 2.6vw, 2.5rem);
    width: fit-content;
    transition:
        color 180ms ease,
        transform 180ms ease,
        text-shadow 180ms ease;
    cursor: default;
}

.lineup-list p:hover {
    color: var(--color-accent);
    transform: translateX(8px);
    text-shadow: 0 0 18px rgba(194, 106, 83, 0.12);
}

.lineup-preview-stage {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.lineup-launches-preview {
    position: absolute;
    top: 50%;
    right: 12%;
    width: min(340px, 27vw);
    aspect-ratio: 4 / 5;
    object-fit: cover;
    opacity: 0;
    transform: translateY(-50%) scale(0.96);
    border: 1px solid var(--color-line);
    box-shadow: 0 18px 34px -30px rgba(15, 47, 35, 0.16);
    transition:
        opacity 420ms ease,
        transform 420ms ease;
    filter: saturate(0.55) sepia(0.14) brightness(0.95) contrast(0.96);
}

.lineup-launches-preview.is-active {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.section-inner:has(.launches-item:hover) .lineup-graphic {
    opacity: 0;
    transform: scale(0.92);
}

.lineup-graphic {
    position: absolute;
    right: -20px;
    bottom: -300px;
    width: min(180px, 18vw);
    opacity: 0.55;

    filter: var(--icon-filter-green);

    transition:
        opacity 180ms ease,
        transform 180ms ease;
}


/* -------------------------
   CONTACT
------------------------- */

.contact-section .section-inner {
    background: transparent;
}

.contact-globe {
    width: min(170px, 18vw);
    margin-top: 2.2rem;
    opacity: 0.86;

    filter: var(--icon-filter-green);
}


/* -------------------------
   ABOUT PAGE
------------------------- */

.about-page .page-section {
    min-height: auto;
}

.about-page-hero {
    padding-bottom: 1.5rem;
}

.about-page-inner {
    grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
    gap: clamp(3rem, 7vw, 7rem);
    min-height: calc(100svh - var(--header-height) - 4rem);
}

.about-page-copy {
    display: grid;
    gap: 1.35rem;
    max-width: 38rem;
    padding-top: 0.4rem;
}

.about-page-copy .section-text {
    max-width: 34rem;
    color: rgba(15, 47, 35, 0.76);
    font-size: 1.02rem;
    line-height: 1.8;
}

.about-page-image-wrap {
    margin: 1rem 0 0;
    width: min(100%, 350px);
    overflow: hidden;
    border: 1px solid var(--color-line);
    background: rgba(207, 198, 182, 0.22);
}

.about-page-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    opacity: 0.92;
    filter: saturate(0.75) sepia(0.05);
}

.about-founders-section {
    padding-top: 1rem;
}

.about-founders-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(2.5rem, 5vw, 5.5rem);
    align-items: start;
}

.founder-entry {
    display: grid;
    justify-items: center;
    gap: 0.9rem;
}

.founder-pass-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 0;
    min-height: clamp(420px, 44vw, 620px);
}

.founder-pass {
    width: min(100%, 320px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 24px 40px rgba(15, 47, 35, 0.18));
    transition: transform 220ms ease;
}

.founder-entry:hover .founder-pass {
    transform: translateY(-6px);
}

.founder-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    margin-top: -10rem;
}

.founder-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    color: rgba(15, 47, 35, 0.72);
    transition:
        color 180ms ease,
        transform 180ms ease;
}

.founder-link:hover,
.founder-link:focus-visible {
    color: var(--color-accent);
    transform: translateY(-2px);
}

.founder-link svg {
    width: 100%;
    height: 100%;
}

.founder-link rect,
.founder-link circle,
.founder-link path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.founder-link .founder-link-dot {
    fill: currentColor;
    stroke: none;
}


/* -------------------------
   FOOTER
------------------------- */

.site-footer {
    margin-top: 0;
    padding: 5rem 0 2rem;
    color: var(--color-cream);

    background:
        linear-gradient(
            180deg,
            rgba(15, 47, 35, 0.98),
            rgba(15, 47, 35, 0.96)
        ),
        radial-gradient(
            circle at top left,
            rgba(143, 168, 143, 0.16),
            transparent 34%
        );

    border-top: 1px solid rgba(246, 244, 241, 0.12);
}

.footer-inner,
.footer-bottom {
    width: var(--content-width);
    margin: 0 auto;
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(260px, 1.45fr) repeat(2, minmax(180px, 1fr));
    gap: clamp(2rem, 4vw, 4.5rem);
    align-items: start;
}

.footer-brand {
    display: grid;
    gap: 2rem;
}

.footer-logo {
    width: min(320px, 100%);
    height: auto;

    filter:
        brightness(0)
        saturate(100%)
        invert(95%)
        sepia(6%)
        saturate(246%)
        hue-rotate(334deg)
        brightness(105%)
        contrast(93%);
}

.footer-description {
    max-width: 20rem;
    color: rgba(246, 244, 241, 0.74);
    font-family: var(--font-copy);
    font-size: 1.1rem;
    line-height: 1.55;
    letter-spacing: -0.02em;
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 1rem;
}

.footer-title,
.footer-bottom p {
    font-family: var(--font-mono);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-title {
    margin-bottom: 0.5rem;
    color: rgba(143, 168, 143, 0.9);
    font-size: 0.76rem;
}

.footer-column a,
.footer-socials {
    color: var(--color-cream);
    font-family: var(--font-copy);
    font-size: 1.05rem;
    line-height: 1.5;
}

.footer-column a {
    width: fit-content;
    transition:
        color 180ms ease,
        transform 180ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
    color: var(--color-accent);
    transform: translateX(4px);
}

.footer-socials {
    margin-top: 1rem;
    color: rgba(246, 244, 241, 0.62);
    font-size: 0.9rem;
}

a.footer-socials {
    display: block;
    width: fit-content;
    transition:
        color 180ms ease,
        transform 180ms ease;
}

a.footer-socials:hover,
a.footer-socials:focus-visible {
    color: var(--color-accent);
    transform: translateX(4px);
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: center;
    margin-top: 4rem;
    padding-top: 1.6rem;
    border-top: 1px solid rgba(246, 244, 241, 0.18);
}

.footer-bottom p:last-child {
    justify-self: end;
}

.footer-bottom p {
    color: rgba(246, 244, 241, 0.62);
    font-size: 0.76rem;
}


/* -------------------------
   REVEAL ANIMATION
------------------------- */

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);

    transition:
        opacity 600ms ease,
        transform 600ms ease;
}

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


/* -------------------------
   TABLET
------------------------- */

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

        min-height: auto;

        padding: 0.8rem 1rem;
    }

    .logo-link {
        width: 210px;
        height: 52px;
    }

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

    .page-section {
        padding-top: 8.75rem;
    }

    .section-inner,
    .hero-section .section-inner {
        grid-template-columns: 1fr;
    }

    .hero-section .section-inner {
        min-height: 100svh;
        padding:
            calc(var(--header-height) + 5.5rem)
            0
            2.5rem;
    }

    .hero-brand {
        width: var(--content-width);
        padding-bottom: 0;
        transform: translateY(-12px);
    }

    .hero-orbit {
        right: max(1rem, calc((100vw - var(--content-width)) / 2));
        bottom: 2rem;
        width: 140px;
    }

    .hero-logo {
        width: 100%;
        max-width: 520px;
        margin: 0;
        transform: none;
    }

    #about .section-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content {
        gap: 2rem;
    }

    .about-visual {
        min-height: 420px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .lineup-graphic {
        position: static;
        width: 120px;
        margin-top: 2rem;
    }

    .lineup-launches-preview {
        right: 0;
        width: min(220px, 42vw);
    }

    .process-step {
        min-height: auto;
        padding-bottom: 2rem;
    }

    .process-step .section-text {
        margin-top: 0;
    }

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

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        justify-items: start;
    }

    .footer-bottom p:last-child {
        justify-self: start;
    }

    .about-page-inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .about-page-copy {
        max-width: 42rem;
    }

    .about-founders-inner {
        gap: 2.5rem;
    }

    .founder-pass-wrap {
        min-height: auto;
        justify-content: flex-start;
    }

    .founder-pass {
        width: min(100%, 380px);
    }
}


/* -------------------------
   MOBILE
------------------------- */

@media (max-width: 640px) {
    :root {
        --content-width: min(100vw - 1rem, 1240px);
    }

    .site-header {
        padding: 0.7rem 0.75rem;
    }

    .hero-gallery {
        grid-template-columns: 1fr;
    }

    .hero-gallery-image:nth-child(n + 2) {
        display: none;
    }

    .hero-section .section-inner {
        padding:
            calc(var(--header-height) + 6.4rem)
            0
            2rem;
    }

    .hero-brand {
        transform: none;
    }

    .hero-logo {
        max-width: min(92vw, 360px);
    }

    .logo-link {
        width: 185px;
        height: 46px;
    }

    .about-visual {
        min-height: 340px;
    }

    .about-target {
        width: 60px;
        right: 1rem;
        bottom: 1rem;
    }

    .process-icon {
        width: 42px;
    }

    .contact-globe {
        width: 110px;
    }

    .hero-orbit {
        right: 1rem;
        bottom: 0.25rem;
        width: 104px;
    }

    .nav-link {
        font-size: 0.7rem;
    }

    h1 {
        font-size: clamp(2.1rem, 8vw, 3rem);
    }

    h2 {
        font-size: clamp(1.8rem, 7vw, 2.6rem);
    }

    .lineup-list p {
        font-size: clamp(1.7rem, 7vw, 2.5rem);
    }

    .lineup-list p:hover {
        transform: translateX(4px);
    }

    .lineup-preview-stage {
        position: relative;
        inset: auto;
        z-index: 0;
        width: min(240px, 70vw);
        aspect-ratio: 4 / 5;
        margin: 1.5rem 0 0;
    }

    .lineup-launches-preview {
        inset: 0;
        top: auto;
        right: auto;
        width: auto;
        transform: scale(0.96);
    }

    .lineup-launches-preview.is-active {
        transform: scale(1);
    }

    .process-step h2 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .site-footer {
        padding: 4rem 0 1.6rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2.4rem;
    }

    .footer-brand {
        gap: 1.5rem;
    }

    .footer-logo {
        width: min(240px, 78vw);
    }

    .footer-description {
        font-size: 1rem;
    }

    .footer-column {
        gap: 0.8rem;
    }

    .footer-column a {
        font-size: 1rem;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        justify-items: start;
        gap: 0.65rem;
        margin-top: -0.3rem;
    }

    .about-page-hero {
        padding-bottom: 1rem;
    }

    .about-page-copy {
        gap: 1.15rem;
    }

    .about-page-image-wrap {
        width: 100%;
        margin-top: 0.8rem;
    }

    .about-founders-inner {
        gap: 2rem;
    }

    .founders-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .founder-pass {
        width: min(100%, 290px);
    }

    .founder-links {
        margin-top: 0;
    }

    .founder-link {
        width: 1.4rem;
        height: 1.4rem;
    }
}


/* -------------------------
   REDUCED MOTION
------------------------- */

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

    .page-sections {
        scroll-snap-type: none;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
