:root {
    color-scheme: dark;
    --ink: #f8f5fb;
    --muted: #bdb5c6;
    --quiet: #8f8798;
    --black: #0b080d;
    --surface: #141017;
    --surface-2: #1c1620;
    --surface-3: #27202c;
    --purple: #4d1768;
    --purple-bright: #7e2ca5;
    --orange: #ff7a1a;
    --orange-light: #ffad4a;
    --cyan: #42c8c2;
    --line: rgba(255, 255, 255, 0.13);
    --line-strong: rgba(255, 255, 255, 0.22);
    --shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
    --shell: 1240px;
    --header-height: 76px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--black);
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--black);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

svg {
    width: 1.2em;
    height: 1.2em;
    stroke-width: 1.8;
}

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

button,
input,
textarea,
select {
    color: inherit;
    font: inherit;
    letter-spacing: 0;
}

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

:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 3px;
}

::selection {
    background: var(--orange);
    color: #160b07;
}

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

h1,
h2,
h3 {
    line-height: 1.1;
    letter-spacing: 0;
}

h1 {
    font-size: clamp(2.8rem, 5rem, 5rem);
}

h2 {
    font-size: clamp(2rem, 3rem, 3rem);
}

h3 {
    font-size: 1.25rem;
}

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

.narrow-shell {
    max-width: 790px;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    border-radius: 4px;
    background: var(--orange);
    color: #130a05;
    font-weight: 800;
    transform: translateY(-160%);
}

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

.announcement {
    position: relative;
    z-index: 51;
    padding: 8px 0;
    background: var(--orange);
    color: #1b0c04;
    text-align: center;
    font-size: 0.88rem;
    font-weight: 800;
}

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    background: rgba(11, 8, 13, 0.74);
    backdrop-filter: blur(16px);
    transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
    border-color: var(--line);
    background: rgba(11, 8, 13, 0.94);
}

.header-inner {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
}

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

.desktop-nav {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}

.desktop-nav a {
    position: relative;
    padding: 25px 0 22px;
    color: #d9d3dd;
    font-size: 0.92rem;
    font-weight: 680;
    white-space: nowrap;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: 16px;
    left: 0;
    height: 2px;
    background: var(--orange);
    content: "";
    transform: scaleX(0);
    transition: transform 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
    color: #fff;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-button {
    display: inline-grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    cursor: pointer;
}

.icon-button:hover {
    border-color: var(--orange);
    background: rgba(255, 122, 26, 0.12);
}

.menu-button {
    display: none;
}

.mobile-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    border-bottom: 1px solid var(--line);
    background: #100c12;
    box-shadow: var(--shadow);
}

.mobile-nav .shell {
    display: grid;
    padding-block: 12px 24px;
}

.mobile-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-weight: 750;
}

.flash-stack {
    position: fixed;
    z-index: 80;
    top: calc(var(--header-height) + 16px);
    right: 24px;
    width: min(430px, calc(100% - 48px));
}

.flash {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
    padding: 14px 16px;
    border: 1px solid var(--line-strong);
    border-radius: 6px;
    background: #211925;
    box-shadow: var(--shadow);
}

.flash svg {
    flex: 0 0 auto;
    margin-top: 3px;
}

.flash-success svg {
    color: var(--cyan);
}

.flash-error svg {
    color: #ff665f;
}

.eyebrow {
    margin-bottom: 14px;
    color: var(--orange-light);
    font-size: 0.77rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 11px 18px;
    border: 1px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 800;
    line-height: 1.2;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--orange);
    color: #170b04;
    box-shadow: 0 10px 30px rgba(255, 122, 26, 0.18);
}

.button-primary:hover {
    background: #ff923d;
}

.button-secondary {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
}

.button-secondary:hover {
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.12);
}

.button-quiet {
    border-color: var(--line);
    background: transparent;
    color: var(--muted);
}

