@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 600 800;
    font-display: swap;
    src: url("assets/fonts/Manrope-Variable-latin-ext.woff2") format("woff2");
    unicode-range: U+0100-02FF, U+0304, U+0308, U+0329, U+1E00-1EFF, U+20A0-20AB, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 600 800;
    font-display: swap;
    src: url("assets/fonts/Manrope-Variable-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: "Barlow Condensed";
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url("assets/fonts/BarlowCondensed-ExtraBold-latin-ext.woff2") format("woff2");
    unicode-range: U+0100-02FF, U+0304, U+0308, U+0329, U+1E00-1EFF, U+20A0-20AB, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: "Barlow Condensed";
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url("assets/fonts/BarlowCondensed-ExtraBold-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: "Barlow Condensed";
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url("assets/fonts/BarlowCondensed-Black-latin-ext.woff2") format("woff2");
    unicode-range: U+0100-02FF, U+0304, U+0308, U+0329, U+1E00-1EFF, U+20A0-20AB, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: "Barlow Condensed";
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url("assets/fonts/BarlowCondensed-Black-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --accent: #e0202b;
    --accent-hot: #ff3d49;
    --accent-deep: #680b12;
    --background: #06080c;
    --background-soft: #090b10;
    --panel: rgba(12, 14, 20, 0.88);
    --panel-strong: rgba(8, 10, 15, 0.96);
    --panel-soft: rgba(255, 255, 255, 0.055);
    --line: rgba(255, 255, 255, 0.13);
    --line-soft: rgba(255, 255, 255, 0.075);
    --text: #f5f5f7;
    --muted: rgba(245, 245, 247, 0.62);
    --muted-strong: rgba(245, 245, 247, 0.76);
    --success: #6ee7b7;
    --container: min(90%, 82rem);
    --header-height: clamp(4.5rem, 6vw, 5.5rem);
    --section-space: clamp(5.5rem, 9vw, 9rem);
    --space-1: clamp(0.3rem, 0.4vw, 0.45rem);
    --space-2: clamp(0.55rem, 0.65vw, 0.8rem);
    --space-3: clamp(0.85rem, 1vw, 1.2rem);
    --space-4: clamp(1.2rem, 1.5vw, 1.8rem);
    --space-5: clamp(1.7rem, 2.2vw, 2.6rem);
    --space-6: clamp(2.3rem, 3.5vw, 4rem);
    --radius-control: clamp(0.4rem, 0.45vw, 0.5rem);
    --radius-panel: clamp(0.45rem, 0.5vw, 0.6rem);
    --panel-line-inset: clamp(1rem, 1.2vw, 1.4rem);
    --panel-line-offset: clamp(1rem, 1.2vw, 1.4rem);
    --control-height: clamp(2.85rem, 3.2vw, 3.2rem);
    --font-kicker: 0.72rem;
    --font-small: 0.78rem;
    --font-body: 0.95rem;
    --font-body-large: 1.05rem;
    --font-card-title: 1.65rem;
    --font-section-title: 3.6rem;
    --font-hero: 5rem;
    --font-display: "Barlow Condensed", sans-serif;
    --font-ui: "Manrope", sans-serif;
    --shadow-panel: 0 1.2rem 3rem rgba(0, 0, 0, 0.26);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
    min-width: 20rem;
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 86% 12%, rgba(104, 11, 18, 0.19), transparent 31rem),
        radial-gradient(circle at 10% 48%, rgba(224, 32, 43, 0.075), transparent 34rem),
        radial-gradient(circle at 78% 82%, rgba(104, 11, 18, 0.12), transparent 30rem),
        linear-gradient(118deg, transparent 0 27%, rgba(255, 61, 73, 0.018) 27% 27.08%, transparent 27.08% 73%, rgba(255, 255, 255, 0.012) 73% 73.08%, transparent 73.08%),
        linear-gradient(180deg, #06080c 0%, #080a0f 48%, #05070a 100%);
    background-attachment: fixed;
    color: var(--text);
    font-family: var(--font-ui);
    font-size: var(--font-body);
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

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

img,
svg {
    display: block;
}

img {
    max-width: 100%;
}

::selection {
    background: rgba(224, 32, 43, 0.45);
    color: var(--text);
}

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.07);
}

::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: linear-gradient(180deg, var(--accent-hot), var(--accent-deep));
}

.container {
    width: var(--container);
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 0.8rem;
    left: 0.8rem;
    padding: 0.65rem 0.9rem;
    border: 1px solid var(--accent-hot);
    border-radius: var(--radius-control);
    background: var(--panel-strong);
    transform: translateY(-180%);
    transition: transform 160ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.page-noise {
    position: fixed;
    z-index: 100;
    inset: 0;
    opacity: 0.32;
    pointer-events: none;
    background:
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.014) 0 1px, transparent 1px 4px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.008) 0 1px, transparent 1px 6px);
    mix-blend-mode: soft-light;
}

.page-noise::before,
.page-noise::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.page-noise::before {
    inset: -10%;
    background:
        radial-gradient(circle at 14% 18%, rgba(224, 32, 43, 0.17), transparent 24%),
        radial-gradient(circle at 86% 34%, rgba(104, 11, 18, 0.22), transparent 28%),
        radial-gradient(circle at 46% 84%, rgba(224, 32, 43, 0.09), transparent 24%);
    animation: ambient-drift 22s ease-in-out infinite alternate;
    will-change: transform;
}

.page-noise::after {
    inset: 0;
    background:
        repeating-linear-gradient(125deg, transparent 0 6rem, rgba(255, 255, 255, 0.025) 6rem calc(6rem + 1px), transparent calc(6rem + 1px) 12rem),
        radial-gradient(ellipse at center, transparent 35%, rgba(0, 0, 0, 0.32) 100%);
    opacity: 0.52;
}

