/* styles.css */
:root {
    --bg: #05040a;
    --bg2: #080616;
    --text: #f2f2ff;
    --muted: #b7b3d6;

    --cyan: #33d6ff;
    --magenta: #ff3dd4;

    --shadow: 0 18px 50px rgba(0, 0, 0, .45);
    --radius: 18px;
    --radius2: 26px;
    --wrap: 1120px;
    --topbarH: 58px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: radial-gradient(1200px 900px at 50% 0%, rgba(123, 44, 255, .18), transparent 65%),
    radial-gradient(900px 700px at 30% 70%, rgba(51, 214, 255, .10), transparent 60%),
    radial-gradient(900px 700px at 70% 75%, rgba(255, 61, 212, .10), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans";
    line-height: 1.45;
    overflow-x: hidden;
}

/* Anchor offset for sticky header */
section {
    scroll-margin-top: calc(var(--topbarH) + 18px);
}

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

.wrap {
    width: min(var(--wrap), calc(100% - 40px));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Accessibility helpers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip {
    position: absolute;
    left: -999px;
    top: 0;
}

.skip:focus {
    left: 12px;
    top: 12px;
    background: #000;
    color: #fff;
    padding: 10px 12px;
    border-radius: 10px;
    z-index: 9999;
    outline: 2px solid var(--cyan);
}

/* Disabled state for links/buttons */
.is-disabled {
    opacity: .45;
    filter: saturate(.7);
    cursor: not-allowed;
    pointer-events: none;
}

/* TOPBAR */
.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(5, 4, 10, .55);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.topbar__inner {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 12px 0;
    min-height: var(--topbarH);
}

.brand {
    display: flex;
    align-items: center;
}

.brand__logo {
    height: 26px;
    width: auto;
    filter: drop-shadow(0 0 14px rgba(255, 255, 255, .12));
}

.status {
    display: none;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}

.status__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--cyan), var(--magenta));
    box-shadow: 0 0 14px rgba(51, 214, 255, .35), 0 0 18px rgba(255, 61, 212, .25);
}

.status__sep {
    opacity: .5;
}

.nav {
    display: flex;
    align-items: center;
    margin-left: auto;
    flex-shrink: 0;
}

.nav a {
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(242, 242, 255, .85);
    padding: 8px 10px;
    border-radius: 12px;

    &.nav__secondary {
        display: none;
    }
}

.nav a:hover {
    background: rgba(255, 255, 255, .06);
}

.nav__pill {
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .04);
}

@media (min-width: 460px) {
    .nav a.nav__secondary {
        display: block;
    }
}

@media (min-width: 600px) {
    .nav {
        gap: 14px;
    }
}

@media (min-width: 980px) {
    .status {
        display: flex;
    }
}

/* HERO */
.hero {
    position: relative;
    min-height: calc(100vh - var(--topbarH));
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, rgba(5, 4, 10, .18), rgba(5, 4, 10, .90)),
    image-set(
            url("assets/img/hero-mobile.avif") type("image/avif"),
            url("assets/img/hero-mobile.webp") type("image/webp")
    );
    background-size: cover;
    background-position: center 22%;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

@media (min-width: 900px) {
    .hero {
        background: linear-gradient(180deg, rgba(5, 4, 10, .14), rgba(5, 4, 10, .70)),
        image-set(
                url("assets/img/hero-desktop.avif") type("image/avif"),
                url("assets/img/hero-desktop.webp") type("image/webp")
        );
        background-size: cover;
        background-position: center 24%;
    }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(900px 600px at 50% 35%, rgba(255, 61, 212, .16), transparent 60%),
    radial-gradient(900px 600px at 45% 40%, rgba(51, 214, 255, .14), transparent 60%),
    radial-gradient(1000px 700px at 50% 0%, rgba(123, 44, 255, .16), transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.hero__vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(70% 55% at 50% 40%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .42) 70%, rgba(0, 0, 0, .70) 100%);
    z-index: 0;
}

/* Hard bottom fade to guarantee no seam into next section */
.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 140px;
    pointer-events: none;
    background: linear-gradient(
            to bottom,
            rgba(5, 4, 10, 0),
            rgba(5, 4, 10, 0.55) 45%,
            rgba(5, 4, 10, 0.92) 80%,
            rgba(5, 4, 10, 1)
    );
    z-index: 1;
}

