@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;700&display=swap');

:root {
    --bg: #04070b;
    --bg-2: #071017;
    --surface: rgba(10, 16, 22, 0.9);
    --surface-2: rgba(16, 26, 34, 0.92);
    --surface-3: rgba(22, 35, 46, 0.88);
    --text: #edf4f7;
    --muted: #97a7b1;
    --brand: #59d7ff;
    --brand-2: #67efc8;
    --brand-soft: rgba(89, 215, 255, 0.16);
    --border: rgba(96, 140, 160, 0.26);
    --border-strong: rgba(111, 241, 255, 0.48);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --max-width: 1440px;
    --ease-out-premium: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background:
        radial-gradient(circle at 12% -8%, rgba(21, 55, 97, 0.52) 0%, transparent 34%),
        radial-gradient(circle at 88% 12%, rgba(11, 74, 73, 0.36) 0%, transparent 28%),
        linear-gradient(180deg, #020406 0%, #05090d 22%, #071018 100%);
    color: var(--text);
    line-height: 1.65;
    min-height: 100vh;
    letter-spacing: -0.01em;
    display: flex;
}

@keyframes floatOrbs {
    0% {
        transform: translate3d(-2%, -1%, 0) scale(1);
    }
    50% {
        transform: translate3d(2.5%, 2%, 0) scale(1.04);
    }
    100% {
        transform: translate3d(-2%, -1%, 0) scale(1);
    }
}

@keyframes pulseGlow {
    0%,
    100% {
        opacity: 0.62;
    }
    50% {
        opacity: 0.95;
    }
}

@keyframes driftBeam {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.72;
    }
    50% {
        transform: translate3d(2%, -2%, 0) scale(1.04);
        opacity: 1;
    }
}

a {
    color: inherit;
}

.page-shell {
    position: relative;
    min-height: 100vh;
    overflow-x: clip;
    isolation: isolate;
    width: 100%;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

.page-shell::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 12%),
        repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.018) 0, rgba(255, 255, 255, 0.018) 1px, transparent 1px, transparent 4px);
    opacity: 0.22;
    z-index: -1;
}

.page-shell::after {
    content: '';
    position: fixed;
    inset: 4rem -12rem auto auto;
    width: 44rem;
    height: 44rem;
    pointer-events: none;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(91, 239, 200, 0.13), transparent 46%),
        radial-gradient(circle, rgba(56, 154, 255, 0.1), transparent 58%);
    filter: blur(24px);
    opacity: 0.8;
    z-index: -2;
    animation: driftBeam 14s ease-in-out infinite;
}

.bg-grid {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(to right, rgba(126, 186, 207, 0.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(126, 186, 207, 0.06) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(circle at 50% 20%, black, transparent 82%);
    z-index: -2;
}

.bg-grid::before,
.bg-grid::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    animation: floatOrbs 16s ease-in-out infinite;
}

.bg-grid::before {
    width: 32rem;
    height: 32rem;
    left: -10rem;
    top: -9rem;
    background: radial-gradient(circle, rgba(42, 140, 255, 0.18), transparent 68%);
}

.bg-grid::after {
    width: 34rem;
    height: 34rem;
    right: -10rem;
    bottom: -11rem;
    background: radial-gradient(circle, rgba(61, 228, 194, 0.16), transparent 70%);
    animation-duration: 20s;
}

.container {
    width: min(100% - 2rem, var(--max-width));
    margin-inline: auto;
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.8rem 0 0.3rem;
    border-bottom: 0;
    background: linear-gradient(180deg, rgba(2, 6, 9, 0.9), rgba(2, 6, 9, 0.24));
    backdrop-filter: blur(12px);
}

.site-nav.scrolled {
    box-shadow: none;
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
    gap: 1rem;
    padding: 0.55rem 0.7rem 0.55rem 0.85rem;
    border: 1px solid rgba(94, 137, 157, 0.22);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(7, 12, 16, 0.95), rgba(4, 7, 10, 0.98)),
        linear-gradient(135deg, rgba(74, 215, 255, 0.05), transparent 44%, rgba(103, 239, 200, 0.05));
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.95rem;
    text-decoration: none;
}

.brand img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 0 0 1px rgba(140, 220, 255, 0.08), 0 10px 30px rgba(0, 0, 0, 0.28);
}

.brand-copy strong {
    display: block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.brand-copy span {
    display: block;
    color: var(--muted);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.73rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(16, 26, 34, 0.96), rgba(9, 15, 20, 0.96));
    color: var(--text);
    cursor: pointer;
    box-shadow: inset 0 0 0 1px rgba(122, 215, 255, 0.05);
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 3px auto;
    background: var(--text);
    transition: transform 0.25s var(--ease-out-premium), opacity 0.25s var(--ease-out-premium);
}

.menu-toggle.is-active span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--muted);
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 600;
    font-size: 0.83rem;
    letter-spacing: 0.02em;
    min-height: 44px;
    padding: 0.56rem 0.9rem;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
    background: linear-gradient(180deg, rgba(20, 35, 48, 0.92), rgba(11, 19, 26, 0.92));
    border-color: rgba(93, 233, 255, 0.2);
    box-shadow: inset 0 0 0 1px rgba(95, 201, 255, 0.1);
}

.nav-links a.active {
    border-color: rgba(93, 233, 255, 0.42);
    box-shadow: inset 0 0 0 1px rgba(142, 214, 255, 0.18), 0 0 0 1px rgba(34, 62, 71, 0.32);
}