.scroll-progress {
    position: fixed;
    z-index: 260;
    top: 0;
    right: 0;
    left: 0;
    height: 2px;
    overflow: hidden;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.025);
}

.scroll-progress span {
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(90deg, var(--accent-deep), var(--accent), var(--accent-hot));
    box-shadow: 0 0 0.75rem rgba(255, 61, 73, 0.45);
    transform: scaleX(0);
    transform-origin: left center;
    will-change: transform;
}

.site-header {
    position: fixed;
    z-index: 200;
    top: 0;
    right: 0;
    left: 0;
    border-bottom: 1px solid transparent;
    background: linear-gradient(180deg, rgba(6, 8, 12, 0.94), rgba(6, 8, 12, 0));
    transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
    border-color: var(--line-soft);
    background: rgba(6, 8, 12, 0.96);
    box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.22);
}

.header-inner {
    width: var(--container);
    min-height: var(--header-height);
    display: flex;
    margin-inline: auto;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 0.7rem;
}

.brand img {
    width: 3.25rem;
    height: 3.25rem;
    object-fit: contain;
    filter: drop-shadow(0 0.45rem 0.7rem rgba(0, 0, 0, 0.32));
}

.brand span {
    display: grid;
}

.brand strong {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 0.82;
    text-transform: uppercase;
}

.brand small {
    margin-top: 0.28rem;
    color: var(--muted);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
}

.site-nav a {
    position: relative;
    padding: 0.8rem 0;
    color: var(--muted-strong);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    transition: color 160ms ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    right: 50%;
    bottom: 0.48rem;
    left: 50%;
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--accent-hot));
    transition: right 160ms ease, left 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
    color: var(--text);
    outline: none;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
    right: 0;
    left: 0;
}

.header-cta,
.button {
    min-height: var(--control-height);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.65rem 1rem;
    border: 1px solid rgba(255, 65, 77, 0.72);
    border-radius: var(--radius-control);
    color: var(--text);
    font-size: var(--font-small);
    font-weight: 900;
    letter-spacing: 0.035em;
    line-height: 1;
    text-transform: uppercase;
    transition: border-color 160ms ease, background 160ms ease, transform 160ms ease, filter 160ms ease;
}

.header-cta {
    min-height: 2.65rem;
    background: rgba(224, 32, 43, 0.1);
    font-size: 0.84rem;
}

.header-cta svg,
.button svg {
    width: 1.05rem;
    height: 1.05rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-cta:hover,
.header-cta:focus-visible,
.button:hover,
.button:focus-visible {
    border-color: var(--accent-hot);
    filter: brightness(1.12);
    outline: none;
    transform: translateY(-0.1rem);
}

.nav-toggle {
    width: 2.75rem;
    height: 2.75rem;
    display: none;
    place-items: center;
    padding: 0.65rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-control);
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.nav-toggle span {
    width: 100%;
    height: 1px;
    display: block;
    background: var(--text);
    transition: transform 160ms ease, opacity 160ms ease;
}

.hero {
    position: relative;
    min-height: max(40rem, calc(100svh - 5.125rem));
    display: grid;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--line-soft);
    background:
        linear-gradient(90deg, rgba(6, 8, 12, 0.98) 0%, rgba(6, 8, 12, 0.9) 43%, rgba(6, 8, 12, 0.18) 78%, rgba(6, 8, 12, 0.7) 100%),
        radial-gradient(circle at 72% 32%, rgba(224, 32, 43, 0.17), transparent 31%),
        radial-gradient(circle at 78% 75%, rgba(104, 11, 18, 0.25), transparent 35%),
        #07090d;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(6, 8, 12, 0.22), transparent 18%, transparent 75%, var(--background));
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.36;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
    background-size: 5rem 5rem;
    mask-image: linear-gradient(90deg, black, transparent 72%);
}

.hero-left-accent {
    position: absolute;
    z-index: 1;
    top: var(--header-height);
    bottom: 0;
    left: 0;
    width: min(58rem, 58vw);
    pointer-events: none;
    background:
        radial-gradient(ellipse 82% 62% at 0% 48%, rgba(224, 32, 43, 0.28) 0%, rgba(104, 11, 18, 0.2) 32%, rgba(104, 11, 18, 0.08) 52%, transparent 76%),
        radial-gradient(ellipse 58% 36% at 6% 46%, rgba(255, 61, 73, 0.1), transparent 72%);
    opacity: 0.74;
    animation: hero-accent-shift 14s ease-in-out infinite alternate;
}

.hero-inner {
    position: relative;
    z-index: 2;
    min-height: inherit;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(28rem, 1.12fr);
    align-items: center;
    gap: var(--space-4);
    padding-top: var(--header-height);
}

.hero-copy {
    position: relative;
    z-index: 3;
    top: -0.45rem;
    max-width: 43rem;
    padding-block: 3rem;
}

.hero-status-pill {
    width: fit-content;
    min-height: 2.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.48rem 0.72rem;
    border: 1px solid rgba(255, 61, 73, 0.36);
    border-radius: 999px;
    background: rgba(104, 11, 18, 0.16);
    color: var(--text);
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.hero-status-pill i {
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 0.22rem rgba(110, 231, 183, 0.09);
}

.hero-status-pill svg {
    width: 1rem;
    height: 1rem;
    fill: none;
    stroke: var(--accent-hot);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.eyebrow,
.kicker {
    color: var(--accent-hot);
    font-size: var(--font-kicker);
    font-weight: 900;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.eyebrow > span {
    width: 2.2rem;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), var(--accent-hot));
}

.hero h1 {
    margin: 1.15rem 0 1.2rem;
    font-family: var(--font-display);
    font-size: var(--font-hero);
    font-weight: 900;
    letter-spacing: 0.01em;
    line-height: 0.84;
    text-transform: uppercase;
}

.hero h1 em {
    color: var(--text);
    font-style: normal;
    white-space: nowrap;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.18);
}

