:root {
    --black: #0b0b0b;
    --ink: #ffffff;
    --muted: #8d8d87;
    --line: #2c2c29;
    --acid: #d6f36a;
}

* {
    box-sizing: border-box;
}

@keyframes page-fade-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--black);
    color: var(--ink);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

body.is-locked {
    overflow: hidden;
}

body.is-locked > :not(.password-gate):not(.loading-screen) {
    visibility: hidden;
}

body.is-loading > :not(.loading-screen) {
    visibility: hidden;
}

.loading-screen {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: 32px;
    overflow: hidden;
    background: var(--black);
    color: var(--acid);
    transition: opacity .55s ease, visibility .55s ease;
}

body:not(.is-loading) .loading-screen {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.loading-screen::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(214, 243, 106, .035) 1px, transparent 1px);
    background-size: 100% 6px;
    content: "";
    pointer-events: none;
}

.loading-shell {
    position: relative;
    width: min(680px, 100%);
}

.loading-topline,
.loading-status {
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-size: .7rem;
    letter-spacing: .14em;
}

.loading-mark {
    margin: 44px 0 36px;
    color: var(--ink);
    font-family: "Zen Dots", sans-serif;
    font-size: clamp(4rem, 14vw, 9rem);
    line-height: .8;
    letter-spacing: -.08em;
}

.loading-mark span {
    color: var(--acid);
}

.code-stream {
    border-left: 1px solid var(--acid);
    padding-left: 18px;
    color: var(--muted);
    font-family: monospace;
    font-size: .85rem;
}

.code-stream p {
    margin: 8px 0;
    opacity: 0;
    animation: code-line-in .45s ease-out forwards;
}

.code-stream p:nth-child(2) { animation-delay: .12s; }
.code-stream p:nth-child(3) { animation-delay: .24s; }
.code-stream p:nth-child(4) { animation-delay: .36s; }
.code-stream p:nth-child(5) { animation-delay: .48s; }

.code-stream span {
    display: inline-block;
    width: 28px;
    color: var(--acid);
}

@keyframes code-line-in {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

.loading-progress {
    height: 2px;
    margin: 42px 0 14px;
    background: var(--line);
}

.loading-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--acid);
    box-shadow: 0 0 14px rgba(214, 243, 106, .8);
    transition: width .08s linear;
}

.loading-status {
    margin: 0;
    color: var(--acid);
}

.password-gate {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 32px;
    background: var(--black);
    opacity: 1;
    transition: opacity .45s ease, visibility .45s ease;
}