.btn,
button,
input[type='submit'] {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: 14px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.88rem 1.2rem;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    transition: transform 0.26s var(--ease-out-premium), box-shadow 0.26s var(--ease-out-premium),
        filter 0.26s var(--ease-out-premium), border-color 0.26s var(--ease-out-premium);
}

.btn-primary,
button,
input[type='submit'] {
    color: #041016;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
    box-shadow: 0 10px 34px rgba(74, 215, 255, 0.24);
}

.btn-secondary {
    color: var(--text);
    background: linear-gradient(180deg, rgba(19, 30, 39, 0.92), rgba(10, 16, 22, 0.96));
    border-color: var(--border);
    box-shadow: inset 0 0 0 1px rgba(125, 213, 255, 0.06);
}

.btn:hover,
button:hover,
input[type='submit']:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
}

.hero {
    padding: 5.1rem 0 3rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(10, 39, 74, 0.28), transparent 38%, rgba(23, 107, 88, 0.18));
    mask-image: radial-gradient(circle at 50% 18%, black, transparent 72%);
    animation: pulseGlow 8s ease-in-out infinite;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.42fr) minmax(360px, 0.82fr);
    gap: 1.4rem;
    align-items: stretch;
}

.hero-copy,
.hero-panel {
    background:
        linear-gradient(180deg, rgba(14, 22, 29, 0.96), rgba(7, 12, 17, 0.98)),
        linear-gradient(135deg, rgba(53, 185, 255, 0.05), transparent 38%, rgba(88, 255, 210, 0.04) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(1.6rem, 3vw, 2.8rem);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(14px);
}

.hero-copy::before,
.hero-panel::before,
.card::after,
.section-alt .container::before,
.form-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 14%);
    opacity: 0.6;
}

.hero-copy::after,
.hero-panel::after {
    content: '';
    position: absolute;
    inset: auto -20% -52% auto;
    width: 18rem;
    height: 18rem;
    background: radial-gradient(circle, rgba(90, 205, 255, 0.16), transparent 72%);
    pointer-events: none;
}

.hero-copy-launcher {
    min-height: 720px;
    display: grid;
    align-content: start;
}

.hero-copy-launcher::before {
    content: 'LUMORIX';
    position: absolute;
    right: -0.6rem;
    bottom: -0.3rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: clamp(4.6rem, 11vw, 10rem);
    font-weight: 700;
    letter-spacing: -0.08em;
    color: rgba(132, 218, 255, 0.045);
    line-height: 0.88;
    pointer-events: none;
}

.eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.76rem;
    color: #8bdfff;
}

h1,
h2,
h3 {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.04;
    margin: 0;
    letter-spacing: -0.055em;
    text-wrap: balance;
}

h1 {
    margin-top: 0.8rem;
    font-size: clamp(2.4rem, 5vw, 5.25rem);
    font-weight: 700;
}

.hero-title-accent {
    background: linear-gradient(110deg, #f2f6ff, #c9eeff 60%, #b5ffd9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline;
}

h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.8rem);
    font-weight: 700;
}

h3 {
    font-size: 1.24rem;
    font-weight: 700;
}

p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
}

.hero-copy p {
    margin-top: 1rem;
    max-width: 62ch;
    font-size: 1.05rem;
    line-height: 1.75;
}

.hero-title {
    margin-top: 1rem;
    max-width: 10.5ch;
}

.hero-title-line {
    display: block;
}

.hero-title-accent {
    background: linear-gradient(125deg, #ffffff 0%, #def5ff 34%, #7de8ff 68%, #85ffcf 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 32px rgba(103, 239, 200, 0.08);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.hero-actions .btn {
    min-width: 190px;
    min-height: 58px;
    font-size: 0.98rem;
}

.hero-proof-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1rem;
}

.hero-proof {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.42rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(100, 150, 172, 0.24);
    background: rgba(14, 23, 31, 0.72);
    color: #d7e9ef;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.stat-list {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.25rem;
}

.stat-item {
    padding: 0.9rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(107, 147, 167, 0.22);
    background: linear-gradient(180deg, rgba(18, 29, 38, 0.72), rgba(11, 18, 24, 0.92));
    box-shadow: inset 0 0 0 1px rgba(101, 180, 208, 0.06);
}

.stat-item strong {
    display: block;
    color: var(--text);
    font-family: 'IBM Plex Mono', monospace;
    margin-bottom: 0.24rem;
}

.section {
    padding: 1.8rem 0;
}

.section-alt .container {
    position: relative;
    padding: 1.35rem;
    border: 1px solid rgba(101, 143, 160, 0.28);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(8, 14, 19, 0.94), rgba(5, 9, 13, 0.98));
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
}

main .section:nth-of-type(even) .card {
    background: linear-gradient(180deg, rgba(12, 20, 26, 0.94), rgba(7, 11, 16, 0.98));
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 1.2rem;
    align-items: end;
    margin-bottom: 1.4rem;
}

.section-head p {
    max-width: 60ch;
}

.page-head {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    align-items: stretch;
    gap: 1.2rem;
    padding: 2rem;
    border: 1px solid rgba(98, 146, 168, 0.24);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(11, 17, 22, 0.96), rgba(5, 8, 12, 0.99)),
        linear-gradient(135deg, rgba(74, 215, 255, 0.05), transparent 40%, rgba(103, 239, 200, 0.05));
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
    overflow: hidden;
}

.page-head::before {
    content: attr(data-mark);
    position: absolute;
    left: 1.55rem;
    top: 1.05rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.08em;
    color: rgba(143, 220, 255, 0.05);
    pointer-events: none;
}