.hero__content {
    padding: clamp(56px, 9vh, 110px) 0 64px;
    display: flex;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

@media (min-width: 900px) {
    .hero__content {
        transform: translateY(-2.5vh);
    }
}

.hero__panel {
    position: relative;
    max-width: 760px;
    padding: 22px 22px 18px;
    border-radius: var(--radius2);
    background: linear-gradient(135deg, rgba(18, 12, 34, .62), rgba(0, 0, 0, .28));
    border: 1px solid rgba(255, 255, 255, .13);
    backdrop-filter: blur(14px);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .55),
    0 0 42px rgba(51, 214, 255, .08),
    0 0 42px rgba(255, 61, 212, .06);
    overflow: hidden;
}

.hero__panel::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: var(--radius2);
    background: radial-gradient(460px 220px at 15% 10%, rgba(51, 214, 255, .18), transparent 60%),
    radial-gradient(460px 220px at 85% 0%, rgba(255, 61, 212, .16), transparent 60%);
    opacity: .55;
    pointer-events: none;
}

.hero__mark {
    position: absolute;
    right: 18px;
    top: 16px;
    width: clamp(54px, 7vw, 92px);
    opacity: .10;
    filter: drop-shadow(0 0 18px rgba(255, 255, 255, .10));
    pointer-events: none;
}

.hero__mark img {
    width: 100%;
    height: auto;
    display: block;
}

.kicker {
    margin: 0 0 14px;
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(242, 242, 255, .82);
    display: inline-flex;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .25);
    border: 1px solid rgba(255, 255, 255, .10);
    backdrop-filter: blur(8px);
}

/* Title: glow + main text */
.title {
    position: relative;
    display: inline-block;
    margin: 12px 0 10px;
    font-size: clamp(40px, 6vw, 76px);
    line-height: 1.02;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.title__glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    color: transparent;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 18px rgba(51, 214, 255, .22),
    0 0 26px rgba(255, 61, 212, .20),
    0 0 44px rgba(123, 44, 255, .18);
    filter: blur(0.6px);
    pointer-events: none;
}

.title__text {
    position: relative;
    z-index: 1;
    text-shadow: 0 10px 40px rgba(0, 0, 0, .55);
}

@media (max-width: 520px) {
    .title {
        font-size: clamp(34px, 9vw, 46px);
    }
}

.tagline {
    margin: 0 0 16px;
    color: rgba(242, 242, 255, .90);
    font-size: clamp(16px, 2.1vw, 20px);
    max-width: 60ch;
}

.tagline__rotator {
    display: block;
    height: 1.4em;
    overflow: hidden;
    border-radius: 10px;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 22%, #000 78%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 22%, #000 78%, transparent 100%);
}

.tagline__inner {
    display: block;
    will-change: transform;
    animation: tagSteps 20s steps(5) infinite;
}

.tagline__inner > span {
    display: block;
    height: 1.4em;
}

@keyframes tagSteps {
    to {
        transform: translateY(calc(-1.4em * 5));
    }
}

.releaseLine {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px;
    margin: 0 0 14px;
    color: rgba(242, 242, 255, .88);
    letter-spacing: .10em;
    text-transform: uppercase;
    font-size: 12px;
}

.releaseLine__label {
    color: rgba(242, 242, 255, .78);
}

.releaseLine__date {
    font-weight: 800;
}

.releaseLine__countdown {
    color: rgba(242, 242, 255, .72);
}

.cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 14px 0 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06);
    color: rgba(242, 242, 255, .95);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 700;
    box-shadow: var(--shadow);
    transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.btn:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .09);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .55);
}

.btn__sub {
    font-weight: 600;
    opacity: .85;
    letter-spacing: .10em;
}

.btn--primary {
    border: 1px solid rgba(255, 255, 255, .18);
    background: linear-gradient(120deg, rgba(51, 214, 255, .18), rgba(255, 61, 212, .18)),
    rgba(255, 255, 255, .05);
    box-shadow: 0 18px 55px rgba(0, 0, 0, .50),
    0 0 30px rgba(51, 214, 255, .14),
    0 0 30px rgba(255, 61, 212, .10);
}

