@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700&family=Outfit:wght@400;500;600&display=swap');

:root {
    --bg: #060a11;
    --surface: #0e1624;
    --surface-2: #132237;
    --text: #f2f6ff;
    --muted: #a8b6d1;
    --brand: #25c7ff;
    --brand-2: #6cf0c2;
    --border: rgba(158, 200, 255, 0.2);
    --shadow: 0 16px 40px rgba(0, 8, 20, 0.45);
    --radius-lg: 22px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --max-width: 1140px;
    --ease-out-premium: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', sans-serif;
    background: radial-gradient(circle at 15% -10%, #14325f 0%, transparent 40%),
        radial-gradient(circle at 85% 10%, #12504f 0%, transparent 32%),
        linear-gradient(170deg, #050910 0%, #060d18 45%, #091427 100%);
    color: var(--text);
    line-height: 1.65;
    min-height: 100vh;
}

@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;
    }
}

a {
    color: inherit;
}

.page-shell {
    position: relative;
    min-height: 100vh;
    overflow-x: clip;
}

.bg-grid {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(to right, rgba(122, 176, 255, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(122, 176, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at 30% 30%, black, transparent 80%);
    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: 22rem;
    height: 22rem;
    left: -8rem;
    top: -6rem;
    background: radial-gradient(circle, rgba(37, 199, 255, 0.28), transparent 68%);
}

.bg-grid::after {
    width: 26rem;
    height: 26rem;
    right: -9rem;
    bottom: -9rem;
    background: radial-gradient(circle, rgba(108, 240, 194, 0.2), transparent 70%);
    animation-duration: 20s;
}

.container {
    width: min(100% - 2.4rem, var(--max-width));
    margin-inline: auto;
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(185, 220, 255, 0.16);
    background: rgba(5, 11, 21, 0.85);
    backdrop-filter: blur(14px);
}

.site-nav.scrolled {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
}

.brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.brand-copy strong {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.brand-copy span {
    display: block;
    color: var(--muted);
    font-size: 0.8rem;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(19, 34, 55, 0.6);
    color: var(--text);
    cursor: pointer;
}

.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.4rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    display: inline-block;
    text-decoration: none;
    color: var(--muted);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0.7rem;
    border-radius: 8px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
    background: rgba(52, 92, 145, 0.38);
}

.nav-links a.active {
    box-shadow: inset 0 0 0 1px rgba(142, 214, 255, 0.5);
}

.btn,
button,
input[type='submit'] {
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    transition: transform 0.26s var(--ease-out-premium), box-shadow 0.26s var(--ease-out-premium),
        filter 0.26s var(--ease-out-premium);
}

.btn-primary,
button,
input[type='submit'] {
    color: #03131c;
    background: linear-gradient(120deg, var(--brand), var(--brand-2));
    box-shadow: 0 8px 22px rgba(48, 216, 255, 0.3);
}

.btn-secondary {
    color: var(--text);
    background: rgba(31, 50, 75, 0.7);
    border: 1px solid var(--border);
}

.btn:hover,
button:hover,
input[type='submit']:hover {
    transform: translateY(-2px) scale(1.01);
    filter: brightness(1.04);
}

.hero {
    padding: 6.3rem 0 3.3rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(61, 128, 208, 0.18), transparent 45%, rgba(62, 166, 140, 0.14));
    mask-image: radial-gradient(circle at 40% 30%, black, transparent 72%);
    animation: pulseGlow 8s ease-in-out infinite;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 1.4rem;
    align-items: stretch;
}

.hero-copy,
.hero-panel {
    background: linear-gradient(160deg, rgba(13, 26, 44, 0.86), rgba(8, 16, 28, 0.92));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(1.4rem, 3vw, 2.4rem);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.hero-copy::after,
.hero-panel::after {
    content: '';
    position: absolute;
    inset: auto -25% -65% auto;
    width: 13rem;
    height: 13rem;
    background: radial-gradient(circle, rgba(122, 218, 255, 0.22), transparent 72%);
    pointer-events: none;
}

.eyebrow {
    font-family: 'Sora', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.73rem;
    color: #9ed7ff;
}

h1,
h2,
h3 {
    font-family: 'Sora', sans-serif;
    line-height: 1.2;
    margin: 0;
}

h1 {
    margin-top: 0.8rem;
    font-size: clamp(2.05rem, 4vw, 3.4rem);
}

.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.45rem, 2.2vw, 2.1rem);
}

h3 {
    font-size: 1.2rem;
}

p {
    margin: 0;
    color: var(--muted);
}

.hero-copy p {
    margin-top: 1rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.4rem;
}

.stat-list {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.4rem;
}

.stat-item {
    padding: 0.8rem 0.95rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(172, 212, 255, 0.18);
    background: rgba(8, 18, 31, 0.66);
}

.stat-item strong {
    display: block;
    color: var(--text);
    font-family: 'Sora', sans-serif;
    margin-bottom: 0.2rem;
}

.section {
    padding: 2.4rem 0;
}

.section-alt .container {
    padding: 1.2rem;
    border: 1px solid rgba(140, 196, 255, 0.2);
    border-radius: var(--radius-lg);
    background: linear-gradient(165deg, rgba(10, 21, 35, 0.75), rgba(7, 16, 27, 0.92));
    box-shadow: 0 16px 36px rgba(0, 8, 24, 0.4);
}

main .section:nth-of-type(even) .card {
    background: linear-gradient(160deg, rgba(10, 22, 38, 0.84), rgba(13, 25, 40, 0.95));
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: end;
    margin-bottom: 1.15rem;
}

.section-head p {
    max-width: 60ch;
}

.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(160deg, rgba(15, 28, 46, 0.82), rgba(8, 15, 26, 0.92));
    box-shadow: var(--shadow);
    padding: 1.2rem;
    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;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(127, 202, 255, 0.12), transparent 48%, rgba(108, 240, 194, 0.08));
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
}