.page-head > * {
    position: relative;
    z-index: 1;
}

.page-head-main {
    display: grid;
    align-content: end;
    gap: 0.9rem;
    min-height: 240px;
}

.page-head-main h1 {
    max-width: 10ch;
    margin-top: 0;
}

.page-head-copy {
    max-width: 58ch;
    font-size: 1.08rem;
    line-height: 1.8;
}

.page-head-side {
    align-self: end;
    padding: 1.15rem 1.15rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(98, 146, 168, 0.2);
    background: linear-gradient(180deg, rgba(17, 27, 35, 0.86), rgba(9, 14, 19, 0.96));
    box-shadow: inset 0 0 0 1px rgba(103, 239, 200, 0.04);
}

.page-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 0.9rem;
}

.page-chip {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0.36rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(102, 147, 166, 0.22);
    background: rgba(16, 27, 35, 0.82);
    color: #d9edf4;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.page-chip.is-brand {
    border-color: rgba(103, 239, 200, 0.24);
    background: rgba(13, 48, 43, 0.5);
    color: #dcfff3;
}

.page-head-side p {
    max-width: 34ch;
    font-size: 0.98rem;
    line-height: 1.8;
}

.grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(12, minmax(0, 1fr));
}

.card {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background:
        linear-gradient(180deg, rgba(14, 21, 28, 0.96), rgba(7, 11, 16, 0.98)),
        linear-gradient(135deg, rgba(74, 215, 255, 0.05), transparent 42%, rgba(103, 239, 200, 0.04) 100%);
    box-shadow: var(--shadow);
    padding: 1.25rem;
    transition: transform 0.28s var(--ease-out-premium), box-shadow 0.28s var(--ease-out-premium),
        border-color 0.28s var(--ease-out-premium), background 0.28s var(--ease-out-premium);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.card > * {
    position: relative;
    z-index: 1;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(127, 202, 255, 0.08), transparent 48%, rgba(108, 240, 194, 0.05));
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(124, 229, 255, 0.34);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(42, 93, 103, 0.18);
}

.card:hover::before {
    opacity: 1;
}

.card p {
    margin-top: 0.65rem;
}

.hero-stack {
    display: grid;
    gap: 1rem;
}

.command-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(102, 145, 163, 0.24);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(8, 14, 19, 0.94), rgba(5, 9, 13, 0.98));
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
    position: relative;
    overflow: hidden;
}

.command-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(89, 215, 255, 0.08), transparent);
    opacity: 0.72;
}

.command-bar > * {
    position: relative;
    z-index: 1;
}

.command-pill,
.command-status,
.system-label,
.metric-label,
.story-meta,
.signal-kicker,
.detail-label {
    font-family: 'IBM Plex Mono', monospace;
}

.command-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #d9f7ff;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.command-pill::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    box-shadow: 0 0 18px rgba(89, 215, 255, 0.55);
}

.command-status {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 48px;
    padding: 0.7rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(96, 146, 167, 0.22);
    background: linear-gradient(180deg, rgba(11, 20, 27, 0.92), rgba(7, 13, 18, 0.98));
    color: #cde7ef;
    font-size: 0.84rem;
}

.command-status::before {
    content: 'READY';
    color: #041016;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 0.22rem 0.46rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #c3a5ff, #7fb7ff);
}

.hero-copy-launcher {
    min-height: 720px;
}

.hero-panel-launcher {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-topline {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.hero-topline .eyebrow {
    margin: 0;
}

.system-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0.35rem 0.8rem;
    border-radius: 12px;
    border: 1px solid rgba(102, 145, 163, 0.24);
    background: linear-gradient(180deg, rgba(12, 21, 28, 0.94), rgba(8, 14, 19, 0.98));
    color: #dce8ec;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.system-badge strong {
    color: var(--brand);
    margin-left: 0.4rem;
}

.signal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: auto;
    padding-top: 1.5rem;
}

.signal-card {
    position: relative;
    padding: 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(96, 140, 160, 0.24);
    background: linear-gradient(180deg, rgba(17, 28, 36, 0.76), rgba(9, 15, 20, 0.94));
    box-shadow: inset 0 0 0 1px rgba(104, 176, 202, 0.06);
}

.signal-kicker {
    display: inline-block;
    color: #95dfff;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.signal-card strong {
    display: block;
    margin-top: 0.6rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1rem;
}

.signal-card p {
    margin-top: 0.4rem;
    font-size: 0.95rem;
}

.hero-side-display {
    flex: 1;
    min-height: 430px;
    border-radius: 18px;
    border: 1px solid rgba(73, 123, 140, 0.28);
    background:
        radial-gradient(circle at 68% 24%, rgba(72, 216, 255, 0.2), transparent 26%),
        radial-gradient(circle at 24% 78%, rgba(103, 239, 200, 0.16), transparent 24%),
        linear-gradient(180deg, rgba(7, 13, 18, 0.96), rgba(4, 8, 12, 0.98));
    position: relative;
    overflow: hidden;
}

.hero-side-display::before {
    content: '';
    position: absolute;
    inset: 1rem;
    border-radius: 14px;
    border: 1px solid rgba(89, 215, 255, 0.18);
}

.hero-side-display::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    transform: translate(-35%, -30%);
    background: radial-gradient(circle, rgba(74, 215, 255, 0.18), transparent 66%);
}