.btn--ghost {
    background: rgba(0, 0, 0, .25);
}

.btn--small {
    padding: 10px 12px;
    border-radius: 14px;
    font-size: 12px;
    box-shadow: none;
}

.platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    row-gap: 8px;
    column-gap: 10px;
    margin-top: 8px;
    max-width: 720px;
    align-items: center;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .36);
    border: 1px solid rgba(255, 255, 255, .13);
    color: rgba(242, 242, 255, .88);
    font-size: 13px;
}

.pill__icon {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--cyan), var(--magenta));
}

.pill--static {
    opacity: .92;
}

.pill__icon--date {
    background: linear-gradient(90deg, rgba(51, 214, 255, .9), rgba(255, 61, 212, .9));
}

.pill__icon--soon {
    background: rgba(242, 242, 255, .75);
}

.hero__hint {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: .75;
}

.hero__hintText {
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(242, 242, 255, .85);
}

.hero__chev {
    display: inline-block;
    opacity: .9;
    animation: heroChev 1.6s ease-in-out infinite;
}

@keyframes heroChev {
    0%, 100% {
        transform: translateY(0);
        opacity: .75;
    }
    50% {
        transform: translateY(4px);
        opacity: 1;
    }
}

/* SECTIONS */
.section {
    padding: 72px 0;
}

.section--alt {
    background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(0, 0, 0, 0));
    border-top: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.section--pane {
    position: relative;
    overflow: hidden;
    background: rgba(5, 4, 10, 0.92);
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.section__paneBg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(900px 420px at 25% 0%, rgba(51, 214, 255, .08), transparent 60%),
    radial-gradient(900px 420px at 75% 0%, rgba(255, 61, 212, .07), transparent 60%),
    linear-gradient(180deg, rgba(5, 4, 10, .96), rgba(8, 6, 22, .90));
    z-index: 0;
}

.section--pane > .wrap {
    position: relative;
    z-index: 1;
}

#listen.section {
    padding-top: 60px;
    padding-bottom: 72px;
}

#sync.section, #about.section, #contact.section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.section__head {
    margin-bottom: 18px;
}

.h2 {
    margin: 0;
    font-size: 22px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.sub {
    margin: 10px 0 0;
    color: rgba(242, 242, 255, .85);
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 12px;
}

.muted {
    color: var(--muted);
}

.note {
    margin-top: 10px;
}

/* GRID */
.grid {
    display: grid;
    gap: 18px;
    align-items: stretch;
}

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

@media (min-width: 920px) {
    .grid--2 {
        grid-template-columns:1fr 1fr;
    }
}

/* CARD */
.card {
    position: relative;
    border-radius: var(--radius2);
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.card::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: radial-gradient(600px 240px at 20% 10%, rgba(51, 214, 255, .18), transparent 60%),
    radial-gradient(600px 240px at 80% 0%, rgba(255, 61, 212, .16), transparent 60%);
    opacity: .55;
    pointer-events: none;
}

.card__body {
    position: relative;
    z-index: 1;
    padding: 18px;
}

.card__media {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    display: block;
    padding: 0;
}

.card__media--square {
    aspect-ratio: 1 / 1;
    height: auto;
    max-height: none;
}

.card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    filter: saturate(1.05) contrast(1.05);
}

.card__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .18), transparent 70%);
    opacity: .14;
    transform: translateX(-30%);
}

.card:hover .card__shine {
    animation: shine 1.2s ease forwards;
}

@keyframes shine {
    to {
        transform: translateX(30%);
        opacity: .18;
    }
}

.h3 {
    margin: 0 0 8px;
    font-size: 16px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.micro {
    margin: 0 0 14px;
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(242, 242, 255, .78);
}

.body {
    margin: 0 0 10px;
    color: rgba(242, 242, 255, .90);
}

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

.card__actions--space {
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px;
}

.divider {
    height: 1px;
    background: rgba(255, 255, 255, .10);
    margin: 16px 0;
}

/* LIST */
.list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display: grid;
    gap: 10px;
}

.list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 12px;
    border-radius: 14px;
    background: rgba(0, 0, 0, .26);
    border: 1px solid rgba(255, 255, 255, .10);
}