.card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(162, 221, 255, 0.44);
    box-shadow: 0 24px 44px rgba(0, 14, 34, 0.56);
}

.card:hover::before {
    opacity: 1;
}

.card p {
    margin-top: 0.65rem;
}

.team-head {
    margin-bottom: 1.65rem;
}

.team-head-note {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
}

.team-grid {
    gap: 1.15rem;
}

.team-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1.35rem;
}

.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%);
    pointer-events: none;
}

.team-card:hover {
    transform: translateY(-8px) scale(1.012);
    box-shadow: 0 28px 48px rgba(0, 10, 26, 0.62);
}

.team-card-founder {
    background: linear-gradient(150deg, rgba(17, 37, 61, 0.98), rgba(8, 18, 31, 0.96));
    border-color: rgba(130, 209, 255, 0.48);
    padding: 1.6rem;
}

.team-card-core {
    background: linear-gradient(155deg, rgba(14, 33, 53, 0.92), rgba(9, 19, 31, 0.94));
}

.team-card-cta {
    background: linear-gradient(145deg, rgba(14, 40, 43, 0.9), rgba(9, 24, 33, 0.96));
    border-color: rgba(116, 233, 194, 0.34);
}

.team-card-support {
    background: linear-gradient(150deg, rgba(16, 29, 47, 0.88), rgba(8, 16, 27, 0.94));
}

.team-card-social {
    background: linear-gradient(150deg, rgba(20, 30, 54, 0.88), rgba(8, 16, 27, 0.94));
}

.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: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #eff8ff;
    border: 1px solid rgba(159, 211, 255, 0.34);
    background: radial-gradient(circle at 30% 25%, rgba(121, 203, 255, 0.38), rgba(30, 56, 96, 0.92));
    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.55), rgba(24, 74, 114, 0.96));
    border-color: rgba(167, 223, 255, 0.48);
}

.team-avatar-cta {
    background: radial-gradient(circle at 30% 25%, rgba(108, 240, 194, 0.5), rgba(18, 77, 69, 0.95));
    border-color: rgba(144, 246, 214, 0.4);
}

.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: 38ch;
}