.hero-trace {
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(98, 192, 227, 0.16);
    background: linear-gradient(90deg, rgba(103, 239, 200, 0.02), rgba(89, 215, 255, 0.09), rgba(103, 239, 200, 0.02));
    filter: blur(0.2px);
}

.hero-trace-a {
    left: 14%;
    right: 18%;
    top: 42%;
    height: 1px;
}

.hero-trace-b {
    left: 22%;
    right: 32%;
    top: 58%;
    height: 1px;
}

.hero-trace-c {
    top: 16%;
    bottom: 24%;
    right: 29%;
    width: 1px;
}

.hero-core {
    position: absolute;
    inset: 1.6rem 1.6rem auto;
    min-height: 170px;
    display: grid;
    place-items: center;
}

.hero-core::before,
.hero-core::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(106, 215, 255, 0.18);
}

.hero-core::before {
    width: 190px;
    height: 190px;
    box-shadow: 0 0 40px rgba(74, 215, 255, 0.12), inset 0 0 35px rgba(74, 215, 255, 0.06);
}

.hero-core::after {
    width: 120px;
    height: 120px;
    border-color: rgba(103, 239, 200, 0.22);
}

.hero-core-mark {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    gap: 0.5rem;
    text-align: center;
}

.hero-core-logo {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border-radius: 18px;
    border: 1px solid rgba(122, 219, 255, 0.28);
    background:
        linear-gradient(180deg, rgba(19, 34, 45, 0.9), rgba(8, 14, 19, 0.98)),
        linear-gradient(135deg, rgba(74, 215, 255, 0.08), transparent 48%, rgba(103, 239, 200, 0.1));
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34), 0 0 30px rgba(74, 215, 255, 0.12);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -0.06em;
}

.hero-core-logo span:first-child {
    color: #fff2bf;
}

.hero-core-title {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-core-subtitle {
    color: #92a5af;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.system-lines {
    position: absolute;
    inset: auto 1.2rem 1.2rem;
    display: grid;
    gap: 0.55rem;
}

.system-line {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: #dbe9ed;
    font-size: 0.82rem;
}

.system-line::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--brand-2);
    box-shadow: 0 0 14px rgba(103, 239, 200, 0.42);
}

.detail-stack {
    display: grid;
    gap: 0.8rem;
}

.detail-card {
    padding: 0.95rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(96, 140, 160, 0.24);
    background: linear-gradient(180deg, rgba(14, 22, 28, 0.88), rgba(7, 12, 16, 0.96));
}

.detail-label {
    display: block;
    color: #95dfff;
    font-size: 0.72rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.detail-value {
    margin-top: 0.5rem;
    color: var(--text);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1.02rem;
}

.detail-copy {
    margin-top: 0.35rem !important;
    font-size: 0.93rem;
}

.metrics-grid {
    align-items: stretch;
}

.metric-card {
    min-height: 100%;
}

.metric-value {
    display: block;
    margin-top: 1.2rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    color: var(--text);
}

.metric-label {
    display: block;
    margin-top: 0.55rem;
    color: #8fdfff;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.story-feature {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    padding: 1.8rem;
}

.story-feature::after {
    content: '';
    position: absolute;
    right: -5%;
    bottom: -22%;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(71, 213, 255, 0.14), transparent 68%);
    pointer-events: none;
}

.story-feature-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.8fr);
    gap: 1.2rem;
    align-items: center;
}

.story-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #92dcff;
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.story-meta::before {
    content: '';
    width: 28px;
    height: 1px;
    background: rgba(100, 221, 255, 0.56);
}

.story-feature p {
    max-width: 56ch;
}

.story-panel {
    padding: 1rem;
    border-radius: 18px;
    border: 1px solid rgba(97, 139, 158, 0.24);
    background: linear-gradient(180deg, rgba(12, 19, 25, 0.92), rgba(6, 10, 14, 0.96));
}

.story-panel h3 {
    margin-bottom: 0.9rem;
}

.story-panel-list {
    display: grid;
    gap: 0.85rem;
}

.story-panel-item {
    padding: 0.85rem 0.9rem;
    border-radius: 14px;
    background: rgba(19, 31, 40, 0.7);
    border: 1px solid rgba(96, 140, 160, 0.18);
}

.story-panel-item strong {
    display: block;
    font-family: 'IBM Plex Mono', monospace;
}

.story-panel-item span {
    display: block;
    margin-top: 0.22rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.section-note {
    margin-top: 0.5rem;
}

.soft-link {
    color: #b9f5ff;
    text-decoration: none;
    border-bottom: 1px solid rgba(101, 239, 255, 0.22);
}

.soft-link:hover {
    color: var(--brand-2);
    border-bottom-color: rgba(103, 239, 200, 0.42);
}

.linktree-main {
    padding-top: 4.5rem;
    position: relative;
}

.linktree-main::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 88% 8%, rgba(116, 221, 175, 0.12), transparent 34%),
        radial-gradient(circle at 12% 14%, rgba(93, 186, 255, 0.12), transparent 40%);
}

.linktree-container {
    max-width: 720px;
    position: relative;
    z-index: 1;
}

.linktree-hero {
    text-align: center;
}

.linktree-logo {
    width: 76px;
    height: 76px;
    object-fit: contain;
    margin: 0 auto 1rem;
    display: block;
}

.linktree-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-top: 0.5rem;
}

.linktree-copy {
    margin-top: 0.8rem;
}

.linktree-badges {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.linktree-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.34rem 0.72rem;
    border-radius: 999px;
    font-size: 0.76rem;
    letter-spacing: 0.02em;
    color: #d4e8ff;
    border: 1px solid rgba(146, 198, 255, 0.3);
    background: linear-gradient(140deg, rgba(19, 35, 58, 0.86), rgba(12, 22, 38, 0.9));
}

