@font-face {
    font-family: "Libre Franklin";
    src: url("../fonts/Libre_Franklin/LibreFranklin-VariableFont_wght.ttf") format("truetype");
    font-style: normal;
    font-weight: 300 900;
    font-display: swap;
}

@font-face {
    font-family: "Anonymous Pro";
    src: url("../fonts/Anonymous_Pro/AnonymousPro-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

:root {
    --blue: #0084ff;
    --blue-soft: #6eb8ff;
    --ink: #e6e6e6;
    --muted: #a8a8a8;
    --muted-dark: #777;
    --canvas: #171717;
    --surface: #1d1d1d;
    --surface-bright: #222;
    --line: #303030;
    --line-bright: #464646;
    --font-primary: "Libre Franklin", sans-serif;
    --font-mono: "Anonymous Pro", monospace;
    --shell: 1160px;
    --header-height: 76px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
    scrollbar-color: var(--blue) var(--canvas);
    scrollbar-width: thin;
}

body {
    min-width: 320px;
    margin: 0;
    background: var(--canvas);
    color: var(--ink);
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body::before,
body::after {
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    z-index: 4;
    height: 180px;
    pointer-events: none;
    background: linear-gradient(to bottom, var(--canvas), transparent);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    -webkit-mask-image: linear-gradient(to bottom, #000, rgb(0 0 0 / 0.55) 40%, rgb(0 0 0 / 0.12) 78%, transparent);
    mask-image: linear-gradient(to bottom, #000, rgb(0 0 0 / 0.55) 40%, rgb(0 0 0 / 0.12) 78%, transparent);
}

body::after {
    top: auto;
    bottom: 0;
    background: linear-gradient(to top, var(--canvas), transparent);
    -webkit-mask-image: linear-gradient(to top, #000, rgb(0 0 0 / 0.55) 40%, rgb(0 0 0 / 0.12) 78%, transparent);
    mask-image: linear-gradient(to top, #000, rgb(0 0 0 / 0.55) 40%, rgb(0 0 0 / 0.12) 78%, transparent);
}

body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background: var(--canvas);
}

body::-webkit-scrollbar-thumb {
    border: 3px solid var(--canvas);
    background: var(--line-bright);
}

body::-webkit-scrollbar-thumb:hover {
    background: var(--blue);
}

img {
    display: block;
    max-width: 100%;
    user-select: none;
    -webkit-user-drag: none;
}

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

p,
h1,
h2,
h3 {
    margin: 0;
}

h1,
h2,
h3 {
    font-weight: 600;
    text-wrap: balance;
}

p {
    color: var(--muted);
    text-wrap: pretty;
}

.sentence-stack {
    display: flex;
    flex-direction: column;
    gap: 0.4em;
}

.sentence-stack > span {
    display: block;
}

.site-shell {
    width: min(var(--shell), calc(100% - 48px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 10;
    padding: 8px 12px;
    background: var(--blue);
    color: #071321;
    font-size: 0.875rem;
    font-weight: 600;
    transform: translateY(-160%);
    transition: transform 180ms ease-out;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 5;
    border-bottom: 1px solid var(--line);
    background: rgba(23, 23, 23, 0.97);
    transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.site-header.nav-hidden {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    min-height: var(--header-height);
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand img {
    width: 154px;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--muted);
    font-size: 0.875rem;
}

.site-nav a,
.footer-nav a,
.text-link {
    transition: color 180ms ease-out;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-nav a:hover,
.footer-nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
    color: var(--ink);
}

.nav-download {
    padding: 8px 14px;
    border: 1px solid var(--blue);
    color: var(--blue-soft) !important;
}

.nav-download:hover,
.nav-download:focus-visible {
    background: var(--blue);
    color: #071321 !important;
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: var(--ink);
    font: inherit;
}

.go-hero {
    display: grid;
    min-height: min(720px, calc(100vh - var(--header-height)));
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
    align-items: center;
    gap: clamp(52px, 9vw, 128px);
    padding-block: clamp(84px, 12vw, 150px);
    margin-bottom: clamp(96px, 16vw, 220px);
}

.go-hero h1 {
    max-width: none;
    font-size: clamp(2.75rem, 7.5vw, 6.5rem);
    line-height: 1;
    white-space: nowrap;
}

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

.go-description {
    max-width: 54ch;
    margin-top: 20px;
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 10px 16px;
    border: 1px solid transparent;
    font-size: 0.875rem;
    font-weight: 600;
    transition: border-color 180ms ease-out, background-color 180ms ease-out, color 180ms ease-out;
}

.button-primary {
    background: var(--blue);
    color: #071321;
}

.button-primary:hover,
.button-primary:focus-visible {
    border-color: var(--blue-soft);
    background: var(--blue-soft);
}

.button-secondary {
    border-color: var(--line-bright);
    color: var(--ink);
    background: transparent;
}

.button-secondary:hover,
.button-secondary:focus-visible {
    border-color: var(--blue);
    color: var(--blue-soft);
    background: color-mix(in srgb, var(--blue) 6%, transparent);
}

.text-link {
    color: var(--muted);
    font-size: 0.875rem;
}

.go-visual {
    display: grid;
    place-items: center;
    justify-self: center;
    min-height: 0;
}

.go-visual .tray-icon {
    width: min(190px, 42vw);
    height: auto;
    object-fit: contain;
}

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

.ov-stage {
    margin: 0;
    width: 100%;
}

.ov-desktop,
.ov-live,
.ov-settings {
    pointer-events: none;
    user-select: none;
}

.ov-chatbar {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 60px;
    padding: 10px 10px 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 30px;
    background: rgba(23, 23, 23, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.36), 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.ov-icon {
    display: grid;
    flex: 0 0 40px;
    place-items: center;
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, 0.68);
}

.ov-icon-send {
    color: rgba(255, 255, 255, 0.22);
}

.ov-live:has([data-ov-typed]:not(:empty)) .ov-icon-send {
    color: var(--blue);
}

[data-ov-typed]:empty::before {
    content: "Message Outview...";
    color: #6f6f74;
}

.ov-placeholder,
.ov-typed {
    flex: 1;
    min-width: 0;
    font-size: 0.95rem;
}

.ov-placeholder {
    color: #6f6f74;
}

.ov-typed {
    color: var(--ink);
}

.ov-stage-hero .ov-desktop {
    width: min(520px, 100%);
    margin-inline: auto;
}

.ov-stage-wide {
    margin-top: clamp(40px, 6vw, 72px);
}

.ov-live,
.ov-settings {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: min(650px, calc(100% - 36px));
    margin-inline: auto;
}

.ov-thread {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    width: 100%;
    min-height: calc((15px * 1.5 + 24px) * 3 + 20px);
    overflow: visible;
}

.ov-dock {
    position: relative;
    width: 100%;
}

.ov-chatbar {
    position: relative;
    z-index: 2;
}

html.motion-enabled .ov-live.chat-demo-started .ov-chatbar {
    animation: ov-rise 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.ov-bubble.ov-in {
    animation: ov-bubble-in 560ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes ov-rise {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes ov-bubble-in {
    from {
        opacity: 0;
        filter: blur(8px);
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        filter: blur(0);
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ov-chatbar,
    .ov-bubble.ov-in {
        animation: none;
        filter: none;
    }
}

.ov-bubble {
    max-width: 78%;
    padding: 12px 16px;
    border-radius: 20px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--ink);
    transition:
        opacity 640ms cubic-bezier(0.16, 1, 0.3, 1),
        filter 640ms cubic-bezier(0.16, 1, 0.3, 1),
        transform 640ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ov-bubble.ov-out {
    position: absolute;
    z-index: 0;
    margin: 0;
    opacity: 0;
    filter: blur(10px);
    transform: translateY(-120%);
    pointer-events: none;
}

.ov-bubble-user {
    align-self: flex-end;
    margin-left: auto;
    border-bottom-right-radius: 4px;
    background: var(--blue);
    color: #e6e6e6;
}

.ov-bubble-ai {
    align-self: flex-start;
    margin-right: auto;
    border-bottom-left-radius: 4px;
    background: #2a2a2a;
    color: #e6e6e6;
}

.ov-settings {
    align-items: stretch;
    gap: 18px;
}

.ov-about-id {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ov-about-id strong {
    display: block;
    font-size: 1.05rem;
}

.ov-about-wordmark {
    display: block;
    margin-top: 6px;
    opacity: 0.88;
}

html.motion-enabled .ov-removal.reveal-item {
    opacity: 0;
}

html.motion-enabled .reveal-group.is-revealed .ov-removal.reveal-item {
    animation: ov-rise 560ms cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: var(--reveal-item-delay, 0ms);
}

html.motion-enabled .ov-removal.reveal-item.motion-complete {
    animation: none !important;
    opacity: 1;
}

.ov-removal,
.ov-update {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 20px;
    border: 1px solid rgba(201, 51, 51, 0.28);
    border-radius: 12px;
    background: #1c1c1c;
}

.ov-update {
    display: grid;
    gap: 8px;
    border-color: rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.025);
}

.ov-removal h3,
.ov-update strong {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 600;
}

.ov-removal p,
.ov-update p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.ov-danger {
    flex: none;
    padding: 8px 18px;
    border: 1px solid rgba(201, 51, 51, 0.15);
    border-radius: 6px;
    background: rgba(201, 51, 51, 0.1);
    color: #c93333;
    font-size: 13px;
    font-weight: 500;
}

.ov-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.ov-meta span {
    display: block;
    color: #9a9a9a;
    font-size: 11px;
    font-weight: 700;
}

.ov-meta strong {
    display: block;
    margin-top: 5px;
    font-size: 14px;
}

.page-section {
    padding-block: clamp(92px, 13vw, 172px);
}

.features-section {
    position: relative;
    isolation: isolate;
    padding-block: clamp(96px, 16vw, 192px) clamp(144px, 18vw, 224px);
}

.features-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.1;
    background: url("assets/win11-wallpaper.webp") center / cover no-repeat;
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 78%, transparent);
    mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 78%, transparent);
    transition: opacity 900ms var(--motion-ease);
}

html.motion-enabled .features-section::before {
    opacity: 0;
}

html.motion-enabled .features-section.background-visible::before {
    opacity: 0.1;
}

.scope-section {
    padding-block: clamp(144px, 18vw, 224px);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 36px;
    align-items: center;
}

.section-heading h2,
.security-copy h2,
.download-section h2 {
    max-width: 14ch;
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 1;
}

.capability-section .heading-line {
    white-space: nowrap;
}

.section-heading p {
    max-width: 52ch;
    padding-top: 10px;
    font-size: 1.05rem;
}

@media (min-width: 861px) {
    .section-heading > p {
        justify-self: end;
        width: min(100%, 44ch);
        text-align: right;
    }
}

.security-section {
    padding-block: clamp(144px, 20vw, 256px);
}

.security-copy {
    max-width: 720px;
}

.security-copy p {
    max-width: 58ch;
    margin-top: 26px;
    color: var(--ink);
    font-size: 1.25rem;
    line-height: 1.4;
}


.faq-list {
    margin-top: 64px;
    border-top: 1px solid var(--line-bright);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    position: relative;
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-right: 32px;
    cursor: pointer;
    list-style: none;
    color: var(--muted);
    font-size: 1.05rem;
    font-weight: 600;
    user-select: none;
    -webkit-user-select: none;
    transition: color 180ms ease-out;
}

.faq-list details[open] summary {
    color: var(--ink);
}

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

.faq-icon {
    position: absolute;
    top: 50%;
    right: 0;
    width: 14px;
    height: 14px;
    transform: translateY(-50%);
}

.faq-icon::before,
.faq-icon::after {
    position: absolute;
    background: var(--blue);
    content: "";
}

.faq-icon::after {
    top: 50%;
    left: 0;
    width: 14px;
    height: 1px;
    transform: translateY(-50%);
}

.faq-icon::before {
    top: 0;
    left: 50%;
    width: 1px;
    height: 14px;
    transform: translateX(-50%) scaleY(1);
    transform-origin: center;
    transition:
        opacity 220ms ease-out,
        transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-list details[open] .faq-icon::before {
    opacity: 0;
    transform: translateX(-50%) scaleY(0);
}

.faq-list details .faq-answer {
    height: 0;
    overflow: hidden;
    transition: height 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-list details .faq-answer p {
    max-width: 70ch;
    padding: 0 48px 24px 0;
    color: var(--muted);
}

code {
    padding: 2px 5px;
    background: var(--surface-bright);
    color: var(--ink);
    font-family: var(--font-mono);
    font-size: 0.9em;
}

.download-section {
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    text-align: center;
    padding-block: clamp(76px, 10vw, 128px);
}

.download-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.5;
    background: url("assets/section-background.webp") center / cover no-repeat;
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 78%, transparent);
    mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 78%, transparent);
    transition: opacity 1800ms var(--motion-ease);
}

html.motion-enabled .download-section::before {
    opacity: 0;
}

html.motion-enabled .download-section.background-visible::before {
    opacity: 0.5;
}

.download-section p {
    margin-top: 22px;
    font-size: 1.05rem;
}

.download-section .button {
    flex: 0 0 auto;
}



.download-dialog {
    width: min(960px, calc(100% - 32px));
    max-width: none;
    padding: 0;
    border: 1px solid var(--line-bright);
    border-radius: 6px;
    background: var(--surface);
    color: var(--ink);
}

.download-dialog::backdrop {
    background: rgb(0 0 0 / 76%);
    backdrop-filter: blur(3px);
}

.download-dialog[open] {
    animation: dialog-in 300ms var(--motion-ease) both;
}

.download-dialog[open]::backdrop {
    animation: backdrop-in 240ms ease-out both;
}

.download-dialog-inner {
    position: relative;
    display: grid;
    justify-items: center;
    padding: 36px 40px 28px;
    text-align: center;
}

.download-dialog .dialog-close {
    position: absolute;
    top: 18px;
    right: 18px;
    border: 0;
    background: transparent;
    color: var(--muted);
    font: inherit;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
}

.tutorial-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 18px;
    object-fit: contain;
}

.download-dialog h2 {
    margin-top: 10px;
    font-size: clamp(2.25rem, 7vw, 3.75rem);
    line-height: 0.98;
    letter-spacing: -0.035em;
}

.download-dialog #tutorial-description {
    margin-top: 14px;
    color: var(--muted);
}

.tutorial-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 820px;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

.tutorial-steps li {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    justify-self: center;
    width: min(100%, 240px);
    padding: 0;
}

.step-number {
    display: block;
    width: 48px;
    color: var(--blue);
    font-family: var(--font-primary);
    font-size: 4.25rem;
    font-weight: 400;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1;
    line-height: 0.78;
    letter-spacing: -0.04em;
    text-align: right;
}

.tutorial-steps strong {
    display: block;
    color: var(--ink);
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.05;
    white-space: nowrap;
}

.step-copy {
    display: grid;
    gap: 6px;
    min-width: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.3;
}

.step-copy > span {
    text-wrap: pretty;
}

.tutorial-thanks {
    margin-top: 32px;
    color: var(--ink);
}

.tutorial-done {
    margin-top: 28px;
}

@media (max-width: 1100px) {
    .download-dialog {
        width: min(760px, calc(100% - 32px));
    }

    .tutorial-steps {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 560px;
    }

    .tutorial-steps li {
        grid-template-columns: 64px minmax(0, 1fr);
    }
}

.site-footer {
    position: relative;
    z-index: 5;
    border-top: 1px solid var(--line);
    background: var(--canvas);
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 40px;
    align-items: center;
    padding-block: 44px;
}

.footer-brand {
    max-width: 260px;
    align-self: center;
}

.footer-brand img {
    width: 128px;
    height: auto;
    --footer-logo-opacity: 1;
}

.footer-brand p {
    margin-top: 14px;
    font-size: 0.8rem;
    line-height: 1.55;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-self: center;
    justify-self: end;
    color: var(--muted);
    font-size: 0.78rem;
}

html.motion-enabled .footer-inner.reveal-group.is-revealed .footer-brand img {
    animation: footer-logo-fade-in var(--footer-logo-duration, 2280ms) var(--motion-ease) both;
}

html.motion-enabled .footer-inner:not(.is-revealed) .footer-brand img {
    opacity: 0;
}

@keyframes footer-logo-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: var(--footer-logo-opacity);
    }
}

:focus-visible {
    outline: 2px solid var(--blue-soft);
    outline-offset: 4px;
}

@media (max-width: 820px) {
    .go-hero {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 64px;
    }

    .go-visual {
        max-width: 620px;
    }

    .ov-removal {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .section-heading p {
        padding-top: 0;
    }

    .section-heading > p {
        justify-self: start;
        width: auto;
        text-align: left;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-nav {
        justify-self: start;
    }
}

@media (max-width: 640px) {
    
:root {
        --header-height: 68px;
    }

    .site-shell {
        width: min(var(--shell), calc(100% - 36px));
    }

    .go-visual {
        max-width: 620px;
    }

    .download-dialog-inner {
        padding: 32px 24px 24px;
    }

    .tutorial-steps {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 340px;
    }


    .header-inner {
        position: relative;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 8px 0 8px 12px;
        cursor: pointer;
        font-family: var(--font-mono);
        font-size: 0.75rem;
    }

    .menu-toggle-icon {
        display: grid;
        gap: 4px;
    }

    .menu-toggle-icon i {
        display: block;
        width: 18px;
        height: 1px;
        background: var(--blue);
        transition: transform 180ms ease-out;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-icon i:first-child {
        transform: translateY(2.5px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-icon i:last-child {
        transform: translateY(-2.5px) rotate(-45deg);
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 1px);
        right: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 0 16px;
        border-bottom: 1px solid var(--line);
        background: var(--canvas);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        visibility: hidden;
        transition: opacity 180ms ease-out, transform 220ms cubic-bezier(0.22, 1, 0.36, 1), visibility 220ms;
    }

    .site-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        visibility: visible;
    }

    .site-nav a {
        padding: 14px 0;
    }

    .site-nav .nav-download {
        margin-top: 8px;
        text-align: center;
    }

    .go-hero {
        gap: 48px;
        padding-block: 68px 88px;
    }

    .go-hero h1 {
        font-size: clamp(2.4rem, 11vw, 3.6rem);
        white-space: nowrap;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .button {
        width: 100%;
    }

    .page-section {
        padding-block: 88px;
    }

    .features-section,
    .scope-section {
        padding-block: 128px;
    }

    .section-heading h2,
    .security-copy h2,
.download-section h2 {
        font-size: clamp(2.5rem, 14vw, 4.2rem);
    }


    .faq-list {
        margin-top: 48px;
    }

    .faq-list summary {
        min-height: 68px;
        font-size: 0.98rem;
    }

    .faq-list details .faq-answer p {
        padding-right: 20px;
    }

    .download-section {
        align-items: center;
        flex-direction: column;
        padding-block: 78px 92px;
    }

    .tutorial-icon {
        width: 170px;
        height: 170px;
    }

    .tutorial-steps li {
        grid-template-columns: 76px minmax(0, 1fr);
        gap: 14px;
    }
}

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

    .download-dialog[open],
    .download-dialog[open]::backdrop {
        animation: none;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
    }
}

/* ——— One-shot text reveal motion ——— */

html.motion-enabled .reveal-group.is-revealed .button-primary.reveal-item,
html.motion-enabled .button-primary.reveal-item.is-revealed {
    animation: button-primary-surface-in 560ms var(--motion-ease) both;
    animation-delay: var(--reveal-item-delay, 0ms);
}

html.motion-enabled .reveal-group.is-revealed .button-secondary.reveal-item,
html.motion-enabled .button-secondary.reveal-item.is-revealed {
    animation: button-secondary-surface-in 560ms var(--motion-ease) both;
    animation-delay: var(--reveal-item-delay, 0ms);
}

html.motion-enabled .reveal-item.reveal-whole {
    opacity: 0;
}

html.motion-enabled .menu-toggle.reveal-item,
html.motion-enabled .menu-toggle.reveal-whole {
    opacity: 1;
}

@keyframes button-primary-surface-in {
    from {
        opacity: 0;
        background-color: transparent;
        border-color: transparent;
    }

    to {
        opacity: 1;
        background-color: var(--blue);
        border-color: transparent;
    }
}

@keyframes button-secondary-surface-in {
    from {
        opacity: 0;
        border-color: transparent;
    }
    to {
        opacity: 1;
        border-color: var(--line-bright);
    }
}
:root {
    --motion-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --reveal-dark: #5f5f5f;
}

html.motion-enabled .reveal-item .reveal-char {
    opacity: 0;
    color: var(--reveal-dark);
}

.reveal-text-flow {
    display: inline;
}

.reveal-word {
    display: inline-block;
}

.reveal-char {
    display: inline-block;
}

html.motion-enabled .reveal-group.is-revealed .reveal-item .reveal-char,
html.motion-enabled .reveal-item.is-revealed .reveal-char {
    animation: reveal-character 420ms var(--motion-ease) both;
    animation-delay: calc(var(--reveal-item-delay, 0ms) + (var(--char-index, 0) * var(--char-step, 18ms)));
}
html.motion-enabled .faq-answer-line .reveal-char {
    animation-duration: 300ms;
}

html.motion-enabled .stream-keep,
html.motion-enabled .stream-remove {
    transition: color 1960ms var(--motion-ease) 140ms;
}

html.motion-enabled .stream-keep {
    color: var(--blue);
}

html.motion-enabled .stream-remove {
    color: #c93333;
}

html.motion-enabled .reveal-item.motion-complete .stream-keep,
html.motion-enabled .reveal-item.motion-complete .stream-remove {
    color: var(--ink);
}

@keyframes reveal-character {
    0% {
        opacity: 0;
        color: var(--reveal-dark);
    }

    38% {
        opacity: 1;
        color: var(--reveal-dark);
    }

    100% {
        opacity: 1;
        color: inherit;
    }
}

html.motion-enabled .reveal-visual {
    opacity: 0;
    filter: blur(9px);
    transform: scale(0.58);
    transform-origin: center;
}

html.motion-enabled .reveal-visual.is-revealed {
    animation: reveal-visual 1400ms var(--motion-ease) both;
}

@keyframes reveal-visual {
    58% {
        opacity: 1;
        filter: blur(0);
    }

    100% {
        opacity: 1;
        filter: blur(0);
        transform: scale(1);
    }
}

html.motion-enabled .reveal-visual.reveal-spin {
    filter: none;
    transform: rotate(0deg) translateZ(0);
    transform-origin: center;
    backface-visibility: hidden;
}

html.motion-enabled .reveal-visual.reveal-spin.is-revealed {
    animation: reveal-spin-forward 1380ms cubic-bezier(0.72, 0, 0.18, 1.22) both;
    will-change: transform, opacity;
}

@keyframes reveal-spin-forward {
    from {
        opacity: 0;
        transform: rotate(0deg) translateZ(0);
    }

    to {
        opacity: 1;
        transform: rotate(360deg) translateZ(0);
    }
}

html.motion-enabled .reveal-item.motion-complete .reveal-char {
    opacity: 1;
    color: inherit;
    animation: none !important;
}

html.motion-enabled .reveal-visual.motion-complete {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none !important;
    will-change: auto;
}

html.motion-enabled .site-header.motion-complete,
html.motion-enabled .nav-download.motion-complete {
    animation: none !important;
}

html.motion-enabled .nav-download.motion-complete {
    border-color: var(--blue);
}

html.motion-enabled .button-primary.reveal-item.motion-complete,
html.motion-enabled .button-secondary.reveal-item.motion-complete {
    animation: none !important;
    opacity: 1;
}

html.motion-enabled .button-secondary.reveal-item.motion-complete {
    border-color: var(--line-bright);
}

.faq-list details[open] summary .reveal-char {
    color: var(--ink) !important;
}

.faq-list details .faq-answer p {
    color: #c2c2c2;
}
.button,
.nav-cta,
.menu-toggle,
.text-link,
.site-nav a,
.footer-nav a,
.dialog-close {
    transition:
        color 180ms ease-out,
        background-color 180ms ease-out,
        border-color 180ms ease-out,
        opacity 180ms ease-out,
        transform 120ms ease-out;
}

.button:active,
.nav-cta:active,
.menu-toggle:active,
.text-link:active,
.site-nav a:active,
.footer-nav a:active,
.dialog-close:active {
    transform: scale(0.98);
}

.site-nav.is-open > * {
    animation: menu-item-in 220ms var(--motion-ease) both;
    animation-delay: calc((var(--menu-order, 0) + 1) * 32ms);
}

.site-nav.is-open > :nth-child(1) {
    --menu-order: 0;
}

.site-nav.is-open > :nth-child(2) {
    --menu-order: 1;
}

.site-nav.is-open > :nth-child(3) {
    --menu-order: 2;
}

.site-nav.is-open > :nth-child(4) {
    --menu-order: 3;
}

@keyframes menu-item-in {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.updates-dialog[open] {
    animation: dialog-in 260ms var(--motion-ease) both;
}

.updates-dialog::backdrop {
    animation: backdrop-in 220ms ease-out both;
}

@keyframes dialog-in {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.99);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes backdrop-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.discord-dialog {
    width: min(520px, calc(100% - 32px));
}

.discord-dialog h2 {
    max-width: none;
}

.discord-dialog > .updates-dialog-inner > p {
    max-width: 42ch;
    margin-top: 22px;
}

.dialog-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

html.motion-enabled .site-header {
    animation: header-enter 760ms var(--motion-ease);
}

html.motion-enabled .header-inner.reveal-group.is-revealed .nav-download {
    animation:
        cta-outline-in 900ms var(--motion-ease) 180ms backwards,
        nav-item-fade-in 520ms var(--motion-ease) var(--nav-fade-delay, 140ms) backwards;
}

html.motion-enabled .header-inner.reveal-group.is-revealed .site-nav > .nav-fade-item:not(.nav-download),
html.motion-enabled .header-inner.reveal-group.is-revealed .menu-toggle {
    animation: nav-item-fade-in 520ms var(--motion-ease) var(--nav-fade-delay, 140ms) backwards;
}

@keyframes nav-item-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes header-enter {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cta-outline-in {
    0%, 24% {
        border-color: transparent;
    }

    100% {
        border-color: var(--blue);
    }
}
@media (prefers-reduced-motion: reduce) {
    html.motion-enabled .features-section::before {
        opacity: 0.1;
        transition: none;
    }

    html.motion-enabled .download-section::before {
        opacity: 0.5;
        transition: none;
    }

    html.motion-enabled .reveal-item .reveal-char,
    html.motion-enabled .reveal-visual {
        opacity: 1;
        color: inherit;
        filter: none;
        transform: none;
        animation: none;
    }

    html.motion-enabled .site-header,
    html.motion-enabled .download-section.reveal-group > .button,
    .site-nav.is-open > *,
    .updates-dialog[open],
    .updates-dialog::backdrop {
        animation: none;
    }

    .button:active,
    .nav-cta:active,
    .menu-toggle:active,
    .text-link:active,
    .site-nav a:active,
    .footer-nav a:active,
    .dialog-close:active {
        transform: none;
    }
}
@media (prefers-reduced-motion: reduce) {
    html.motion-enabled .button-primary.reveal-item,
    html.motion-enabled .button-secondary.reveal-item {
        animation: none !important;
    }
}