.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(62, 155, 212, 0.28);
    border: 1px solid rgba(132, 210, 255, 0.42);
}

.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: #d8e8ff;
    border: 1px solid rgba(152, 193, 238, 0.42);
    background: rgba(21, 39, 62, 0.74);
}

.badge-success {
    color: #dfffea;
    border-color: rgba(126, 236, 188, 0.55);
    background: rgba(19, 71, 54, 0.5);
}

.project-feature {
    background: linear-gradient(146deg, rgba(9, 30, 53, 0.95), rgba(7, 22, 36, 0.98));
    border-color: rgba(131, 206, 255, 0.5);
    padding: 1.6rem;
}

.project-feature:hover {
    border-color: rgba(131, 206, 255, 0.7);
    box-shadow: 0 28px 52px rgba(0, 14, 34, 0.62), 0 0 1px rgba(37, 199, 255, 0.18);
}

.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: #c9d8ef;
    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(131, 206, 255, 0.22);
    border-bottom: 1px solid rgba(131, 206, 255, 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: #a0b5d1;
}

.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: #d4e4ff;
    background: rgba(29, 82, 156, 0.35);
    border: 1px solid rgba(108, 170, 230, 0.38);
}

.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(160deg, rgba(15, 40, 65, 0.5), rgba(10, 28, 45, 0.6));
    border: 1px solid rgba(108, 170, 230, 0.28);
    text-align: center;
    padding: 2rem;
}

.closing-notice h3 {
    margin-bottom: 0.6rem;
    font-size: 1.4rem;
}

.closing-notice p {
    color: #b8cfe0;
    margin: 0;
}

.closing-notice a {
    color: #6cf0c2;
    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: #25c7ff;
    border-bottom-color: rgba(37, 199, 255, 0.48);
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: end;
    margin-bottom: 1.8rem;
}

.section-head > div {
    flex: 1;
}

.section-head h1 {
    margin-bottom: 0.4rem;
}

.col-4 {
    grid-column: span 4;
}

.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 {
    border: 1px solid var(--border);
    background: linear-gradient(160deg, rgba(14, 25, 42, 0.9), rgba(9, 18, 30, 0.95));
    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(10, 18, 31, 0.92);
    border: 1px solid rgba(151, 191, 238, 0.25);
    border-radius: 10px;
    color: var(--text);
    font-size: 0.95rem;
    padding: 0.75rem 0.85rem;
    outline: none;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(37, 199, 255, 0.2);
}

.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: 2.6rem;
    border-top: 1px solid rgba(180, 217, 255, 0.2);
    background: rgba(4, 9, 17, 0.75);
}

.footer-wrap {
    padding: 1.5rem 0 2rem;
    display: grid;
    gap: 0.8rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem 1rem;
}

.footer-links a {
    text-decoration: none;
    color: #c7daef;
    font-size: 0.95rem;
}

.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;
    }

    .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) {
    .nav-wrap {
        min-height: 68px;
    }

    .menu-toggle {
        display: inline-block;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 0.45rem);
        right: 0.8rem;
        left: 0.8rem;
        min-width: auto;
        flex-direction: column;
        align-items: stretch;
        border-radius: 14px;
        border: 1px solid var(--border);
        background: rgba(7, 14, 24, 0.97);
        box-shadow: 0 16px 34px rgba(0, 0, 0, 0.45);
        padding: 0.55rem;
        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);
    }

    .nav-links.is-open {
        transform: translateY(0) scale(1);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links a {
        width: 100%;
        padding: 0.8rem 0.8rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .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));
    }

    .section {
        padding: 1.85rem 0;
    }

    .section-alt .container {
        padding: 1rem;
        border-radius: 14px;
    }

    .hero {
        padding: 4.15rem 0 2.2rem;
    }

    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;
    }

    .card:hover {
        transform: translateY(-3px);
    }

    .hero-actions {
        gap: 0.6rem;
    }

    .hero-actions .btn,
    .hero-actions button,
    .hero-actions input[type='submit'] {
        width: 100%;
    }

    .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;
    }

    .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;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}