.linktree-cta-row {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.linktree-cta {
    min-width: 184px;
}

.linktree-section-head {
    margin-top: 1.35rem;
    margin-bottom: 0.8rem;
}

.linktree-section-head h2 {
    margin: 0;
}

.linktree-section-head p {
    margin-top: 0.5rem;
}

.linktree-grid {
    margin-top: 1.1rem;
}

.social-link-card {
    display: block;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.social-link-card:focus-visible {
    outline: 2px solid rgba(146, 224, 255, 0.82);
    outline-offset: 2px;
}

.social-link-card:active {
    transform: translateY(-2px) scale(0.995);
}

.social-link-top {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-width: 0;
}

.social-link-heading {
    min-width: 0;
    flex: 1;
}

.social-link-top h3 {
    margin: 0;
}

.social-link-meta {
    margin-top: 0.2rem;
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
}

.social-link-action {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #b5ceea;
    border: 1px solid rgba(151, 189, 228, 0.3);
    border-radius: 999px;
    padding: 0.2rem 0.56rem;
}

.social-link-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #9cefc8;
    border: 1px solid rgba(118, 212, 167, 0.4);
    background: linear-gradient(145deg, rgba(22, 70, 55, 0.56), rgba(10, 24, 21, 0.7));
    box-shadow: inset 0 0 0 1px rgba(121, 236, 186, 0.1);
}

.social-link-icon svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

.social-link-card-discord {
    border-color: rgba(134, 151, 255, 0.42);
    background: linear-gradient(160deg, rgba(24, 30, 70, 0.9), rgba(12, 17, 40, 0.96));
}

.social-link-card-discord::before {
    background: linear-gradient(120deg, rgba(137, 156, 255, 0.2), transparent 48%, rgba(94, 122, 255, 0.14));
}

.social-link-icon-discord {
    color: #b2beff;
    border-color: rgba(152, 166, 255, 0.46);
    background: linear-gradient(145deg, rgba(48, 58, 136, 0.56), rgba(19, 24, 58, 0.76));
}

.social-link-card-whatsapp {
    border-color: rgba(116, 221, 175, 0.44);
    background: linear-gradient(162deg, rgba(16, 42, 36, 0.92), rgba(9, 18, 22, 0.96));
    box-shadow: 0 16px 40px rgba(2, 16, 12, 0.5);
}

.social-link-card-whatsapp::before {
    background: linear-gradient(120deg, rgba(84, 196, 148, 0.24), transparent 48%, rgba(55, 145, 107, 0.16));
}

.social-link-card-whatsapp:hover {
    border-color: rgba(134, 242, 199, 0.56);
    box-shadow: 0 24px 44px rgba(2, 20, 14, 0.62), 0 0 0 1px rgba(116, 221, 175, 0.3);
}

.social-link-icon-whatsapp {
    color: #9cefc8;
    border-color: rgba(118, 212, 167, 0.4);
    background: linear-gradient(145deg, rgba(22, 70, 55, 0.56), rgba(10, 24, 21, 0.7));
}

.social-link-card-youtube {
    border-color: rgba(255, 128, 130, 0.34);
    background: linear-gradient(160deg, rgba(55, 20, 24, 0.88), rgba(26, 11, 16, 0.96));
}

.social-link-card-youtube::before {
    background: linear-gradient(120deg, rgba(255, 126, 128, 0.18), transparent 48%, rgba(189, 65, 80, 0.16));
}

.social-link-icon-youtube {
    color: #ffc1c4;
    border-color: rgba(255, 138, 147, 0.36);
    background: linear-gradient(145deg, rgba(107, 37, 47, 0.58), rgba(39, 14, 22, 0.76));
}

.team-head {
    margin-bottom: 1.4rem;
}

.team-head-note {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
}

.team-group {
    margin-top: 1.25rem;
}

.team-group:first-of-type {
    margin-top: 0;
}

.team-group-head {
    margin-bottom: 0.7rem;
}

.team-group-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #9edcff;
}

.team-group-kicker::before {
    content: '';
    width: 26px;
    height: 1px;
    background: rgba(148, 206, 255, 0.52);
}

.team-grid {
    gap: 1.35rem;
}

.team-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1.4rem;
}

.team-card::after {
    content: '';
    position: absolute;
    inset: auto -20% -35% auto;
    width: 11rem;
    height: 11rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(95, 193, 255, 0.12), transparent 68%);
    opacity: 0.55;
    transition: opacity 0.26s var(--ease-out-premium), transform 0.26s var(--ease-out-premium);
    pointer-events: none;
}

.team-card:hover {
    transform: translateY(-9px) scale(1.014);
    border-color: rgba(124, 229, 255, 0.34);
    box-shadow: 0 28px 52px rgba(0, 0, 0, 0.44), 0 0 24px rgba(99, 199, 255, 0.12);
}

.team-card:hover::after {
    opacity: 0.9;
    transform: scale(1.08);
}

.team-card-founder {
    background: linear-gradient(180deg, rgba(14, 22, 29, 0.98), rgba(8, 13, 18, 0.98));
    border-color: rgba(125, 219, 255, 0.34);
    padding: 1.8rem;
    box-shadow: 0 30px 56px rgba(0, 0, 0, 0.46);
}

.team-card-core {
    background: linear-gradient(180deg, rgba(13, 21, 28, 0.96), rgba(7, 11, 16, 0.98));
}