body.is-unlocked .password-gate {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.password-gate-inner {
    width: min(560px, 100%);
}

.password-gate h1 {
    margin: 0 0 28px;
    font-size: clamp(3.2rem, 9vw, 7rem);
    line-height: .88;
}

.password-copy {
    max-width: 360px;
    margin-bottom: 32px;
    color: var(--muted);
}

.password-form label {
    display: block;
    margin-bottom: 10px;
    color: var(--acid);
    font-size: .75rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.password-input-row {
    display: flex;
    gap: 12px;
}

.password-input-row input {
    min-width: 0;
    flex: 1;
    border: 1px solid var(--line);
    border-radius: 999px;
    outline: none;
    padding: 13px 18px;
    background: #121212;
    color: var(--ink);
    font: inherit;
}

.password-input-row input:focus {
    border-color: var(--acid);
    box-shadow: 0 0 0 3px rgba(214, 243, 106, .12);
}

.password-input-row button {
    border: 0;
    border-radius: 999px;
    padding: 13px 20px;
    background: linear-gradient(135deg, #e4ff82 0%, var(--acid) 100%);
    color: var(--black);
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    transition: transform .2s ease, box-shadow .2s ease;
}

.password-input-row button:hover,
.password-input-row button:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(214, 243, 106, .28);
}

.password-error {
    min-height: 24px;
    margin: 12px 0 0;
    color: #ff8c8c;
    font-size: .85rem;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header,
main,
footer {
    width: min(1180px, calc(100% - 64px));
    margin: 0 auto;
}

.site-header,
.announcement,
.hero,
footer {
    opacity: 0;
    animation: page-fade-in .55s ease-out forwards;
}

.site-header {
    animation-delay: .05s;
}

.announcement {
    animation-delay: .15s;
}

.hero {
    animation-delay: .46s;
}

footer {
    animation-delay: .54s;
}

@media (prefers-reduced-motion: reduce) {
    .site-header,
    .announcement,
    .hero,
    footer {
        opacity: 1;
        animation: none;
    }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 88px;
    background: rgba(11, 11, 11, .94);
    backdrop-filter: blur(12px);
}

.site-header::after {
    position: absolute;
    right: 50%;
    bottom: 0;
    left: 50%;
    width: 100vw;
    border-bottom: 1px solid var(--line);
    content: "";
    transform: translateX(-50%);
}

.brand,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Zen Dots", sans-serif;
    font-weight: 700;
    letter-spacing: .04em;
    
}

.brand {
    font-size: 1.25rem;
    letter-spacing: .08em;
}

.brand span,
.statement h2 span,
em {
    color: var(--acid);
    font-style: normal;
}

nav {
    display: flex;
    gap: 32px;
    color: var(--muted);
    font-size: .82rem;
}

nav a,
.header-link,
.text-link,
.contact-link,
.invite-link {
    transition: color .2s ease;
}

nav a:hover,
.header-link:hover,
.text-link:hover,
.contact-link:hover {
    color: var(--acid);
}

.header-link,
.text-link {
    color: var(--acid);
    font-size: .82rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-link,
.invite-link {
    display: inline-flex;
    align-items: center;
    border: 1px solid transparent;
    border-radius: 999px;
    background: linear-gradient(135deg, #e4ff82 0%, var(--acid) 100%);
    color: var(--black);
    transition: color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.header-link {
    padding: 9px 16px;
}

.invite-link {
    padding: 13px 20px;
}

.header-link:hover,
.header-link:focus-visible,
.header-link:focus-visible {
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(214, 243, 106, .28);
}

.invite-link:hover,
.invite-link:focus-visible {
    color: var(--line);
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(214, 243, 106, .28);
}

.hero {
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: clamp(20px, 3vh, 36px) 0 20px;
    border-bottom: 1px solid var(--line);
}

.eyebrow,
.section-number {
    margin: 0 0 28px;
    color: var(--line);
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.announcement {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    width: fit-content;
    margin: clamp(24px, 4vh, 48px) 0 16px max(32px, calc((100% - 1180px) / 2));
    padding: 9px 18px;
    border: 1px solid var(--acid);
    border-radius: 999px;
    background: rgba(214, 243, 106, .08);
    color: var(--acid);
    font-size: .9rem;
}

.announcement-icon {
    color: var(--acid);
    font-size: 1.35rem;
    line-height: 1;
}

h1,
h2,
p {
    margin-top: 0;
}

h1 {
    max-width: 900px;
    margin-bottom: clamp(24px, 3.5vh, 38px);
    font-size: clamp(3rem, 6vw, 4.8rem);
    line-height: .82;
    letter-spacing: .01em;
}

.hero-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 1fr);
    align-items: start;
    column-gap: 28px;
    row-gap: 9px;
}

.hero-copy {
    min-width: 0;
}

.system-status {
    width: min(100%, 360px);
    border: 1px solid rgba(214, 243, 106, .22);
    border-radius: 8px;
    padding: 18px 20px;
    background: rgba(214, 243, 106, .035);
    color: var(--muted);
    font-family: monospace;
    font-size: .78rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.system-status:hover,
.system-status:focus-within {
    border-color: rgba(214, 243, 106, .72);
    background: rgba(214, 243, 106, .065);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .24), 0 0 20px rgba(214, 243, 106, .1);
    transform: translateY(-4px);
}

.system-status-command {
    margin: 0 0 16px;
    color: var(--acid);
}

.system-status dl {
    margin: 0;
}

.system-status dl div {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 3px 0;
}

.system-status dt,
.system-status dd {
    margin: 0;
}

.system-status dt {
    color: var(--muted);
}

.system-status dd {
    color: var(--ink);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-action {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 14px 22px;
    font-size: .9rem;
    font-weight: 700;
    transition: color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.hero-action-primary {
    background: linear-gradient(135deg, #e4ff82 0%, var(--acid) 100%);
    color: var(--black);
}

.hero-action-secondary {
    border-color: var(--line);
    background: rgba(255, 255, 255, .015);
    color: var(--ink);
}

.hero-action-primary:hover,
.hero-action-primary:focus-visible,
.hero-action-secondary:hover,
.hero-action-secondary:focus-visible {
    transform: translateY(-3px);
    outline: none;
}

.hero-action-primary:hover,
.hero-action-primary:focus-visible {
    box-shadow: 0 8px 22px rgba(214, 243, 106, .28);
}

.hero-action-secondary:hover,
.hero-action-secondary:focus-visible {
    border-color: var(--acid);
    background: rgba(214, 243, 106, .08);
    color: var(--acid);
}

.intro {
    max-width: 330px;
    margin-bottom: 0;
    color: var(--muted);
}

.text-link span,
.header-link span,
.contact-link span {
    display: inline-block;
    margin-left: 12px;
    font-size: 1.1em;
}

.statement,
.features,
.contact {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    padding: 140px 0;
    border-bottom: 1px solid var(--line);
}

h2 {
    max-width: 760px;
    margin-bottom: 32px;
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    line-height: .9;
    letter-spacing: -.025em;
}

.cards-h3 {
    margin-bottom: 12px;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    line-height: 1.1;
    letter-spacing: 0.3em;
}

.statement h2 {
    margin-top: -12px;
}

.statement div > p {
    max-width: 480px;
    color: var(--muted);
}

.features {
    grid-template-columns: 1fr 2fr;
}

.section-heading h2 {
    font-size: clamp(2.5rem, 5vw, 5rem);
}

p {
    max-width: 480px;
    color: var(--muted);
}

.feature-rows {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    padding: 72px 0 24px;
}

.spotlight-section {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(36px, 8vw, 120px);
    min-height: 390px;
    padding: 88px 0;
    border-top: 1px solid var(--line);
}

.spotlight-copy {
    max-width: 440px;
}

.spotlight-label {
    margin-bottom: 18px;
    color: var(--acid);
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.spotlight-copy h2 {
    margin: 0 0 20px;
    font-size: clamp(2.3rem, 4.5vw, 4rem);
    line-height: .96;
}

.spotlight-copy > p:not(.spotlight-label) {
    max-width: 390px;
    margin-bottom: 20px;
    font-size: .9rem;
}

.spotlight-points {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    color: var(--ink);
    font-size: .78rem;
    list-style: none;
}

.spotlight-points li::before {
    margin-right: 10px;
    color: var(--acid);
    content: "+";
}

.spotlight-preview {
    width: 100%;
    max-width: 510px;
    justify-self: end;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--acid) 55%, transparent);
    border-radius: 8px;
    padding: 20px;
    background: radial-gradient(ellipse at 100% 0%, color-mix(in srgb, var(--acid) 11%, transparent), transparent 55%), #10120f;
    box-shadow: 0 20px 55px rgba(0, 0, 0, .24), inset 0 0 0 1px rgba(255, 255, 255, .025);
}

.spotlight-moderation .spotlight-copy {
    grid-column: 2;
    grid-row: 1;
}

.spotlight-moderation .spotlight-preview {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
}

.spotlight-preview-top,
.staff-log-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
    font-size: .62rem;
    letter-spacing: .08em;
}

.spotlight-preview-top {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.preview-status,
.staff-log-indicator {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--acid);
    white-space: nowrap;
}

.preview-status i,
.staff-log-indicator i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 10px currentColor;
}

.antinuke-alert {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 22px 0 16px;
    border: 1px solid color-mix(in srgb, var(--acid) 30%, transparent);
    border-radius: 6px;
    padding: 16px;
    background: color-mix(in srgb, var(--acid) 7%, transparent);
}

.antinuke-alert-icon {
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--acid);
    color: var(--black);
    font-size: 1.2rem;
    font-weight: 700;
}

.antinuke-alert-copy,
.staff-log-row div {
    display: grid;
    gap: 4px;
}

.antinuke-alert-copy > span:first-child {
    color: var(--acid);
    font-size: .62rem;
    letter-spacing: .08em;
}

.antinuke-alert-copy strong {
    color: var(--ink);
    font-size: clamp(1.2rem, 2.4vw, 1.7rem);
    line-height: 1.1;
}

.antinuke-alert-copy > span:last-child {
    color: var(--muted);
    font-size: .78rem;
}

.antinuke-description {
    margin: 0 0 14px;
    font-size: .76rem;
}

.antinuke-event {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-size: .72rem;
}

.antinuke-event span {
    color: var(--muted);
    font-size: .62rem;
    letter-spacing: .08em;
}

.antinuke-event strong,
.staff-log-row strong {
    color: var(--ink);
    font-size: .86rem;
}

.staff-log-row div span {
    color: var(--muted);
    font-size: .72rem;
}
.staff-log-footer > span:first-child {
    letter-spacing: .08em;
}

.moderation-case-detail {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 13px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-size: .72rem;
}

.moderation-case-detail span {
    color: var(--muted);
    font-size: .62rem;
    letter-spacing: .08em;
}

.moderation-case-detail strong {
    color: var(--ink);
    font-weight: 500;
}

.staff-log-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.log-icon {
    display: grid;
    place-items: center;
    width: 34px;
    aspect-ratio: 1;
    border: 1px solid rgba(214, 243, 106, .35);
    border-radius: 50%;
    background: rgba(214, 243, 106, .09);
    color: var(--acid);
    font-size: .76rem;
}

.log-icon-alt {
    border-color: color-mix(in srgb, var(--acid) 40%, transparent);
    background: color-mix(in srgb, var(--acid) 10%, transparent);
    color: color-mix(in srgb, var(--acid) 72%, white);
}

.staff-log-row div {
    flex: 1;
}

.log-state {
    color: var(--acid);
    font-size: .62rem;
    letter-spacing: .08em;
}

.staff-log-footer {
    padding-top: 16px;
}

.feature-row {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 290px;
    overflow: hidden;
    padding: 28px 26px 24px;
    border: 1px solid rgba(214, 243, 106, .22);
    border-radius: 7px;
    background: #10120f;
    box-shadow: inset 0 0 36px rgba(214, 243, 106, .025);
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.feature-row::after {
    position: absolute;
    top: -72px;
    right: -42px;
    width: 205px;
    height: 205px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(214, 243, 106, .09) 0 18%, rgba(214, 243, 106, .055) 38%, rgba(214, 243, 106, .02) 64%, transparent 78%);
    box-shadow: 0 0 48px 10px rgba(214, 243, 106, .025);
    content: "";
    pointer-events: none;
    filter: blur(4px);
    transition: opacity .45s ease, transform .45s ease;
}

.feature-row:hover,
.feature-row:focus-visible {
    border-color: rgba(214, 243, 106, .56);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .24), 0 0 22px rgba(214, 243, 106, .1);
    outline: none;
    transform: translateY(-4px);
}

.feature-card-icon {
    position: absolute;
    top: 28px;
    left: 26px;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 51px;
    height: 51px;
    border: 1px solid rgba(214, 243, 106, .28);
    border-radius: 15px;
    background: rgba(214, 243, 106, .07);
    color: var(--acid);
    font-size: 1.7rem;
    line-height: 1;
}

.feature-card-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(89%) sepia(49%) saturate(775%) hue-rotate(31deg) brightness(104%) contrast(91%);
}

.feature-card-number {
    position: absolute;
    top: 29px;
    right: 26px;
    z-index: 1;
    color: var(--acid);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
}

.feature-row-label {
    display: none;
}

.feature-row-copy {
    position: relative;
    z-index: 1;
}

.feature-row h3 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.25rem, 2.1vw, 1.75rem);
    line-height: 1;
    letter-spacing: .025em;
}