.hero-copy > p {
    max-width: 41rem;
    margin: 0;
    color: var(--muted-strong);
    font-size: var(--font-body-large);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.8rem;
}

.button--primary {
    background: linear-gradient(100deg, rgba(104, 11, 18, 0.96), rgba(224, 32, 43, 0.88));
    box-shadow: 0 0.8rem 2rem rgba(104, 11, 18, 0.26);
}

.button--ghost {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.045);
}

.hero-stats {
    max-width: 39rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
    margin-top: 1.75rem;
}

.hero-stats article {
    position: relative;
    min-height: 5.35rem;
    display: grid;
    align-content: center;
    justify-items: center;
    overflow: hidden;
    padding: 0.9rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--radius-control);
    background:
        radial-gradient(circle at 50% 0, rgba(224, 32, 43, 0.11), transparent 68%),
        rgba(255, 255, 255, 0.045);
    box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.18);
}

.hero-stats article::before {
    content: "";
    position: absolute;
    top: 0;
    right: 1rem;
    left: 1rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent-hot), transparent);
}

.hero-stats strong {
    color: var(--accent-hot);
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.hero-stats span {
    margin-top: 0.38rem;
    color: var(--muted);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.hero-visual {
    position: relative;
    align-self: end;
    height: calc(100% - var(--header-height));
    min-height: 32rem;
}

.hero-visual::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 2%;
    right: -12%;
    bottom: 8%;
    left: -14%;
    pointer-events: none;
    background:
        radial-gradient(ellipse 34% 52% at 52% 37%, rgba(255, 61, 73, 0.34) 0%, rgba(224, 32, 43, 0.2) 34%, rgba(104, 11, 18, 0.1) 56%, transparent 76%),
        radial-gradient(ellipse 66% 58% at 50% 55%, rgba(224, 32, 43, 0.18) 0%, rgba(104, 11, 18, 0.2) 40%, transparent 76%);
    opacity: 0.9;
    transform-origin: 54% 48%;
    animation: hero-backlight-pulse 8s ease-in-out infinite alternate;
}

.hero-visual::after {
    content: "";
    position: absolute;
    z-index: 1;
    right: 2%;
    bottom: 10%;
    left: 0;
    height: 24%;
    pointer-events: none;
    background: radial-gradient(ellipse 58% 76% at 54% 50%, rgba(255, 61, 73, 0.2), rgba(104, 11, 18, 0.12) 44%, transparent 74%);
    opacity: 0.78;
}

.hero-characters {
    position: absolute;
    z-index: 2;
    right: 50%;
    bottom: 15%;
    width: min(72rem, 68vw);
    max-width: none;
    max-height: 100%;
    object-fit: contain;
    object-position: bottom center;
    filter:
        drop-shadow(0 0 0.65rem rgba(255, 61, 73, 0.28))
        drop-shadow(0 0 2.8rem rgba(224, 32, 43, 0.2))
        drop-shadow(0 1.8rem 2.2rem rgba(0, 0, 0, 0.52));
    transform: translate3d(50%, var(--hero-shift, 0), 0);
    will-change: transform;
}

.floating-card,
.project-status {
    position: absolute;
    z-index: 4;
    border: 1px solid var(--line);
    border-radius: var(--radius-control);
    background: rgba(8, 10, 15, 0.94);
    box-shadow: var(--shadow-panel);
}

.floating-card {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.65rem 0.85rem;
}

.project-status {
    top: 20%;
    right: -18rem;
    left: auto;
    width: 15.5rem;
    display: grid;
    gap: 0.65rem;
    overflow: hidden;
    padding: 1rem;
}

.project-status::before {
    content: "";
    position: absolute;
    top: 0;
    right: var(--panel-line-inset);
    left: var(--panel-line-inset);
    height: 1px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent-hot), transparent);
    opacity: 0.9;
}

.project-status::after {
    content: "";
    position: absolute;
    top: var(--panel-line-offset);
    bottom: var(--panel-line-offset);
    left: 0;
    width: 1px;
    background: linear-gradient(180deg, rgba(255, 61, 73, 0), rgba(255, 61, 73, 0.74) 18%, rgba(104, 11, 18, 0.58) 78%, rgba(255, 61, 73, 0));
}

.project-status__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.project-status__head > span:last-child {
    display: grid;
    justify-items: end;
    gap: 0.2rem;
}

.project-status__icon {
    width: 2.4rem;
    height: 2.4rem;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 61, 73, 0.34);
    border-radius: var(--radius-control);
    color: var(--accent-hot);
    background: radial-gradient(circle at 50% 20%, rgba(255, 61, 73, 0.18), rgba(104, 11, 18, 0.12));
}

.project-status__icon svg {
    width: 1.25rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.project-status small {
    color: var(--muted);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.project-status__head b {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--success);
    font-size: 0.62rem;
    letter-spacing: 0.12em;
}

.project-status__head b i {
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 0.2rem rgba(110, 231, 183, 0.1);
}

.project-status > strong {
    margin-top: 0.2rem;
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 900;
    line-height: 0.95;
    text-transform: uppercase;
}

.project-status > p {
    margin: 0;
    color: var(--muted-strong);
    font-size: var(--font-small);
    font-weight: 700;
}

.project-status__track {
    height: 0.22rem;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.project-status__track span {
    width: 42%;
    height: 100%;
    display: block;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--accent-deep), var(--accent-hot));
}