.team-card-cta {
    background: linear-gradient(180deg, rgba(11, 24, 25, 0.96), rgba(6, 13, 14, 0.98));
    border-color: rgba(103, 239, 200, 0.26);
}

.team-card-support {
    background: linear-gradient(180deg, rgba(12, 20, 27, 0.96), rgba(7, 11, 16, 0.98));
}

.team-card-social {
    background: linear-gradient(180deg, rgba(13, 20, 30, 0.96), rgba(7, 11, 16, 0.98));
}

.team-card-top {
    display: flex;
    align-items: center;
    gap: 0.95rem;
}

.team-card-intro {
    min-width: 0;
}

.team-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #eff8ff;
    border: 1px solid rgba(125, 219, 255, 0.22);
    background: radial-gradient(circle at 30% 25%, rgba(96, 216, 255, 0.32), rgba(19, 38, 56, 0.94));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 24px rgba(0, 0, 0, 0.26);
}

.team-avatar-founder {
    width: 84px;
    height: 84px;
    font-size: 1.2rem;
    background: radial-gradient(circle at 30% 25%, rgba(111, 222, 255, 0.4), rgba(19, 45, 64, 0.96));
    border-color: rgba(125, 219, 255, 0.28);
}

.team-avatar-cta {
    background: radial-gradient(circle at 30% 25%, rgba(103, 239, 200, 0.34), rgba(14, 54, 48, 0.95));
    border-color: rgba(103, 239, 200, 0.26);
}

.team-label {
    display: inline-block;
    margin-bottom: 0.3rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: #98d8ff;
}

.team-role {
    margin-top: 0.35rem;
    color: #dfeeff;
    font-size: 0.95rem;
    font-weight: 500;
}

.team-copy {
    margin-top: 1rem !important;
    color: #b7c7df;
    max-width: 40ch;
}

.team-card-founder .team-copy {
    font-size: 1rem;
    max-width: 52ch;
}

.team-actions {
    margin-top: auto;
    padding-top: 1.15rem;
}

.kicker {
    display: inline-block;
    margin-bottom: 0.55rem;
    padding: 0.26rem 0.62rem;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #dff8ff;
    background: rgba(30, 79, 91, 0.36);
    border: 1px solid rgba(103, 239, 200, 0.24);
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.95rem;
}

.badge {
    padding: 0.36rem 0.62rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 500;
    color: #d7e7ec;
    border: 1px solid rgba(103, 142, 159, 0.28);
    background: rgba(18, 29, 38, 0.78);
}

.badge-success {
    color: #dfffea;
    border-color: rgba(103, 239, 200, 0.32);
    background: rgba(13, 49, 43, 0.56);
}

.project-feature {
    background: linear-gradient(180deg, rgba(10, 17, 22, 0.98), rgba(5, 9, 13, 0.99));
    border-color: rgba(125, 219, 255, 0.28);
    padding: 1.6rem;
}

.project-feature:hover {
    border-color: rgba(125, 219, 255, 0.4);
    box-shadow: 0 28px 52px rgba(0, 0, 0, 0.44), 0 0 1px rgba(89, 215, 255, 0.14);
}

.project-header {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 0.8rem;
}

.project-feature .project-header h2 {
    font-size: 1.75rem;
    color: var(--text);
}

.project-description {
    font-size: 1.02rem;
    line-height: 1.68;
    color: #b6c7cf;
    margin-top: 0.8rem !important;
    margin-bottom: 1.2rem;
}

.project-meta {
    display: grid;
    grid-template-columns: auto auto;
    gap: 1.6rem;
    margin: 1.3rem 0;
    padding: 1.1rem 0;
    border-top: 1px solid rgba(96, 140, 160, 0.22);
    border-bottom: 1px solid rgba(96, 140, 160, 0.22);
}

.status-block {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.status-label {
    font-size: 0.82rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #97adb6;
}

.status-label-inline {
    display: inline-block;
    padding: 0.28rem 0.68rem;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #d7e7ec;
    background: rgba(26, 57, 69, 0.54);
    border: 1px solid rgba(99, 180, 203, 0.28);
}

.project-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.4rem;
    align-items: center;
}

.launcher-mobile-lock {
    display: none;
    cursor: default;
    pointer-events: none;
    opacity: 0.9;
}

.btn-large {
    font-size: 1.02rem;
    padding: 0.95rem 1.6rem;
    font-weight: 600;
}

.project-card {
    display: flex;
    flex-direction: column;
}

.project-card h3 {
    margin-top: 0.5rem;
}

.closing-notice {
    background: linear-gradient(180deg, rgba(10, 16, 22, 0.96), rgba(5, 8, 12, 0.98));
    border: 1px solid rgba(96, 140, 160, 0.24);
    text-align: center;
    padding: 2rem;
}

.closing-notice h3 {
    margin-bottom: 0.6rem;
    font-size: 1.4rem;
}

.closing-notice p {
    color: #a7bbc3;
    margin: 0;
}

.closing-notice a {
    color: #b9f5ff;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(108, 240, 194, 0.32);
    transition: all 0.26s var(--ease-out-premium);
}

.closing-notice a:hover {
    color: var(--brand-2);
    border-bottom-color: rgba(103, 239, 200, 0.42);
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 1.2rem;
    align-items: end;
    margin-bottom: 1.8rem;
}

.page-head {
    display: grid;
    align-items: stretch;
}

.section-head > div {
    flex: 1;
}

.page-head > div {
    flex: initial;
}