.list__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--cyan), var(--magenta));
    box-shadow: 0 0 18px rgba(51, 214, 255, .22), 0 0 18px rgba(255, 61, 212, .18);
}

.list__arrow {
    margin-left: auto;
    color: rgba(242, 242, 255, .85);
}

.tag {
    font-size: 11px;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: rgba(242, 242, 255, .70);
    margin-left: 2px;
}

.list a.is-disabled {
    pointer-events: none;
    cursor: not-allowed;
    opacity: .55;
}

/* VIDEO */
.video {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(0, 0, 0, .35);
}

.video iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
}

.video--placeholder {
    display: grid;
    place-items: center;
}

.video__placeholder {
    padding: 26px;
    text-align: center;
}

.video__kicker {
    margin: 0 0 10px;
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(242, 242, 255, .75);
}

.video__title {
    margin: 0 0 8px;
    font-size: 18px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(242, 242, 255, .92);
}

.video__small {
    margin: 0;
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

/* SYNC STRIP */
.socialStrip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.socialPill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(0, 0, 0, .28);
    border: 1px solid rgba(255, 255, 255, .12);
    min-height: 44px;
    transition: transform .15s ease, border-color .15s ease, background .15s ease, box-shadow .15s ease;
}

.socialPill:hover {
    transform: translateY(-1px);
    background: rgba(0, 0, 0, .36);
    border-color: rgba(255, 255, 255, .20);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .45);
}

.socialPill__icon {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--cyan), var(--magenta));
    box-shadow: 0 0 18px rgba(51, 214, 255, .18), 0 0 18px rgba(255, 61, 212, .14);
}

.socialPill__name {
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(242, 242, 255, .92);
    font-weight: 700;
}

.socialPill__meta {
    font-size: 12px;
    color: rgba(242, 242, 255, .70);
    margin-left: 2px;
}

@media (max-width: 520px) {
    .socialPill__meta {
        display: none;
    }
}

/* DETAILS */
.details__body {
    margin-top: 12px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(0, 0, 0, .18);
}

.details--wide summary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(0, 0, 0, .22);
    list-style: none;
    cursor: pointer;
    user-select: none;
}

.details--wide summary::-webkit-details-marker {
    display: none;
}

.details--wide summary:hover {
    border-color: rgba(255, 255, 255, .18);
    background: rgba(0, 0, 0, .28);
}

.details__title {
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 800;
    color: rgba(242, 242, 255, .92);
}

.details__hint {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(242, 242, 255, .70);
    position: relative;
    padding-right: 18px;
}

.details__hint::after {
    content: "›";
    position: absolute;
    right: 2px;
    top: -1px;
    opacity: .85;
    transform: rotate(90deg);
    transition: transform .15s ease;
}

details[open] .details__hint::after {
    transform: rotate(-90deg);
}

details[open] summary {
    border-color: rgba(255, 255, 255, .18);
    background: rgba(0, 0, 0, .28);
}

.bullets {
    margin: 10px 0 0;
    padding-left: 18px;
    color: rgba(242, 242, 255, .90);
}

.bullets li {
    margin: 6px 0;
}

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

.chip {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(0, 0, 0, .20);
    color: rgba(242, 242, 255, .82);
}

/* CONTACT */
.contact {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.link {
    color: rgba(242, 242, 255, .92);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, .28);
}

.link:hover {
    text-decoration-color: rgba(255, 255, 255, .55);
}

/* FOOTER */
.footer {
    padding: 24px 0 42px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    background: rgba(0, 0, 0, .18);
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.footer__links {
    display: flex;
    gap: 14px;
}

.footer a:hover {
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, .35);
}

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

    .hero__content {
        transform: none;
    }

    .tagline__inner {
        animation: none;
    }

    .hero__chev {
        animation: none;
    }
}

.legalGrid {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 10px 14px;
    margin: 14px 0 0;
}

.legalGrid dt {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(242, 242, 255, .70);
}

.legalGrid dd {
    margin: 0;
    color: rgba(242, 242, 255, .92);
}

.legalFootnote {
    margin-top: 14px;
    word-break: break-word;
}

.legalSingle {
    margin-top: 18px;
}

@media (max-width: 520px) {
    .legalGrid {
        grid-template-columns: 1fr;
    }
}