.project-status footer {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    padding-top: 0.65rem;
    border-top: 1px solid var(--line-soft);
    color: var(--muted);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.project-status footer b {
    color: var(--text);
}

.floating-card--bottom {
    right: 22%;
    bottom: 10%;
}

.floating-card p {
    display: grid;
    margin: 0;
}

.floating-card small {
    color: var(--muted);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.floating-card strong {
    color: var(--text);
    font-size: var(--font-small);
}

.floating-card > b {
    color: var(--accent-hot);
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 900;
}

.status-dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 0.25rem rgba(110, 231, 183, 0.1);
}

.scroll-cue {
    position: absolute;
    z-index: 4;
    bottom: 1.5rem;
    left: 50%;
    display: grid;
    justify-items: center;
    gap: 0.45rem;
    color: var(--muted);
    transform: translateX(-50%);
}

.scroll-cue span {
    width: 1px;
    height: 2.3rem;
    background: linear-gradient(180deg, var(--accent-hot), transparent);
}

.scroll-cue small {
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.signal-bar {
    position: relative;
    z-index: 5;
    border-bottom: 1px solid var(--line-soft);
    background: rgba(9, 11, 16, 0.92);
}

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

.signal-grid > span {
    display: flex;
    min-height: 5rem;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 1rem;
    border-right: 1px solid var(--line-soft);
}

.signal-grid > span:first-child {
    border-left: 1px solid var(--line-soft);
}

.signal-grid svg {
    width: 1.35rem;
    height: 1.35rem;
    fill: none;
    stroke: var(--accent-hot);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.signal-grid b {
    font-size: var(--font-small);
    font-weight: 800;
    text-transform: uppercase;
}

.section {
    position: relative;
    padding-block: var(--section-space);
}

.vision {
    background:
        linear-gradient(rgba(255, 255, 255, 0.016) 1px, transparent 1px) 0 0 / 7rem 7rem,
        linear-gradient(90deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px) 0 0 / 7rem 7rem,
        radial-gradient(circle at 88% 18%, rgba(224, 32, 43, 0.1), transparent 28rem),
        radial-gradient(circle at 8% 84%, rgba(104, 11, 18, 0.1), transparent 25rem),
        rgba(6, 8, 12, 0.34);
}

.split-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(22rem, 0.72fr);
    align-items: end;
    gap: var(--space-6);
}

.split-heading h2,
.section-heading h2,
.narrative-copy h2,
.development-copy h2,
.faq-heading h2,
.community-panel h2 {
    margin: 0.55rem 0 0;
    color: var(--text);
    font-family: var(--font-display);
    font-size: var(--font-section-title);
    font-weight: 900;
    line-height: 0.94;
    text-transform: uppercase;
}

.lead-copy {
    padding-left: var(--space-5);
    border-left: 1px solid var(--line);
}

.lead-copy p {
    margin: 0;
    color: var(--muted-strong);
    font-size: var(--font-body-large);
}

.lead-copy p + p {
    margin-top: 1rem;
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-3);
    margin-top: var(--space-6);
}

.panel {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-panel);
    background: var(--panel);
    box-shadow: var(--shadow-panel);
}

.panel::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    right: var(--panel-line-inset);
    left: var(--panel-line-inset);
    height: 1px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent-hot), transparent);
    opacity: 0.9;
    pointer-events: none;
}

.panel::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: var(--panel-line-offset);
    bottom: var(--panel-line-offset);
    left: 0;
    width: 1px;
    border-radius: 0 999px 999px 0;
    background: linear-gradient(180deg, rgba(255, 61, 73, 0), rgba(255, 61, 73, 0.74) 18%, rgba(104, 11, 18, 0.58) 78%, rgba(255, 61, 73, 0));
    pointer-events: none;
}

.insight-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    background:
        radial-gradient(circle at 92% 8%, rgba(224, 32, 43, 0.12), transparent 36%),
        var(--panel);
    transition: border-color 240ms ease, box-shadow 240ms ease;
}

.insight-card:hover {
    border-color: rgba(255, 61, 73, 0.44);
    box-shadow: 0 1.6rem 3.8rem rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(224, 32, 43, 0.08);
}

.insight-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #080a0f;
}

.insight-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(6, 8, 12, 0.84));
    pointer-events: none;
}

.insight-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.86) contrast(1.04) brightness(0.82);
    transition: transform 520ms cubic-bezier(0.2, 0.75, 0.2, 1), filter 320ms ease;
}

.insight-card:hover .insight-card__media img {
    transform: scale(1.035);
    filter: saturate(1) contrast(1.04) brightness(0.9);
}

