@import url('https://fonts.googleapis.com/css2?family=PT+Sans+Caption:wght@400;700&family=Titan+One&display=swap');

:root {
    --blue-white: #e6f4f1;
    --blue-dark: #043d48;
    --highlight: #bd5c00;

    --paper: rgba(255, 255, 255, .78);
    --paper2: rgba(255, 255, 255, .62);
    --line: rgba(4, 61, 72, .18);

    --fontBody: 'PT Sans Caption', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    --fontHeading: 'Titan One', cursive;

    --r1: 18px;
    --r2: 28px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--fontBody);
    color: var(--blue-dark);
    background: var(--blue-white);
    line-height: 1.55;
    overflow-x: hidden;
}

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

.contentWidth {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 4vw;
}

/* background: contour lines (map vibe) + paper bloom */
.bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.bg__paper {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 520px at 10% 5%, rgba(189, 92, 0, .14), transparent 60%),
        radial-gradient(900px 520px at 90% 15%, rgba(4, 61, 72, .12), transparent 62%),
        linear-gradient(180deg, rgba(255, 255, 255, .10), transparent 70%);
}

.bg__contours {
    position: absolute;
    inset: -40px;
    opacity: .10;
    background-image:
        repeating-radial-gradient(circle at 30% 40%, rgba(4, 61, 72, .60) 0 1px, transparent 1px 14px),
        repeating-radial-gradient(circle at 70% 55%, rgba(189, 92, 0, .55) 0 1px, transparent 1px 18px);
    mix-blend-mode: multiply;
}

/* header */
.header {
    position: sticky;
    top: 0;
    z-index: 40;
    padding: 12px 0 10px;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--paper), var(--paper2));
    border: 2px solid rgba(4, 61, 72, .16);
    box-shadow: 0 16px 34px rgba(4, 61, 72, .10), inset 0 2px 0 rgba(255, 255, 255, .55);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    border-radius: 999px;
}

.brand__icon {
    width: 36px;
    height: 36px;
    border-radius: 14px;
    border: 2px solid rgba(4, 61, 72, .14);
    background: rgba(255, 255, 255, .55);
}

.brand__name {
    font-family: var(--fontHeading);
    font-size: 20px;
    letter-spacing: .4px;
    line-height: 1.05;
}

.brand__tag {
    font-weight: 900;
    font-size: 12px;
    opacity: .78;
    margin-top: 2px;
}

.nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.nav__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 2px solid rgba(4, 61, 72, .12);
    background: rgba(4, 61, 72, .03);
    font-weight: 900;
    transition: transform .12s ease;
}

.nav__link:hover {
    transform: translateY(-1px);
}

.nav__link i {
    font-size: 18px;
    color: rgba(4, 61, 72, .90);
}

.nav__link--hot {
    border-color: rgba(189, 92, 0, .35);
    background: rgba(189, 92, 0, .10);
}

.nav__link--hot i {
    color: var(--highlight);
}

/* hero: fullscreen animation, clipped nicely */
.hero {
    height: calc(100vh - 90px);
    background: #000;
}

@supports (height: 100svh) {
    .hero {
        height: calc(100svh - 90px);
    }
}

.hero__frame {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-bottom: 3px solid rgba(4, 61, 72, .14);
}

.hero__svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* sections */
.section {
    padding: 54px 0;
}

.section--intro {
    padding: 44px 0 54px;
}

.section--alt {
    background: rgba(255, 255, 255, .35);
    border-top: 2px solid rgba(4, 61, 72, .10);
    border-bottom: 2px solid rgba(4, 61, 72, .10);
}

.sectionHead h2 {
    font-family: var(--fontHeading);
    font-size: 36px;
    margin: 0;
}

.sectionHead p {
    margin: 10px 0 0;
    font-weight: 900;
    opacity: .86;
}

h1 {
    font-family: var(--fontHeading);
    font-size: 56px;
    margin: 0;
    letter-spacing: .4px;
}

.lead {
    max-width: 75ch;
    font-size: 18px;
    font-weight: 900;
    opacity: .92;
    margin-top: 12px;
}

/* intro layout */
.loghead {
    display: grid;
    gap: 14px;
    align-items: start;
}

.loghead__main {}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    border: 2px solid rgba(4, 61, 72, .12);
    background: rgba(255, 255, 255, .62);
    font-weight: 900;
}

.chip i {
    color: var(--highlight);
    font-size: 18px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    border: 2px solid rgba(4, 61, 72, .12);
    background: rgba(255, 255, 255, .62);
    font-weight: 900;
    cursor: pointer;
    transition: transform .12s ease;
}

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

.btn i {
    font-size: 18px;
}

.btn--primary {
    background: rgba(189, 92, 0, .18);
    border-color: rgba(189, 92, 0, .35);
}

.btn--ghost {
    background: rgba(4, 61, 72, .04);
}

.note {
    margin-top: 16px;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    font-weight: 900;
    opacity: .84;
}

.stamp {
    font-family: var(--fontHeading);
    font-size: 14px;
    color: rgba(189, 92, 0, .95);
    border: 2px solid rgba(189, 92, 0, .35);
    padding: 8px 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .55);
}

/* ticket */
.ticket {
    border-radius: var(--r2);
    border: 2px solid rgba(4, 61, 72, .16);
    background: linear-gradient(180deg, rgba(255, 255, 255, .74), rgba(255, 255, 255, .58));
    padding: 16px;
    box-shadow: 0 18px 36px rgba(4, 61, 72, .10);
}

.ticket__top {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: baseline;
}

.ticket__title {
    font-family: var(--fontHeading);
    font-size: 22px;
}