.button-large {
    min-height: 54px;
    padding: 15px 22px;
}

.button-full {
    width: 100%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--orange-light);
    font-weight: 800;
}

.text-link svg {
    transition: transform 160ms ease;
}

.text-link:hover svg {
    transform: translateX(4px);
}

.hero {
    position: relative;
    display: grid;
    min-height: min(78vh, 760px);
    overflow: hidden;
    align-items: center;
    margin-top: calc(var(--header-height) * -1);
    padding-top: var(--header-height);
    isolation: isolate;
}

.hero-media,
.hero-shade {
    position: absolute;
    z-index: -2;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-media {
    object-fit: cover;
    object-position: center;
}

.hero-shade {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(9, 6, 11, 0.97) 0%, rgba(9, 6, 11, 0.88) 34%, rgba(9, 6, 11, 0.24) 72%, rgba(9, 6, 11, 0.48) 100%),
        linear-gradient(0deg, var(--black) 0%, transparent 22%);
}

.hero-content {
    padding-block: 88px 78px;
}

.hero-content > * {
    max-width: 620px;
}

.hero h1 {
    max-width: 720px;
    margin-bottom: 7px;
    color: #fff;
    font-size: clamp(4rem, 7.2rem, 7.2rem);
    font-weight: 900;
}

.hero-copy {
    margin-bottom: 16px;
    color: #fff;
    font-size: clamp(1.7rem, 2.45rem, 2.45rem);
    font-weight: 760;
    line-height: 1.18;
}

.hero-detail {
    color: #d3cbd7;
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 18px 0 0;
    color: #d2c9d6;
    font-size: 0.88rem;
}

.hero-note svg {
    color: var(--cyan);
}

.signal-band {
    border-block: 1px solid var(--line);
    background: #110d13;
}

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

.signal-grid > div {
    display: flex;
    min-height: 92px;
    align-items: center;
    gap: 12px;
    padding: 20px 22px;
    border-left: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.88rem;
}

.signal-grid > div:last-child {
    border-right: 1px solid var(--line);
}

.signal-grid svg {
    flex: 0 0 auto;
    color: var(--orange);
    font-size: 1.5rem;
}

.signal-grid strong {
    display: block;
    color: #fff;
    font-size: 0.96rem;
}

.section {
    padding-block: 104px;
}

.section-heading {
    max-width: 730px;
    margin-bottom: 48px;
}

.section-heading h2 {
    margin-bottom: 18px;
}

.section-heading > p:last-child,
.split-heading > p {
    color: var(--muted);
    font-size: 1.05rem;
}

.split-heading {
    display: grid;
    max-width: none;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
    align-items: end;
    gap: 70px;
}

.split-heading h2 {
    margin-bottom: 0;
}

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

.apps-overview {
    overflow: hidden;
    background: #0d0a0f;
}

.app-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.app-tile {
    position: relative;
    display: grid;
    min-height: 240px;
    align-content: start;
    padding: 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.015);
    transition: background 160ms ease;
}

.app-tile:hover {
    background: rgba(255, 122, 26, 0.07);
}

.app-icon {
    display: grid;
    width: 50px;
    height: 50px;
    margin-bottom: 30px;
    place-items: center;
    border: 1px solid rgba(255, 122, 26, 0.5);
    border-radius: 6px;
    background: rgba(255, 122, 26, 0.1);
    color: var(--orange-light);
    font-size: 1.4rem;
}