.section-head h1 {
    margin-bottom: 0.4rem;
}

.col-4 {
    grid-column: span 4;
}

.col-3 {
    grid-column: span 3;
}

.col-6 {
    grid-column: span 6;
}

.col-8 {
    grid-column: span 8;
}

.col-12 {
    grid-column: span 12;
}

.list {
    margin: 0.8rem 0 0;
    padding-left: 1.1rem;
    color: var(--muted);
}

.list li {
    margin-top: 0.35rem;
}

.form-wrap {
    position: relative;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(12, 19, 25, 0.94), rgba(6, 10, 14, 0.98));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 1.4rem;
}

form {
    display: grid;
    gap: 0.85rem;
}

label {
    font-size: 0.9rem;
    color: #bfccdf;
}

input,
textarea,
select {
    width: 100%;
    background: rgba(9, 15, 20, 0.96);
    border: 1px solid rgba(94, 137, 157, 0.26);
    border-radius: 12px;
    color: var(--text);
    font-size: 0.95rem;
    padding: 0.82rem 0.9rem;
    outline: none;
    font-family: 'Space Grotesk', sans-serif;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(89, 215, 255, 0.16);
}

.notice {
    border-radius: var(--radius-sm);
    border: 1px solid rgba(131, 203, 255, 0.32);
    background: rgba(22, 45, 73, 0.5);
    color: #d7e8ff;
    padding: 0.85rem 1rem;
    backdrop-filter: blur(6px);
}

.empty-state {
    text-align: center;
    border: 1px dashed rgba(135, 178, 223, 0.5);
    background: rgba(15, 27, 43, 0.5);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.1rem;
}

.profile {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 1rem;
    align-items: center;
}

.profile img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 2px solid rgba(181, 217, 255, 0.35);
    object-fit: cover;
}

.site-footer {
    margin-top: auto;
    border-top: 1px solid rgba(88, 124, 141, 0.22);
    background: linear-gradient(180deg, rgba(4, 8, 11, 0.82), rgba(2, 5, 7, 0.95));
}

.footer-wrap {
    padding: 1.6rem 0 2rem;
    display: grid;
    gap: 0.8rem;
}

.footer-wrap p {
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem 1rem;
}

.footer-links a {
    text-decoration: none;
    color: #d2dfe5;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.84rem;
    letter-spacing: 0.02em;
}

.footer-links a:hover {
    color: var(--brand-2);
}

.reveal {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
    transition: opacity 0.75s var(--ease-out-premium), transform 0.75s var(--ease-out-premium);
    will-change: transform, opacity;
}

.reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (max-width: 960px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy-launcher {
        min-height: auto;
    }

    .page-head {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .page-head-main {
        min-height: auto;
    }

    .page-head-side {
        align-self: stretch;
    }

    .story-feature-layout {
        grid-template-columns: 1fr;
    }

    .command-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .command-status {
        width: 100%;
    }

    .col-3,
    .col-4,
    .col-6,
    .col-8 {
        grid-column: span 12;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .section-head p {
        max-width: none;
    }

    .project-meta {
        grid-template-columns: 1fr 1fr;
    }

    .team-head-note {
        justify-content: flex-start;
    }

    .team-card-founder,
    .team-card-core,
    .team-card-cta,
    .team-card-support,
    .team-card-social,
    .team-card-compact {
        min-height: auto;
    }

}

@media (max-width: 820px) {
    .site-nav {
        padding-top: 0.45rem;
    }

    .nav-wrap {
        min-height: 68px;
        padding: 0.45rem 0.55rem 0.45rem 0.6rem;
        border-radius: 20px;
    }

    .menu-toggle {
        display: inline-block;
        flex-shrink: 0;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 0.35rem);
        right: 0;
        left: 0;
        min-width: auto;
        flex-direction: column;
        align-items: stretch;
        gap: 0.35rem;
        max-height: min(70vh, 420px);
        overflow-y: auto;
        border-radius: 18px;
        border: 1px solid var(--border);
        background: linear-gradient(180deg, rgba(4, 8, 12, 0.99), rgba(3, 6, 9, 0.995));
        box-shadow: 0 22px 44px rgba(0, 0, 0, 0.52);
        padding: 0.65rem;
        transform-origin: top center;
        transform: translateY(-8px) scale(0.98);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.22s var(--ease-out-premium), opacity 0.22s var(--ease-out-premium);
        z-index: 1100;
    }

    .nav-links.is-open {
        transform: translateY(0) scale(1);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links a {
        width: 100%;
        padding: 0.85rem 0.9rem;
        min-height: 50px;
        display: flex;
        align-items: center;
    }

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

    .page-head::before {
        font-size: clamp(3.6rem, 18vw, 6rem);
    }
}

/* Form Status Messages */
#form-status {
    display: none;
    border-radius: var(--radius-sm);
    padding: 0.9rem 1.1rem;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    font-weight: 500;
    backdrop-filter: blur(8px);
    animation: slideInDown 0.3s var(--ease-out-premium);
    border-left: 4px solid transparent;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-success {
    border: 1px solid rgba(108, 240, 194, 0.5);
    border-left-color: #6cf0c2;
    background: rgba(45, 135, 100, 0.35);
    color: #b3f0d8;
}

.form-error {
    border: 1px solid rgba(255, 107, 107, 0.5);
    border-left-color: #ff6b6b;
    background: rgba(180, 50, 50, 0.3);
    color: #ffb3b3;
}

/* Form field validation states */
input.field-valid,
textarea.field-valid,
select.field-valid {
    border-color: rgba(108, 240, 194, 0.6);
    background: rgba(45, 135, 100, 0.12);
    box-shadow: 0 0 0 3px rgba(108, 240, 194, 0.1);
}

input.field-error,
textarea.field-error,
select.field-error {
    border-color: rgba(255, 107, 107, 0.6);
    background: rgba(180, 50, 50, 0.12);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

/* Message character counter */
.message-counter {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.85rem;
    color: #a8b6d1;
    font-weight: 400;
}

@media (max-width: 760px) {
    .profile {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .profile img {
        margin-inline: auto;
    }

    .team-card {
        padding: 1.2rem;
    }

    .team-card-top {
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 1.4rem, var(--max-width));
    }

    .site-nav {
        padding-top: 0.35rem;
    }

    .nav-wrap {
        min-height: 62px;
        gap: 0.7rem;
        padding: 0.42rem 0.5rem 0.42rem 0.55rem;
        border-radius: 18px;
    }

    .brand {
        gap: 0.72rem;
        min-width: 0;
    }

    .brand img {
        width: 40px;
        height: 40px;
    }

    .brand-copy strong {
        font-size: 0.94rem;
    }

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

    .section {
        padding: 1.85rem 0;
    }

    .section-alt .container {
        padding: 1rem;
        border-radius: 14px;
    }

    .hero {
        padding: 3.85rem 0 2.1rem;
    }

    h1 {
        font-size: clamp(1.72rem, 8vw, 2.3rem);
    }

    h2 {
        font-size: clamp(1.24rem, 6vw, 1.65rem);
    }

    .hero-copy,
    .hero-panel,
    .form-wrap,
    .card {
        padding: 1.05rem;
        border-radius: 12px;
    }

    .page-head {
        padding: 1.15rem;
        border-radius: 18px;
    }

    .page-head-main h1 {
        max-width: 100%;
    }

    .page-head-side {
        padding: 0.95rem;
        border-radius: 14px;
    }

    .story-feature {
        padding: 1.15rem;
        min-height: auto;
    }

    .command-bar,
    .story-panel,
    .hero-side-display,
    .detail-card,
    .signal-card,
    .page-head-side {
        border-radius: 12px;
    }

    .hero-topline {
        flex-direction: column;
        align-items: flex-start;
    }

    .card:hover {
        transform: translateY(-3px);
    }

    .hero-actions {
        gap: 0.6rem;
    }

    .hero-actions .btn,
    .hero-actions button,
    .hero-actions input[type='submit'] {
        width: 100%;
    }

    .command-status {
        padding: 0.75rem 0.85rem;
        align-items: flex-start;
        flex-direction: column;
    }

    .command-status::before {
        margin-bottom: 0.2rem;
    }

    .hero-core {
        inset: 1rem 1rem auto;
        min-height: 140px;
    }

    .hero-core::before {
        width: 150px;
        height: 150px;
    }

    .hero-core::after {
        width: 96px;
        height: 96px;
    }

    .hero-core-logo {
        width: 58px;
        height: 58px;
        font-size: 1.15rem;
    }

    .project-feature {
        padding: 1.3rem;
    }

    .team-head {
        margin-bottom: 1.3rem;
    }

    .team-card {
        padding: 1.05rem;
    }

    .team-card-top {
        gap: 0.8rem;
    }

    .team-avatar {
        width: 54px;
        height: 54px;
        font-size: 0.92rem;
    }

    .team-avatar-founder {
        width: 68px;
        height: 68px;
        font-size: 1rem;
    }

    .social-link-icon {
        width: 1.85rem;
        height: 1.85rem;
    }

    .linktree-badges {
        justify-content: flex-start;
    }

    .linktree-cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .linktree-cta {
        width: 100%;
        min-width: 0;
    }

    .social-link-top {
        gap: 0.55rem;
    }

    .social-link-action {
        display: none;
    }

    .team-label {
        font-size: 0.68rem;
    }

    .team-role {
        font-size: 0.9rem;
    }

    .team-copy {
        margin-top: 0.85rem !important;
        font-size: 0.94rem;
    }

    .team-actions {
        padding-top: 1rem;
    }

    .team-actions .btn {
        width: 100%;
    }

    .project-feature .project-header h2 {
        font-size: 1.4rem;
    }

    .project-description {
        font-size: 0.98rem;
        margin-bottom: 0.8rem !important;
    }

    .project-meta {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0.8rem 0;
    }

    .project-cta {
        flex-direction: column;
    }

    .project-feature .project-cta > .btn-primary.btn-large:first-child {
        display: none;
    }

    .launcher-mobile-lock {
        display: inline-flex;
        width: 100%;
        justify-content: center;
        text-align: center;
        background: rgba(21, 39, 62, 0.82);
        border: 1px solid rgba(152, 193, 238, 0.42);
        color: #d8e8ff;
        box-shadow: none;
        filter: none;
        transform: none;
    }

    .project-cta .btn {
        width: 100%;
    }

    .project-cta .btn-large {
        font-size: 0.98rem;
        padding: 0.9rem 1.4rem;
    }

    .closing-notice {
        padding: 1.4rem 1.05rem;
    }

    .closing-notice h3 {
        font-size: 1.2rem;
    }

    .closing-notice p {
        font-size: 0.95rem;
    }

    .brand-copy span {
        display: none;
    }

    .footer-links {
        gap: 0.35rem 0.9rem;
    }

    .metric-value {
        margin-top: 0.95rem;
        font-size: 1.9rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