.ticket__sub {
    font-weight: 900;
    opacity: .75;
}

.ticket__rows {
    margin-top: 12px;
    display: grid;
    gap: 10px;
}

.ticket__row {
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 900;
    opacity: .90;
}

.ticket__row i {
    color: var(--highlight);
    font-size: 18px;
}

.ticket__divider {
    height: 2px;
    background: rgba(4, 61, 72, .10);
    margin: 14px 0 10px;
}

.ticket__footer {
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 900;
    opacity: .85;
}

.miniLink {
    padding: 8px 10px;
    border-radius: 999px;
    border: 2px solid rgba(4, 61, 72, .12);
    background: rgba(4, 61, 72, .04);
}

.dot {
    opacity: .6;
}

/* screenshots: film strip */
.film {
    margin-top: 16px;
    display: grid;
    gap: 14px;
}

.frame {
    background: rgba(255, 255, 255, .72);
    border: 2px solid rgba(4, 61, 72, .16);
    border-radius: var(--r2);
    padding: 12px;
    box-shadow: 0 16px 34px rgba(4, 61, 72, .08);
}

.frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 22px;
    border: 2px solid rgba(4, 61, 72, .10);
}

.frame figcaption {
    margin-top: 10px;
    font-weight: 900;
    opacity: .88;
}

/* features grid */
.grid {
    margin-top: 16px;
    display: grid;
    gap: 14px;
}

.card {
    background: rgba(255, 255, 255, .72);
    border: 2px solid rgba(4, 61, 72, .16);
    border-radius: var(--r2);
    padding: 18px 16px;
    box-shadow: 0 16px 34px rgba(4, 61, 72, .06);
}

.card__icon {
    width: 44px;
    height: 44px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    border: 2px solid rgba(189, 92, 0, .28);
    background: rgba(189, 92, 0, .10);
}

.card__icon i {
    color: var(--highlight);
    font-size: 22px;
}

.card h3 {
    font-family: var(--fontHeading);
    margin: 10px 0 0;
    font-size: 22px;
}

.card p {
    margin: 10px 0 0;
    font-weight: 900;
    opacity: .90;
}

/* stores */
.stores {
    margin-top: 16px;
    display: grid;
    gap: 12px;
}

.storeBtn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 14px;
    border-radius: 999px;
    border: 2px solid rgba(4, 61, 72, .16);
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 18px 36px rgba(4, 61, 72, .10);
    font-weight: 900;
    transition: transform .12s ease;
}

.storeBtn:hover {
    transform: translateY(-1px);
}

.storeBtn img {
    width: 44px;
    height: 44px;
    border-radius: 18px;
    border: 2px solid rgba(4, 61, 72, .14);
}

.storeBtn em {
    display: block;
    font-style: normal;
    opacity: .76;
    font-size: 12px;
}

.storeBtn strong {
    display: block;
    font-size: 18px;
}

.storeBtn i {
    font-size: 20px;
    opacity: .9;
}

.storeBtn--alt {
    border-color: rgba(189, 92, 0, .35);
    background: rgba(189, 92, 0, .10);
}

/* contact */
.contact {
    margin-top: 16px;
    display: grid;
    gap: 14px;
    align-items: start;
}

.form {
    background: rgba(255, 255, 255, .72);
    border: 2px solid rgba(4, 61, 72, .16);
    border-radius: var(--r2);
    padding: 16px;
    box-shadow: 0 16px 34px rgba(4, 61, 72, .08);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form label {
    display: grid;
    gap: 8px;
    font-weight: 900;
}

.form input,
.form textarea {
    width: 100%;
    padding: 12px 12px;
    border-radius: 18px;
    border: 2px solid rgba(4, 61, 72, .14);
    background: rgba(255, 255, 255, .74);
    font: inherit;
    outline: none;
}

.form input:focus,
.form textarea:focus {
    border-color: rgba(189, 92, 0, .55);
    box-shadow: 0 0 0 3px rgba(189, 92, 0, .10);
}

.wide {
    grid-column: 1 / -1;
}

.tiny {
    grid-column: 1 / -1;
    margin: 0;
    font-weight: 900;
    opacity: .78;
}

.footerCard {
    background: rgba(255, 255, 255, .62);
    border: 2px dashed rgba(4, 61, 72, .18);
    border-radius: var(--r2);
    padding: 16px;
}

.footerCard__title {
    font-family: var(--fontHeading);
    font-size: 22px;
}

.footerCard__line {
    height: 2px;
    background: rgba(4, 61, 72, .10);
    margin: 12px 0;
}

/* footer */
.footer {
    padding: 24px 0 34px;
    border-top: 2px solid rgba(4, 61, 72, .10);
    background: rgba(255, 255, 255, .22);
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    font-weight: 900;
    opacity: .92;
}

.footer__links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer__links a {
    padding: 8px 10px;
    border-radius: 999px;
    border: 2px solid rgba(4, 61, 72, .12);
    background: rgba(255, 255, 255, .45);
}

/* responsive */
@media (min-width: 820px) {
    .loghead {
        grid-template-columns: 1.2fr .8fr;
    }

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

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

    .stores {
        grid-template-columns: 1fr 1fr;
    }

    .contact {
        grid-template-columns: 1.2fr .8fr;
    }
}

@media (max-width: 820px) {
    .hero {
        height: auto;
        aspect-ratio: 16/9;
    }

    h1 {
        font-size: 48px;
    }

    .nav__link span {
        display: none;
    }

    .form {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {

    .nav__link,
    .btn,
    .storeBtn {
        transition: none;
    }
}