.insight-card__media > span {
    position: absolute;
    z-index: 1;
    right: 1rem;
    bottom: 0.9rem;
    left: 1rem;
    width: fit-content;
    padding: 0.38rem 0.58rem;
    border: 1px solid rgba(255, 61, 73, 0.38);
    border-radius: 999px;
    background: rgba(8, 10, 15, 0.88);
    color: var(--accent-hot);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.insight-card__content {
    display: flex;
    min-height: 13rem;
    flex: 1;
    flex-direction: column;
    padding: var(--space-4);
}

.insight-card h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: var(--font-card-title);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.insight-card blockquote {
    margin: 1rem 0 0;
    padding-left: 1rem;
    border-left: 1px solid rgba(255, 61, 73, 0.62);
    color: var(--muted-strong);
    font-size: var(--font-small);
    font-style: normal;
}

.insight-card__content small {
    margin-top: auto;
    padding-top: 1.15rem;
    color: rgba(245, 245, 247, 0.42);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.value-card > span {
    position: absolute;
    top: 0.75rem;
    right: 0.9rem;
    color: rgba(245, 245, 247, 0.16);
    font-family: var(--font-display);
    font-size: 2.3rem;
    font-weight: 900;
}

.world,
.values,
.faq {
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    background:
        linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px) 0 0 / 8rem 8rem,
        linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px) 0 0 / 8rem 8rem,
        radial-gradient(circle at 10% 20%, rgba(224, 32, 43, 0.085), transparent 27rem),
        radial-gradient(circle at 92% 76%, rgba(104, 11, 18, 0.12), transparent 25rem),
        rgba(8, 10, 15, 0.72);
}

.section-heading {
    max-width: 54rem;
}

.section-heading > p,
.faq-heading > p {
    max-width: 39rem;
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: var(--font-body-large);
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.section-heading--center > p {
    margin-inline: auto;
}

.world-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: var(--space-6);
}

.world-card {
    min-height: 33rem;
    display: flex;
    flex-direction: column;
    isolation: isolate;
    padding: 0;
    border-color: rgba(255, 255, 255, 0.11);
    background: #080a0f;
    box-shadow: 0 1.35rem 3.4rem rgba(0, 0, 0, 0.3);
    transition: border-color 300ms ease, box-shadow 300ms ease, transform 360ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.world-card:hover {
    border-color: rgba(255, 61, 73, 0.56);
    box-shadow: 0 1.8rem 4rem rgba(0, 0, 0, 0.42), inset 0 0 0 1px rgba(255, 61, 73, 0.08);
    transform: translateY(-0.4rem);
}

.world-card__art {
    position: relative;
    z-index: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    flex: 0 0 auto;
    object-fit: contain;
    object-position: center;
    filter: saturate(0.72) contrast(1.06) brightness(0.75);
    transition: filter 280ms ease;
}

.world-card__shade {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    left: 0;
    height: auto;
    aspect-ratio: 16 / 9;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(5, 7, 11, 0.04) 0, rgba(5, 7, 11, 0.08) 56%, rgba(7, 9, 14, 0.86) 87%, #080a0f 100%),
        linear-gradient(110deg, rgba(104, 11, 18, 0.3), transparent 48%),
        linear-gradient(90deg, rgba(4, 6, 10, 0.18), transparent 45%);
    overflow: hidden;
}

.world-card__shade::after {
    content: "";
    position: absolute;
    inset: -30% -65%;
    background: linear-gradient(112deg, transparent 41%, rgba(255, 255, 255, 0.075) 49%, rgba(255, 61, 73, 0.05) 52%, transparent 60%);
    transform: translateX(-38%);
    transition: transform 800ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.world-card:hover .world-card__art {
    filter: saturate(0.9) contrast(1.08) brightness(0.82);
}

.world-card:hover .world-card__shade::after {
    transform: translateX(38%);
}

.card-icon {
    position: absolute;
    z-index: 3;
    top: 1.25rem;
    left: 1.25rem;
    width: 3.55rem;
    height: 3.55rem;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 61, 73, 0.42);
    border-radius: 0.65rem;
    background:
        linear-gradient(145deg, rgba(224, 32, 43, 0.42), rgba(104, 11, 18, 0.16)),
        rgba(8, 10, 15, 0.9);
    box-shadow: 0 0.8rem 1.8rem rgba(0, 0, 0, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.035);
    transition: border-color 280ms ease, background 280ms ease, box-shadow 280ms ease, transform 360ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.card-icon::before {
    content: "";
    position: absolute;
    inset: 0.32rem;
    border: 1px solid rgba(255, 255, 255, 0.085);
    border-radius: 0.45rem;
    pointer-events: none;
}

.card-icon::after {
    content: "";
    position: absolute;
    top: 0.4rem;
    right: 0.4rem;
    width: 0.28rem;
    height: 0.28rem;
    border-radius: 50%;
    background: var(--accent-hot);
    box-shadow: 0 0 0.55rem rgba(255, 61, 73, 0.75);
}

.card-icon svg {
    position: relative;
    z-index: 1;
    width: 1.75rem;
    height: 1.75rem;
    fill: none;
    stroke: var(--text);
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: color 280ms ease, transform 360ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.world-card:hover .card-icon {
    border-color: rgba(255, 61, 73, 0.72);
    background:
        linear-gradient(145deg, rgba(224, 32, 43, 0.58), rgba(104, 11, 18, 0.22)),
        rgba(8, 10, 15, 0.92);
    box-shadow: 0 1rem 2.2rem rgba(0, 0, 0, 0.4), 0 0 1.4rem rgba(224, 32, 43, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.045);
    transform: translateY(-0.18rem) rotate(-1deg);
}

.world-card:hover .card-icon svg {
    color: #fff;
    transform: scale(1.07);
}

.world-card__content {
    position: relative;
    z-index: 3;
    min-height: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 1.5rem 1.5rem 1.45rem;
}

.world-card__category,
.journey-list li div > span,
.roadmap-item b {
    display: block;
    color: var(--accent-hot);
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.world-card__category {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.world-card__category::before {
    content: "";
    width: 1.35rem;
    height: 1px;
    background: var(--accent-hot);
    box-shadow: 0 0 0.75rem rgba(255, 61, 73, 0.5);
}

.world-card__content h3,
.journey-list h3,
.value-card h3 {
    margin: 0.35rem 0 0;
    font-family: var(--font-display);
    font-size: var(--font-card-title);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.world-card__content h3 {
    min-height: 3.3rem;
}

.world-card__content > p {
    min-height: 4.75rem;
    margin: 0.8rem 0 1rem;
    color: rgba(245, 245, 247, 0.7);
    font-size: var(--font-small);
}

.world-card__content ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: auto 0 0;
    padding: 0.9rem 0 0;
    border-top: 1px solid var(--line-soft);
    list-style: none;
}

.world-card__content li {
    padding: 0.36rem 0.58rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(6, 8, 12, 0.62);
    color: rgba(245, 245, 247, 0.74);
    font-size: 0.66rem;
    font-weight: 800;
    line-height: 1.3;
}

.narrative {
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 48%, rgba(104, 11, 18, 0.16), transparent 31rem),
        linear-gradient(122deg, transparent 0 65%, rgba(255, 61, 73, 0.026) 65% 65.1%, transparent 65.1%),
        rgba(6, 8, 12, 0.3);
}

.narrative::before {
    content: "LUNAV";
    position: absolute;
    top: 50%;
    left: -0.05em;
    color: rgba(255, 255, 255, 0.018);
    font-family: var(--font-display);
    font-size: 18rem;
    font-weight: 900;
    line-height: 1;
    transform: translateY(-50%);
    pointer-events: none;
}

.narrative-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(28rem, 1fr);
    align-items: center;
    gap: var(--space-6);
}

.narrative-copy p {
    max-width: 34rem;
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: var(--font-body-large);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 1.5rem;
    color: var(--text);
    font-size: var(--font-small);
    font-weight: 900;
    text-transform: uppercase;
}

.text-link span {
    color: var(--accent-hot);
    font-size: 1.15rem;
    transition: transform 160ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
    transform: translateX(0.25rem);
}

.text-link:focus-visible {
    outline: 1px solid var(--accent-hot);
    outline-offset: 0.3rem;
}

.journey-list {
    display: grid;
    gap: var(--space-3);
    margin: 0;
    padding: 0;
    list-style: none;
}

.journey-list li {
    display: grid;
    grid-template-columns: 4.5rem minmax(0, 1fr);
    align-items: start;
    gap: var(--space-3);
    padding: var(--space-4);
}

.journey-list li > b {
    color: rgba(255, 61, 73, 0.72);
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
}

.journey-list li div > span {
    margin: 0;
}

.journey-list p {
    margin: 0.6rem 0 0;
    color: var(--muted);
    font-size: var(--font-small);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-3);
    margin-top: var(--space-6);
}

.value-card {
    min-height: 16rem;
    padding: var(--space-4);
    background:
        radial-gradient(circle at 88% 8%, rgba(224, 32, 43, 0.1), transparent 36%),
        var(--panel);
}

.value-card svg {
    width: 2.6rem;
    height: 2.6rem;
    margin-bottom: 1.6rem;
    fill: none;
    stroke: var(--accent-hot);
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.value-card p {
    margin: 0.7rem 0 0;
    color: var(--muted);
    font-size: var(--font-small);
}

.development {
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 54%, rgba(224, 32, 43, 0.08), transparent 27rem),
        repeating-linear-gradient(135deg, transparent 0 5rem, rgba(255, 255, 255, 0.012) 5rem calc(5rem + 1px), transparent calc(5rem + 1px) 10rem),
        rgba(7, 9, 13, 0.44);
}

.development::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: -18rem;
    bottom: -18rem;
    width: 38rem;
    height: 38rem;
    border: 1px solid rgba(255, 61, 73, 0.08);
    border-radius: 50%;
    box-shadow: inset 0 0 6rem rgba(104, 11, 18, 0.08);
}

.development-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.68fr) minmax(30rem, 1fr);
    align-items: center;
    gap: var(--space-6);
}