.app-status,
.status-label {
    color: var(--cyan);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.app-tile strong {
    margin: 7px 40px 3px 0;
    color: #fff;
    font-size: 1.22rem;
}

.app-tile > span:last-of-type {
    color: var(--muted);
}

.tile-arrow {
    position: absolute;
    right: 25px;
    bottom: 26px;
    color: var(--quiet);
}

.feature-story {
    position: relative;
    overflow: hidden;
    border-block: 1px solid var(--line);
    background: #171019;
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
    gap: 90px;
}

.phone-scene {
    position: relative;
    height: 690px;
}

.phone-scene::before {
    position: absolute;
    inset: 8% -30% -8%;
    border: 1px solid rgba(66, 200, 194, 0.25);
    border-radius: 50%;
    content: "";
}

.phone-scene img {
    position: relative;
    width: 326px;
    height: 650px;
    margin: 0 auto;
    border: 8px solid #302836;
    border-radius: 34px;
    box-shadow: 0 38px 90px rgba(0, 0, 0, 0.55);
    object-fit: cover;
    object-position: top;
}

.story-copy h2 {
    max-width: 700px;
    margin-bottom: 24px;
}

.story-copy > p:not(.eyebrow) {
    max-width: 650px;
    color: var(--muted);
    font-size: 1.08rem;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 32px 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.check-list svg {
    flex: 0 0 auto;
    margin-top: 4px;
    color: var(--cyan);
}

.living-room {
    background: #0b080d;
}

.tv-frame {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    padding: 10px;
    border: 1px solid #413947;
    border-radius: 8px;
    background: #09070a;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.45);
}

.tv-frame::after {
    position: absolute;
    z-index: -1;
    right: 18%;
    bottom: -42px;
    left: 18%;
    height: 42px;
    border-top: 2px solid #403846;
    content: "";
}

.tv-frame img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.discover-spotlight {
    border-block: 1px solid var(--line);
    background: #19121d;
}

.spotlight-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
    align-items: center;
    gap: 70px;
}

.spotlight-art {
    position: relative;
}

.spotlight-art img {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 6px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.play-medallion {
    position: absolute;
    right: 22px;
    bottom: 22px;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 50%;
    background: var(--orange);
    color: #170b04;
}

.spotlight-grid h2 {
    margin-bottom: 20px;
}

.spotlight-grid > div:last-child > p:not(.eyebrow) {
    color: var(--muted);
}

.spotlight-title {
    display: grid;
    margin: 28px 0;
    padding-left: 16px;
    border-left: 3px solid var(--orange);
}

.spotlight-title strong {
    font-size: 1.2rem;
}

.spotlight-title span {
    color: var(--muted);
    font-size: 0.9rem;
}

.future-preview {
    background: #0f0c11;
}

.future-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
    gap: 90px;
}

.future-grid > div:first-child > p:not(.eyebrow) {
    margin-bottom: 28px;
    color: var(--muted);
}

.roadmap-list {
    border-top: 1px solid var(--line);
}

.roadmap-list > div {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}

.roadmap-list span {
    color: var(--orange);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.83rem;
}

.journal-preview {
    border-top: 1px solid var(--line);
    background: #141016;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.post-card {
    min-width: 0;
}

.post-image {
    display: block;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 6px;
}

.post-image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 240ms ease;
}

.post-image:hover img {
    transform: scale(1.025);
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--quiet);
    font-size: 0.78rem;
    font-weight: 720;
    text-transform: uppercase;
}

.post-meta span {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--orange);
}

.post-card h3 {
    margin-bottom: 12px;
    font-size: 1.35rem;
}

.post-card h3 a:hover {
    color: var(--orange-light);
}

.post-card > p:not(.post-meta) {
    color: var(--muted);
}

.support-band {
    border-block: 1px solid rgba(255, 122, 26, 0.28);
    background: #2a1422;
}

.support-grid,
.newsletter-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 70px;
}

.support-grid h2,
.newsletter-inner h2 {
    margin-bottom: 12px;
}

.support-grid p:not(.eyebrow),
.newsletter-inner p:not(.eyebrow) {
    max-width: 720px;
    margin-bottom: 0;
    color: #d0c5d1;
}

.support-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.faq-section {
    background: #0d0a0f;
}

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

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

.faq-list summary {
    display: flex;
    min-height: 74px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 780;
    list-style: none;
}

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