.feature-row-description {
    max-width: 245px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: .8rem;
    line-height: 1.45;
}

.feature-row-status {
    position: relative;
    z-index: 1;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: .85rem;
}

.feature-row-status span {
    color: var(--acid);
}

.feature-row-preview {
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 24px;
    border: 1px solid color-mix(in srgb, var(--acid) 45%, transparent);
    border-radius: 999px;
    padding: 6px 7px;
    background: color-mix(in srgb, var(--acid) 8%, transparent);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .02);
}

.preview-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(214, 243, 106, .3), color-mix(in srgb, var(--acid) 55%, transparent));
}

.preview-pill-dot {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--acid), color-mix(in srgb, var(--acid) 72%, white));
}

.preview-copy {
    flex: 1;
    min-width: 0;
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.4;
}

.preview-action {
    color: color-mix(in srgb, var(--acid) 72%, white);
    font-size: .76rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.invite {
    display: block;
    padding-top: 140px;
    padding-bottom: 170px;
}

.invite h2 {
    margin-bottom: 48px;
}

.invite-link {
    color: var(--black);
    font-size: 1.1rem;
}

footer {
    display: flex;
    justify-content: center;
    padding: 28px 0 36px;
    color: var(--muted);
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-align: center;
}

.protection-notice {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 10;
    max-width: min(360px, calc(100% - 48px));
    padding: 14px 18px;
    border: 1px solid var(--acid);
    background: var(--black);
    color: var(--ink);
    font-size: .85rem;
    line-height: 1.35;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    border-radius: 24px;
    transition: opacity .2s ease, transform .2s ease;
}

.protection-notice.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero,
.statement,
.features,
.invite,
.spotlight-section {
    opacity: 0;
    transform: translateY(28px);
    animation: none;
    transition: opacity .6s ease, transform .6s ease;
}

.hero.is-visible,
.statement.is-visible,
.features.is-visible,
.invite.is-visible,
.spotlight-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero.is-past,
.statement.is-past,
.features.is-past,
.invite.is-past,
.spotlight-section.is-past {
    opacity: .18;
    transform: translateY(-24px);
}

.hero.is-upcoming,
.statement.is-upcoming,
.features.is-upcoming,
.invite.is-upcoming,
.spotlight-section.is-upcoming {
    opacity: 0;
    transform: translateY(28px);
}

.invite-spacing {
    margin-bottom: 0;
}

@media (max-width: 700px) {
    .site-header,
    main,
    footer {
        width: min(100% - 40px, 1180px);
    }

    .site-header {
        min-height: 72px;
    }

    .announcement {
        max-width: calc(100% - 40px);
        margin: 36px 0 20px 20px;
        padding: 9px 14px;
        font-size: .78rem;
        text-align: center;
    }

    nav {
        display: none;
    }

    .hero {
        min-height: 360px;
        padding: 48px 0 40px;
    }

    h1 {
        margin-bottom: 48px;
        font-size: clamp(1.85rem, 9.4vw, 4.2rem);
    }

    .hero-bottom {
        align-items: flex-start;
        grid-template-columns: 1fr;
    }

    .system-status {
        width: 100%;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-action {
        justify-content: center;
        flex: 1 1 180px;
    }

    footer {
        align-items: center;
    }

    .protection-notice {
        right: 20px;
        bottom: 20px;
        left: 20px;
        max-width: none;
        text-align: center;
    }

    .statement,
    .features {
        display: block;
        padding: 88px 0;
    }

    .section-number {
        margin-bottom: 48px;
    }

    .feature-rows {
        width: min(100% - 40px, 1180px);
        padding-bottom: 16px;
    }

    .feature-rows {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        padding-top: 48px;
    }

    .feature-row {
        min-height: 230px;
        padding: 22px 18px 20px;
    }

    .feature-card-icon {
        top: 20px;
        left: 18px;
        width: 44px;
        height: 44px;
        border-radius: 13px;
    }

    .feature-card-number {
        top: 22px;
        right: 18px;
    }

    .feature-row h3 {
        font-size: 1.1rem;
    }

    .feature-row-preview {
        padding: 14px 16px;
    }

    .spotlight-section {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
        min-height: 0;
        padding: 64px 0;
    }

    .spotlight-copy,
    .spotlight-moderation .spotlight-copy,
    .spotlight-moderation .spotlight-preview {
        grid-column: 1;
        grid-row: auto;
    }

    .spotlight-preview {
        max-width: none;
        justify-self: stretch;
        padding: 16px;
    }

    .preview-copy {
        font-size: .94rem;
    }

    .contact {
        padding: 88px 0 120px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero,
    .statement,
    .features,
    .invite,
    .spotlight-section {
        opacity: 1;
        transform: none;
        animation: none;
        transition: none;
    }

    .feature-card,
    .feature-card-icon,
    .system-status {
        transition: none;
    }
}

@media (max-width: 460px) {
    .feature-rows {
        grid-template-columns: 1fr;
    }

    .feature-row {
        min-height: 250px;
    }
}