.development-copy > p {
    max-width: 35rem;
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: var(--font-body-large);
}

.development-status {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.6rem;
    padding: 0.7rem 0.9rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-control);
    background: var(--panel-soft);
}

.development-status > i {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 0.28rem rgba(110, 231, 183, 0.1);
}

.development-status span {
    display: grid;
}

.development-status small {
    color: var(--muted);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.11em;
}

.development-status strong {
    font-size: var(--font-small);
}

.roadmap {
    display: grid;
    padding: 0.55rem;
}

.roadmap-item {
    display: grid;
    grid-template-columns: 3.4rem minmax(0, 1fr) auto;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    border-bottom: 1px solid var(--line-soft);
}

.roadmap-item:last-child {
    border-bottom: 0;
}

.roadmap-item > span {
    width: 2.8rem;
    height: 2.8rem;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-control);
    color: var(--muted);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 900;
}

.roadmap-item.is-active > span {
    border-color: rgba(255, 61, 73, 0.54);
    background: rgba(224, 32, 43, 0.12);
    color: var(--text);
}

.roadmap-item b {
    margin: 0 0 0.2rem;
}

.roadmap-item strong,
.roadmap-item p {
    display: block;
}

.roadmap-item strong {
    font-size: var(--font-small);
}

.roadmap-item p {
    margin: 0.2rem 0 0;
    color: var(--muted);
    font-size: 0.7rem;
}

.roadmap-item em {
    padding: 0.35rem 0.5rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.58rem;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.roadmap-item.is-active em {
    border-color: rgba(110, 231, 183, 0.26);
    background: rgba(110, 231, 183, 0.07);
    color: var(--success);
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.65fr) minmax(30rem, 1fr);
    align-items: start;
    gap: var(--space-6);
}

.faq-heading {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
}

.faq-list {
    display: grid;
    gap: var(--space-2);
}

.faq-item h3 {
    margin: 0;
}