.faq-list summary svg {
    flex: 0 0 auto;
    color: var(--orange);
    transition: transform 160ms ease;
}

.faq-list details[open] summary svg {
    transform: rotate(45deg);
}

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

.newsletter-band {
    padding-block: 68px;
    background: var(--purple);
}

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

.footer-lead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-block: 54px 40px;
    border-bottom: 1px solid var(--line);
}

.footer-logo {
    width: 180px;
    height: auto;
}

.footer-lead p {
    margin: 6px 0 0;
    color: var(--muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-block: 50px;
}

.footer-grid h2 {
    margin-bottom: 16px;
    color: #fff;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.footer-grid a {
    display: block;
    width: fit-content;
    margin: 9px 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.footer-grid a:hover {
    color: var(--orange-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-block: 24px 34px;
    border-top: 1px solid var(--line);
    color: var(--quiet);
    font-size: 0.78rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom p:last-child {
    max-width: 600px;
    text-align: right;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding-block: 112px 96px;
    border-bottom: 1px solid var(--line);
    background: #171019;
}

.page-hero::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 6px;
    background: var(--orange);
    content: "";
}

.page-hero .shell {
    position: relative;
}

.page-hero h1 {
    max-width: 880px;
    margin-bottom: 24px;
}

.page-hero .shell > p:last-child {
    max-width: 720px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1.18rem;
}

.page-hero .button {
    margin-top: 28px;
}

.app-detail-list {
    background: #0d0a0f;
}

.app-detail {
    display: grid;
    grid-template-columns: 70px 90px minmax(0, 1fr);
    align-items: start;
    gap: 28px;
    padding: 52px 0;
    border-bottom: 1px solid var(--line);
    scroll-margin-top: 100px;
}

.app-detail:first-child {
    border-top: 1px solid var(--line);
}

.detail-number {
    color: var(--quiet);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.82rem;
}

.detail-icon {
    display: grid;
    width: 72px;
    height: 72px;
    place-items: center;
    border: 1px solid rgba(255, 122, 26, 0.45);
    border-radius: 6px;
    background: rgba(255, 122, 26, 0.08);
    color: var(--orange);
    font-size: 1.8rem;
}

.app-detail h2 {
    margin: 8px 0 5px;
    font-size: 2rem;
}

.app-detail .lead {
    color: #fff;
    font-weight: 750;
}

.app-detail p:last-child {
    max-width: 760px;
    color: var(--muted);
}

.capability-section {
    border-top: 1px solid var(--line);
    background: #171019;
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.capability {
    min-height: 240px;
    padding: 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.capability > svg {
    margin-bottom: 30px;
    color: var(--cyan);
    font-size: 1.65rem;
}

.capability p {
    margin-bottom: 0;
    color: var(--muted);
}

.app-cta .shell {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 38px;
}

.app-cta img {
    width: 140px;
}

.app-cta h2 {
    margin-bottom: 0;
}

.download-hero {
    background: #18111c;
}

.download-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    gap: 38px;
    align-items: start;
}

.download-product {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    align-items: center;
    gap: 38px;
    padding: 38px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #18121b;
}

.download-product img {
    width: 210px;
}

.download-product h2 {
    margin: 9px 0 14px;
    font-size: 2.1rem;
}

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

.download-product .button span {
    padding-left: 8px;
    border-left: 1px solid rgba(0, 0, 0, 0.22);
    font-size: 0.82rem;
}

.download-note,
.availability-note {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 16px 0 0;
    font-size: 0.83rem;
}

.download-note svg {
    flex: 0 0 auto;
    margin-top: 3px;
    color: var(--cyan);
}

.availability-note {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--surface-3);
}

.release-panel {
    padding: 30px;
    border-top: 3px solid var(--orange);
    background: #1a1520;
}

.release-panel h2 {
    font-size: 1.45rem;
}

.release-panel > p {
    color: var(--muted);
}

.release-panel dl {
    margin: 24px 0 0;
}

.release-panel dl div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 0;
    border-top: 1px solid var(--line);
}

.release-panel dt {
    color: var(--quiet);
}

.release-panel dd {
    margin: 0;
    text-align: right;
    font-weight: 700;
}

.checksum {
    margin-top: 20px;
}

.checksum summary {
    cursor: pointer;
    color: var(--orange-light);
    font-weight: 750;
}

.checksum p {
    margin: 14px 0 4px;
    color: var(--quiet);
    font-size: 0.75rem;
}

.checksum code {
    display: block;
    overflow-wrap: anywhere;
    color: var(--muted);
    font-size: 0.7rem;
}

.install-steps {
    border-block: 1px solid var(--line);
    background: #151017;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    list-style: none;
}

.steps li {
    min-height: 250px;
    padding: 26px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.steps li > span {
    display: grid;
    width: 38px;
    height: 38px;
    margin-bottom: 44px;
    place-items: center;
    border-radius: 50%;
    background: var(--orange);
    color: #180c05;
    font-weight: 900;
}

.steps h3 {
    margin-bottom: 8px;
}

.steps p {
    margin-bottom: 0;
    color: var(--muted);
}

.platform-list {
    border-top: 1px solid var(--line);
}

.platform-list > div {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 20px 8px;
    border-bottom: 1px solid var(--line);
}

.platform-list svg {
    color: var(--orange);
    font-size: 1.35rem;
}

.platform-list span {
    color: var(--cyan);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.journal-hero {
    background: #161018;
}

.featured-post {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
    align-items: center;
    gap: 52px;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--line);
}

.featured-post-image {
    overflow: hidden;
    border-radius: 6px;
}

.featured-post-image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.featured-post h2 {
    margin: 12px 0 18px;
}

.featured-post h2 a:hover {
    color: var(--orange-light);
}

.featured-post > div > p:not(.post-meta) {
    color: var(--muted);
}

.article-page {
    padding-block: 90px 110px;
}

.article-header {
    margin-bottom: 46px;
    text-align: center;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
    color: var(--muted);
    font-weight: 750;
}

.article-header h1 {
    margin-bottom: 24px;
    font-size: clamp(2.8rem, 4.6rem, 4.6rem);
}

.article-deck {
    color: var(--muted);
    font-size: 1.2rem;
}

.article-header .post-meta {
    justify-content: center;
}

.article-cover {
    max-width: 1120px;
    margin-bottom: 68px;
}

.article-cover img {
    width: 100%;
    aspect-ratio: 16 / 8.5;
    border-radius: 6px;
    object-fit: cover;
}

.article-body {
    color: #d8d1dc;
    font-size: 1.08rem;
}

.article-body h2 {
    margin: 52px 0 18px;
    color: #fff;
    font-size: 2rem;
}

.article-body h3 {
    margin: 36px 0 14px;
    color: #fff;
}

.article-body p,
.article-body ul,
.article-body ol,
.article-body blockquote {
    margin-bottom: 24px;
}

.article-body a {
    color: var(--orange-light);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-body blockquote {
    margin-inline: 0;
    padding: 18px 24px;
    border-left: 3px solid var(--orange);
    background: var(--surface);
}

.article-body img {
    width: 100%;
    height: auto;
    margin-block: 34px;
    border-radius: 6px;
}

.article-cta {
    padding-block: 72px;
    border-block: 1px solid var(--line);
    background: #211524;
    text-align: center;
}

.article-cta h2 {
    margin-bottom: 12px;
}

.article-cta p {
    color: var(--muted);
}

.support-hero,
.community-hero {
    padding-block: 132px 114px;
}

.reason-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.reason-grid article {
    min-height: 250px;
    padding: 32px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.reason-grid article > svg,
.reason-grid article > span > svg {
    margin-bottom: 38px;
    color: var(--orange);
    font-size: 1.6rem;
}

.reason-grid h2,
.reason-grid h3 {
    font-size: 1.35rem;
}

.reason-grid p {
    color: var(--muted);
}

.free-promise {
    border-block: 1px solid var(--line);
    background: #18111c;
}

.free-promise .shell {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    align-items: center;
    gap: 55px;
}

.free-promise p:last-child {
    color: var(--muted);
}

.future-hero {
    background: #151019;
}

.roadmap {
    background: #0e0b10;
}

.roadmap-item {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr) 180px;
    align-items: start;
    gap: 40px;
    padding: 60px 0;
    border-bottom: 1px solid var(--line);
}

.roadmap-item:first-child {
    border-top: 1px solid var(--line);
}

.roadmap-marker {
    color: var(--orange);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.roadmap-item h2 {
    margin-bottom: 16px;
    font-size: 2rem;
}

.roadmap-item p:last-child {
    max-width: 760px;
    margin-bottom: 0;
    color: var(--muted);
}

.roadmap-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.roadmap-icons svg {
    width: 48px;
    height: 48px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--cyan);
}

.auth-page {
    display: grid;
    min-height: calc(100vh - var(--header-height));
    grid-template-columns: minmax(0, 1.25fr) minmax(420px, 0.75fr);
}

.auth-visual {
    position: sticky;
    top: var(--header-height);
    height: calc(100vh - var(--header-height));
    overflow: hidden;
}

.auth-visual::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 55%, #0b080d 100%);
    content: "";
}

.auth-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auth-visual-phone img {
    object-position: center 10%;
}

.auth-panel {
    align-self: center;
    width: min(100%, 560px);
    padding: 70px 64px;
}

.auth-panel h1 {
    margin-bottom: 16px;
    font-size: 2.65rem;
}

.auth-panel > p:not(.eyebrow, .auth-switch) {
    color: var(--muted);
}

.stack-form {
    display: grid;
    gap: 18px;
    margin-top: 30px;
}

.stack-form label,
.stack-form .field-label {
    display: grid;
    gap: 7px;
    color: #eee9f0;
    font-size: 0.88rem;
    font-weight: 750;
}

.stack-form label > span,
.stack-form .field-label > span {
    color: var(--quiet);
    font-size: 0.75rem;
    font-weight: 500;
}

.stack-form input,
.stack-form textarea,
.stack-form select {
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    border: 1px solid var(--line-strong);
    border-radius: 5px;
    outline: none;
    background: #17121a;
}

.stack-form textarea {
    resize: vertical;
}

.stack-form input:focus,
.stack-form textarea:focus,
.stack-form select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 122, 26, 0.13);
}

.choice-field {
    display: grid !important;
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: start;
    gap: 12px !important;
    cursor: pointer;
}

.choice-field input {
    width: 20px;
    min-height: 20px;
    margin: 2px 0 0;
    accent-color: var(--orange);
}

.choice-field span {
    color: var(--muted) !important;
    font-size: 0.79rem !important;
    line-height: 1.5;
}

.choice-field strong {
    display: block;
    margin-bottom: 2px;
    color: #fff;
    font-size: 0.88rem;
}

.form-legal {
    color: var(--quiet);
    font-size: 0.76rem;
}

.form-legal a,
.auth-switch a {
    color: var(--orange-light);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.auth-switch {
    margin-top: 25px;
    color: var(--muted);
    font-size: 0.88rem;
}

.account-hero {
    padding-block: 80px 60px;
    border-bottom: 1px solid var(--line);
    background: #161018;
}

.account-hero h1 {
    margin-bottom: 12px;
    font-size: 3.2rem;
}

.account-hero p:last-child {
    color: var(--muted);
}

.account-section {
    background: #0e0b10;
}

.account-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
    align-items: start;
    gap: 30px;
}

.account-panel {
    margin-top: 0;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.account-side {
    display: grid;
    gap: 18px;
}

.panel-heading {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 8px;
}

.panel-heading > div {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 6px;
    background: rgba(255, 122, 26, 0.12);
    color: var(--orange);
}

.panel-heading h2 {
    margin: 0;
    font-size: 1.22rem;
}

.panel-heading p {
    margin: 2px 0 0;
    color: var(--quiet);
    font-size: 0.77rem;
}

.admin-entry {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 13px;
    padding: 18px;
    border: 1px solid rgba(66, 200, 194, 0.3);
    border-radius: 6px;
    background: rgba(66, 200, 194, 0.06);
}

.admin-entry > svg:first-child {
    color: var(--cyan);
}

.admin-entry small {
    display: block;
    color: var(--quiet);
}

.legal-page {
    padding-block: 100px 120px;
}

.legal-page h1 {
    margin-bottom: 8px;
    font-size: 3.5rem;
}

.legal-updated {
    margin-bottom: 50px;
    color: var(--quiet);
}

.legal-page h2 {
    margin: 45px 0 14px;
    font-size: 1.55rem;
}

.legal-page p,
.legal-page li {
    color: #cbc3cf;
}

.legal-page a {
    color: var(--orange-light);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.contact-grid > div {
    min-height: 270px;
    padding: 30px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.contact-grid > div > span {
    color: var(--orange);
    font-size: 1.55rem;
}

.contact-grid h2 {
    margin: 38px 0 12px;
    font-size: 1.4rem;
}

.contact-grid p {
    color: var(--muted);
}

.error-page {
    display: grid;
    min-height: 70vh;
    place-items: center;
    align-content: center;
    padding-block: 80px;
    text-align: center;
}

.error-page img {
    width: 140px;
}

.error-code {
    margin: 18px 0 0;
    color: var(--orange);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-weight: 800;
}

.error-page h1 {
    margin: 4px 0 12px;
    font-size: 3rem;
}

.error-page > p:not(.error-code) {
    color: var(--muted);
}

@media (max-width: 1080px) {
    .desktop-nav {
        gap: 18px;
    }

    .desktop-nav a {
        font-size: 0.84rem;
    }

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

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

    .signal-grid > div:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

    .story-grid,
    .spotlight-grid,
    .future-grid {
        gap: 50px;
    }

    .post-grid {
        gap: 22px;
    }

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

    .app-detail {
        grid-template-columns: 50px 78px minmax(0, 1fr);
    }

    .auth-page {
        grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    }
}

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

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

    .desktop-nav,
    .account-button {
        display: none;
    }

    .menu-button {
        display: inline-grid;
    }

    .brand img {
        width: 155px;
    }

    .section {
        padding-block: 78px;
    }

    .hero {
        min-height: 720px;
    }

    .hero-shade {
        background:
            linear-gradient(90deg, rgba(9, 6, 11, 0.97) 0%, rgba(9, 6, 11, 0.8) 55%, rgba(9, 6, 11, 0.46) 100%),
            linear-gradient(0deg, var(--black) 0%, transparent 32%);
    }

    .split-heading {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 20px;
    }

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

    .story-grid {
        grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
        gap: 35px;
    }

    .phone-scene {
        height: 550px;
    }

    .phone-scene img {
        width: 260px;
        height: 520px;
    }

    .spotlight-grid,
    .future-grid,
    .download-grid,
    .featured-post,
    .account-grid {
        grid-template-columns: 1fr;
    }

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

    .support-grid,
    .newsletter-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .support-actions {
        justify-content: flex-start;
    }

    .app-cta .shell {
        grid-template-columns: 100px minmax(0, 1fr);
    }

    .app-cta img {
        width: 100px;
    }

    .app-cta .button {
        grid-column: 1 / -1;
        width: fit-content;
    }

    .download-product {
        grid-template-columns: 170px minmax(0, 1fr);
    }

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

    .roadmap-icons {
        grid-column: 2;
        justify-content: flex-start;
    }

    .auth-page {
        grid-template-columns: 1fr;
    }

    .auth-visual {
        position: relative;
        top: auto;
        height: 300px;
    }

    .auth-visual::after {
        background: linear-gradient(0deg, #0b080d 0%, transparent 65%);
    }

    .auth-panel {
        margin: 0 auto;
        padding: 50px 28px 80px;
    }
}

@media (max-width: 620px) {
    .shell {
        width: min(calc(100% - 28px), var(--shell));
    }

    h1 {
        font-size: 2.6rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero {
        min-height: 680px;
        align-items: end;
    }

    .hero-media {
        object-position: 64% center;
    }

    .hero-shade {
        background:
            linear-gradient(0deg, #0b080d 0%, rgba(9, 6, 11, 0.88) 57%, rgba(9, 6, 11, 0.42) 100%),
            linear-gradient(90deg, rgba(9, 6, 11, 0.7), transparent);
    }

    .hero-content {
        padding-block: 130px 44px;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .hero-copy {
        font-size: 1.6rem;
    }

    .hero-detail {
        font-size: 0.98rem;
    }

    .hero-actions,
    .support-actions {
        display: grid;
    }

    .hero-actions .button,
    .support-actions .button {
        width: 100%;
    }

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

    .signal-grid > div {
        min-height: 74px;
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    .section {
        padding-block: 64px;
    }

    .section-heading {
        margin-bottom: 34px;
    }

    .app-strip,
    .capability-grid,
    .post-grid,
    .reason-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .app-tile {
        min-height: 210px;
    }

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

    .phone-scene {
        order: 2;
        height: 560px;
    }

    .phone-scene img {
        width: 270px;
        height: 540px;
    }

    .spotlight-grid {
        gap: 32px;
    }

    .roadmap-list > div {
        grid-template-columns: 38px 1fr;
    }

    .footer-lead {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

    .footer-bottom p:last-child {
        text-align: left;
    }

    .page-hero {
        padding-block: 78px 68px;
    }

    .page-hero h1 {
        font-size: 2.7rem;
    }

    .app-detail {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 16px;
    }

    .detail-icon {
        grid-column: 1;
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .app-detail > div:last-child {
        grid-column: 2;
        grid-row: 1 / span 2;
    }

    .app-detail h2 {
        font-size: 1.55rem;
    }

    .app-cta .shell {
        grid-template-columns: 80px minmax(0, 1fr);
        gap: 20px;
    }

    .app-cta img {
        width: 80px;
    }

    .app-cta h2 {
        font-size: 1.5rem;
    }

    .download-product {
        grid-template-columns: 1fr;
        padding: 26px;
    }

    .download-product img {
        width: 150px;
    }

    .download-product h2 {
        font-size: 1.8rem;
    }

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

    .steps li {
        min-height: 200px;
    }

    .steps li > span {
        margin-bottom: 28px;
    }

    .featured-post {
        gap: 28px;
        margin-bottom: 54px;
        padding-bottom: 54px;
    }

    .article-page {
        padding-block: 62px 78px;
    }

    .article-header h1 {
        font-size: 2.6rem;
    }

    .article-cover {
        width: 100%;
        margin-bottom: 48px;
    }

    .free-promise .shell {
        grid-template-columns: 100px minmax(0, 1fr);
        gap: 24px;
    }

    .free-promise img {
        width: 100px;
    }

    .roadmap-item {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .roadmap-icons {
        grid-column: 1;
    }

    .auth-visual {
        height: 220px;
    }

    .account-panel {
        padding: 20px;
    }

    .legal-page h1 {
        font-size: 2.6rem;
    }

    .flash-stack {
        top: calc(var(--header-height) + 10px);
        right: 14px;
        width: calc(100% - 28px);
    }
}

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

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