.faq-item button {
    width: 100%;
    min-height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border: 0;
    background: none;
    color: var(--text);
    font-size: var(--font-small);
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.faq-item button:focus-visible {
    outline: 1px solid rgba(255, 61, 73, 0.52);
    outline-offset: -0.25rem;
}

.faq-item button i {
    position: relative;
    width: 1.4rem;
    height: 1.4rem;
    flex: 0 0 auto;
}

.faq-item button i::before,
.faq-item button i::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.9rem;
    height: 1px;
    background: var(--accent-hot);
    transform: translate(-50%, -50%);
    transition: transform 160ms ease;
}

.faq-item button i::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open button i::after {
    transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
    padding: 0 1.2rem 1.25rem;
}

.faq-answer[hidden] {
    display: none;
}

.faq-answer p {
    margin: 0;
    padding-top: 1rem;
    border-top: 1px solid var(--line-soft);
    color: var(--muted);
    font-size: var(--font-small);
}

.community {
    padding-top: calc(var(--section-space) * 0.7);
}

.community-panel {
    min-height: 24rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: var(--space-5);
    padding: clamp(2rem, 4vw, 4.5rem);
    background:
        linear-gradient(90deg, rgba(8, 10, 15, 0.98), rgba(8, 10, 15, 0.83)),
        radial-gradient(circle at 90% 10%, rgba(224, 32, 43, 0.28), transparent 35%);
}

.community-panel > div:not(.community-watermark) {
    position: relative;
    z-index: 2;
}

.community-panel p {
    max-width: 42rem;
    margin: 1rem 0 0;
    color: var(--muted-strong);
    font-size: var(--font-body-large);
}

.community-watermark {
    position: absolute;
    right: -0.02em;
    bottom: -0.2em;
    color: rgba(255, 255, 255, 0.025);
    font-family: var(--font-display);
    font-size: 18rem;
    font-weight: 900;
    line-height: 0.8;
    pointer-events: none;
}

.community-actions {
    display: grid;
    justify-items: stretch;
    gap: 0.65rem;
}

.community-actions small {
    max-width: 18rem;
    color: var(--muted);
    font-size: 0.62rem;
    line-height: 1.45;
    text-align: center;
}

.community-actions code {
    color: var(--muted-strong);
    font-family: inherit;
}

.site-footer {
    border-top: 1px solid var(--line-soft);
    background: #05070a;
}

.footer-main {
    min-height: 10rem;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: var(--space-5);
}

.footer-main > p {
    max-width: 30rem;
    margin: 0;
    color: var(--muted);
    font-size: var(--font-small);
}

.footer-main nav {
    display: flex;
    gap: 1rem;
}

.footer-main nav a {
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    transition: color 160ms ease;
}

.footer-main nav a:hover,
.footer-main nav a:focus-visible {
    color: var(--accent-hot);
    outline: none;
}

.footer-bottom {
    min-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid var(--line-soft);
    color: rgba(245, 245, 247, 0.4);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.site-notice {
    position: fixed;
    z-index: 500;
    right: 1.2rem;
    bottom: 1.2rem;
    width: min(90vw, 24rem);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem;
    border: 1px solid rgba(255, 61, 73, 0.48);
    border-radius: var(--radius-panel);
    background: rgba(8, 10, 15, 0.98);
    box-shadow: var(--shadow-panel);
    animation: notice-in 180ms ease both;
}

.site-notice[hidden] {
    display: none;
}

.site-notice img {
    width: 2.75rem;
    height: 2.75rem;
    object-fit: contain;
}

.site-notice span {
    display: grid;
}

.site-notice strong {
    font-size: var(--font-small);
}

.site-notice small {
    margin-top: 0.12rem;
    color: var(--muted);
    font-size: 0.64rem;
    line-height: 1.35;
}

.js .reveal {
    opacity: 0;
    transform: translateY(1.55rem);
    transition: opacity 720ms ease, transform 760ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

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

.js .world-card.reveal {
    transition:
        opacity 720ms ease,
        transform 480ms cubic-bezier(0.2, 0.75, 0.2, 1),
        border-color 300ms ease,
        box-shadow 300ms ease;
}

@keyframes hero-accent-shift {
    0% { transform: translate3d(-2%, -0.5%, 0); opacity: 0.65; }
    100% { transform: translate3d(1.5%, 0.75%, 0); opacity: 0.84; }
}

@keyframes hero-backlight-pulse {
    0% { opacity: 0.78; transform: scale(0.98); }
    100% { opacity: 1; transform: scale(1.025); }
}

@keyframes notice-in {
    from { opacity: 0; transform: translateY(0.8rem); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes ambient-drift {
    0% { transform: translate3d(-1.5%, -1%, 0) scale(1); }
    55% { transform: translate3d(1.2%, 0.8%, 0) scale(1.025); }
    100% { transform: translate3d(0.4%, -0.6%, 0) scale(1.01); }
}

@media (max-width: 100rem) and (min-width: 75.001rem) {
    .project-status {
        top: auto;
        right: auto;
        bottom: 12%;
        left: -2rem;
    }
}

@media (max-width: 75rem) {
    :root {
        --container: min(92%, 72rem);
        --font-hero: 4.6rem;
        --font-section-title: 3.1rem;
    }

    .site-nav {
        gap: 1rem;
    }

    .hero-inner {
        grid-template-columns: minmax(0, 0.95fr) minmax(21rem, 0.7fr);
    }

    .hero-characters {
        right: 50%;
        width: min(66rem, 76vw);
    }

    .project-status {
        top: auto;
        left: auto;
        right: 0;
        bottom: 12%;
    }

    .floating-card--bottom {
        right: 12%;
    }

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

    .world-card {
        min-height: 25rem;
    }

    .development-layout,
    .faq-layout {
        grid-template-columns: minmax(0, 0.72fr) minmax(26rem, 1fr);
    }
}

@media (max-width: 62rem) {
    .site-nav,
    .header-cta {
        display: none;
    }

    .nav-toggle {
        display: grid;
        gap: 0.32rem;
        margin-left: auto;
    }

    .nav-open .nav-toggle span:nth-child(1) {
        transform: translateY(0.38rem) rotate(45deg);
    }

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

    .nav-open .nav-toggle span:nth-child(3) {
        transform: translateY(-0.38rem) rotate(-45deg);
    }

    .nav-open .site-nav {
        position: fixed;
        top: var(--header-height);
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        align-content: start;
        gap: 0;
        padding: 2rem 5%;
        border-top: 1px solid var(--line-soft);
        background: rgba(6, 8, 12, 0.985);
    }

    .nav-open .site-nav a {
        padding: 1.15rem 0;
        border-bottom: 1px solid var(--line-soft);
        font-family: var(--font-display);
        font-size: 1.8rem;
        font-weight: 900;
    }

    .nav-open .site-nav a::after {
        display: none;
    }

    .hero {
        min-height: max(40rem, calc(100svh - 5.125rem));
    }

    .hero-inner {
        grid-template-columns: minmax(0, 1fr) 20rem;
    }

    .hero-copy {
        top: 0;
        padding-block: 5rem 4rem;
    }

    .hero-characters {
        right: 50%;
        width: 46rem;
        opacity: 0.82;
    }

    .hero-visual {
        min-height: 34rem;
    }

    .hero-visual::before {
        right: -18%;
        left: -24%;
        opacity: 0.7;
    }

    .project-status,
    .floating-card {
        display: none;
    }

    .split-heading,
    .narrative-layout,
    .development-layout,
    .faq-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .lead-copy {
        padding: var(--space-4) 0 0;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .narrative-copy,
    .development-copy,
    .faq-heading {
        max-width: 48rem;
    }

    .faq-heading {
        position: static;
    }

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

    .community-panel {
        grid-template-columns: minmax(0, 1fr);
    }

    .community-actions {
        width: min(100%, 22rem);
    }

    .footer-main {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .footer-main nav {
        grid-column: 1 / -1;
        padding-bottom: 1.5rem;
    }
}

@media (max-width: 44rem) {
    :root {
        --container: min(90%, 40rem);
        --section-space: 5rem;
        --font-hero: 3rem;
        --font-section-title: 2.65rem;
        --font-card-title: 1.5rem;
    }

    .hero {
        min-height: max(46rem, calc(100svh - 8.5rem));
        align-items: end;
    }

    .hero::before {
        background: linear-gradient(180deg, rgba(6, 8, 12, 0.12), rgba(6, 8, 12, 0.78) 50%, var(--background) 92%);
    }

    .hero-left-accent {
        width: 92vw;
        opacity: 0.38;
    }

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

    .hero-copy {
        position: relative;
        z-index: 4;
        max-width: none;
        padding-block: 21.5rem 3.5rem;
    }

    .hero-copy > p {
        max-width: 33rem;
        font-size: var(--font-body);
    }

    .hero-visual {
        position: absolute;
        inset: var(--header-height) 0 auto;
        width: 100%;
        height: 16.5rem;
        min-height: 0;
    }

    .hero-characters {
        right: 50%;
        bottom: 0.5rem;
        width: 31rem;
        max-height: 16.5rem;
        opacity: 0.76;
        transform: translateX(50%) translateY(var(--hero-shift, 0));
    }

    .hero-visual::before {
        top: -8%;
        right: -12%;
        bottom: -4%;
        left: -12%;
        opacity: 0.58;
    }

    .hero-visual::after {
        right: 4%;
        bottom: -2%;
        left: 4%;
        opacity: 0.52;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-stats {
        gap: 0.45rem;
        margin-top: 1.35rem;
    }

    .hero-stats article {
        min-height: 4.6rem;
        padding: 0.72rem 0.35rem;
    }

    .hero-stats strong {
        font-size: 1.2rem;
    }

    .hero-stats span {
        font-size: 0.58rem;
        text-align: center;
    }

    .scroll-cue {
        display: none;
    }

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

    .signal-grid > span,
    .signal-grid > span:first-child {
        min-height: 4.2rem;
        justify-content: flex-start;
        border: 0;
        border-bottom: 1px solid var(--line-soft);
    }

    .signal-grid > span:nth-child(odd) {
        border-right: 1px solid var(--line-soft);
    }

    .signal-grid b {
        font-size: 0.68rem;
    }

    .insight-grid,
    .world-grid,
    .values-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .insight-card__content {
        min-height: 11.5rem;
    }

    .world-card {
        min-height: 24rem;
    }

    .narrative::before {
        font-size: 9rem;
    }

    .journey-list li {
        grid-template-columns: 3rem minmax(0, 1fr);
    }

    .roadmap-item {
        grid-template-columns: 2.8rem minmax(0, 1fr);
    }

    .roadmap-item > em {
        display: none;
    }

    .community-panel {
        min-height: 26rem;
        align-content: center;
    }

    .community-watermark {
        font-size: 11rem;
    }

    .footer-main {
        grid-template-columns: minmax(0, 1fr);
        padding-block: 2.5rem;
    }

    .footer-main nav {
        grid-column: auto;
        flex-wrap: wrap;
        padding-bottom: 0;
    }

    .footer-bottom {
        min-height: 5rem;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
    }

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