* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #020b17;
    --bg-2: #041120;
    --bg-3: #071829;
    --panel: rgba(9, 20, 38, 0.72);
    --panel-strong: rgba(11, 24, 45, 0.9);
    --panel-border: rgba(255, 255, 255, 0.08);
    --text: #f8fbff;
    --muted: #9db0c8;
    --muted-2: #7589a4;
    --primary: #4f8cff;
    --primary-hover: #3e79e7;
    --glow: rgba(79, 140, 255, 0.24);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.38);
    --radius-xl: 30px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: 1280px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background:
        radial-gradient(circle at top center, rgba(37, 99, 235, 0.06), transparent 24%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, #010813 100%);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.site-bg,
.site-grid,
.site-noise,
.bg-orb {
    pointer-events: none;
    position: fixed;
    inset: 0;
}

.site-bg {
    z-index: -4;
    background:
        radial-gradient(circle at 12% 18%, rgba(79, 140, 255, 0.16), transparent 22%),
        radial-gradient(circle at 85% 12%, rgba(38, 132, 255, 0.13), transparent 24%),
        radial-gradient(circle at 50% 62%, rgba(26, 84, 178, 0.08), transparent 30%),
        linear-gradient(180deg, #03111e 0%, #020b17 45%, #010814 100%);
}

.site-grid {
    z-index: -3;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.06) 30%, transparent 85%);
    opacity: 0.22;
}

.site-noise {
    z-index: -2;
    opacity: 0.035;
    background-image:
        radial-gradient(circle at 20% 20%, #ffffff 0.6px, transparent 0.7px),
        radial-gradient(circle at 80% 40%, #ffffff 0.5px, transparent 0.6px),
        radial-gradient(circle at 60% 80%, #ffffff 0.7px, transparent 0.8px),
        radial-gradient(circle at 35% 70%, #ffffff 0.6px, transparent 0.7px);
    background-size: 180px 180px, 220px 220px, 260px 260px, 200px 200px;
}

.bg-orb {
    z-index: -1;
    filter: blur(70px);
    opacity: 0.55;
}

.orb-1 {
    width: 420px;
    height: 420px;
    top: 60px;
    left: -80px;
    right: auto;
    bottom: auto;
    background: radial-gradient(circle, rgba(79, 140, 255, 0.28), transparent 70%);
    animation: floatOrb1 14s ease-in-out infinite;
}

.orb-2 {
    width: 360px;
    height: 360px;
    top: 520px;
    right: -100px;
    left: auto;
    bottom: auto;
    background: radial-gradient(circle, rgba(74, 163, 255, 0.18), transparent 72%);
    animation: floatOrb2 16s ease-in-out infinite;
}

.orb-3 {
    width: 500px;
    height: 500px;
    left: 50%;
    bottom: -180px;
    top: auto;
    right: auto;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(38, 107, 255, 0.16), transparent 74%);
    animation: pulseOrb 18s ease-in-out infinite;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(18px);
    background: rgba(2, 10, 20, 0.62);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.nav-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brand-logo {
    width: 46px;
    height: 46px;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.brand-text {
    font-size: 1.08rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    text-decoration: none;
    color: var(--muted);
    font-size: 0.96rem;
    font-weight: 600;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
    color: var(--text);
    transform: translateY(-1px);
}

.nav-cta {
    padding: 11px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text) !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero {
    position: relative;
    padding: 72px 0 42px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 52px;
    align-items: center;
}

.hero-copy {
    max-width: 600px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(79, 140, 255, 0.10);
    border: 1px solid rgba(79, 140, 255, 0.16);
    color: #d5e4ff;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 22px;
    box-shadow: 0 10px 30px rgba(79, 140, 255, 0.08);
}

.hero h1 {
    font-size: clamp(2.7rem, 4.6vw, 4.4rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
    margin-bottom: 18px;
    max-width: 11ch;
    text-wrap: balance;
}

.hero-text {
    font-size: 1.08rem;
    color: var(--muted);
    max-width: 58ch;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 20px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.97rem;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(180deg, #5e98ff 0%, #4f8cff 100%);
    color: #fff;
    box-shadow: 0 14px 34px rgba(79, 140, 255, 0.24);
}

.btn-primary:hover {
    background: linear-gradient(180deg, #6aa0ff 0%, #4c86f3 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.045);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.07);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: var(--muted);
    font-size: 0.92rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 6% 5% auto 5%;
    height: 72%;
    background: radial-gradient(circle, rgba(79, 140, 255, 0.20), transparent 70%);
    filter: blur(28px);
    z-index: -1;
}

.preview-card {
    position: relative;
    width: 100%;
    max-width: 780px;
    background: linear-gradient(180deg, rgba(13, 24, 43, 0.96), rgba(7, 15, 28, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

.preview-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 32%, transparent 68%, rgba(255, 255, 255, 0.02));
    pointer-events: none;
}

.preview-topbar {
    min-height: 58px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.window-dots {
    display: flex;
    gap: 8px;
}

.window-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.preview-title {
    color: #d6e3f7;
    font-size: 0.92rem;
    font-weight: 600;
}

.preview-shell {
    display: grid;
    grid-template-columns: 230px 1fr;
    min-height: 540px;
}

.preview-sidebar {
    padding: 22px 16px;
    background: rgba(255, 255, 255, 0.025);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.preview-sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 8px 18px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: #edf4ff;
    font-weight: 700;
}

.preview-sidebar-brand img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    border-radius: 10px;
}

.preview-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 12px;
    border-radius: 14px;
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.preview-nav-item.active {
    background: rgba(79, 140, 255, 0.13);
    color: #eaf2ff;
    border: 1px solid rgba(79, 140, 255, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.preview-main {
    padding: 24px;
}

.preview-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 16px;
}

.preview-stat,
.preview-panel {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.preview-stat {
    padding: 18px;
}

.preview-label {
    display: block;
    color: var(--muted-2);
    font-size: 0.82rem;
    margin-bottom: 6px;
}

.preview-stat strong {
    font-size: 1rem;
    color: #f5f9ff;
}

.preview-panels {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 14px;
}

.preview-panel {
    padding: 18px;
    min-height: 165px;
}

.preview-panel.large {
    grid-column: 1 / -1;
    min-height: auto;
}

.panel-heading {
    font-size: 0.92rem;
    color: #eaf2ff;
    font-weight: 600;
    margin-bottom: 14px;
}

.platform-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.platform-pills span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(79, 140, 255, 0.12);
    border: 1px solid rgba(79, 140, 255, 0.16);
    color: #dce9ff;
    font-size: 0.9rem;
}

.panel-line {
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 12px;
}

.panel-line.short {
    width: 68%;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 10px;
    height: 100px;
}

.chart-bars span {
    flex: 1;
    border-radius: 999px 999px 10px 10px;
    background: linear-gradient(180deg, rgba(79, 140, 255, 0.95), rgba(79, 140, 255, 0.20));
}

.chart-bars span:nth-child(1) { height: 35%; }
.chart-bars span:nth-child(2) { height: 62%; }
.chart-bars span:nth-child(3) { height: 48%; }
.chart-bars span:nth-child(4) { height: 82%; }
.chart-bars span:nth-child(5) { height: 58%; }

.trusted-wrap {
    margin-top: 28px;
}

.trusted {
    position: relative;
}

.trusted::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    background: linear-gradient(90deg, rgba(79, 140, 255, 0.08), rgba(255, 255, 255, 0.03), rgba(79, 140, 255, 0.08));
    z-index: -1;
    filter: blur(16px);
}

.trusted-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.trusted-inner > span {
    color: var(--muted);
    font-weight: 600;
}

.trusted-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.trusted-platforms span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #d8e5f8;
    font-weight: 600;
}

.features,
.platforms,
.cta {
    padding: 92px 0;
}

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 42px;
}

.section-head.left {
    text-align: left;
    margin: 0 0 34px;
}

.section-tag {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(79, 140, 255, 0.10);
    border: 1px solid rgba(79, 140, 255, 0.18);
    color: #d5e4ff;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
    box-shadow: 0 10px 24px rgba(79, 140, 255, 0.08);
}

.section-head h2,
.cta-box h2 {
    font-size: clamp(2rem, 4vw, 3.15rem);
    line-height: 1.08;
    letter-spacing: -0.05em;
    margin-bottom: 14px;
    text-wrap: balance;
}

.section-head p,
.cta-box p {
    color: var(--muted);
    font-size: 1.02rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature-card {
    padding: 24px;
    background: linear-gradient(180deg, rgba(10, 21, 40, 0.74), rgba(8, 17, 31, 0.82));
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 22px;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
    transform-style: preserve-3d;
    will-change: transform;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(79, 140, 255, 0.22);
    background: linear-gradient(180deg, rgba(11, 24, 46, 0.88), rgba(8, 18, 34, 0.92));
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(79, 140, 255, 0.13);
    border: 1px solid rgba(79, 140, 255, 0.18);
    color: #dce9ff;
    font-size: 1.2rem;
    margin-bottom: 18px;
    box-shadow: 0 10px 24px rgba(79, 140, 255, 0.10);
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--muted);
}

.platforms-box,
.cta-box {
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.84), rgba(5, 13, 24, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.platforms-box::before,
.cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(79, 140, 255, 0.10), transparent 26%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.02));
    pointer-events: none;
}

.platforms-box {
    padding: 34px;
}

.platform-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.platform-card {
    padding: 22px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(12, 24, 43, 0.72), rgba(8, 17, 30, 0.84));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

.platform-card:hover {
    border-color: rgba(79, 140, 255, 0.22);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.20);
}

.platform-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.platform-icon.twitch {
    background: rgba(145, 70, 255, 0.14);
    color: #d8c3ff;
}

.platform-icon.youtube {
    background: rgba(255, 0, 0, 0.12);
    color: #ffd0d0;
}

.platform-icon.discord {
    background: rgba(88, 101, 242, 0.14);
    color: #d2d8ff;
}

.platform-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.platform-card p {
    color: var(--muted);
}

.cta-box {
    text-align: center;
    padding: 52px 24px;
    max-width: 880px;
    margin: 0 auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.footer {
    padding: 30px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(2, 8, 16, 0.72);
    backdrop-filter: blur(8px);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-brand img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    border-radius: 12px;
}

.footer-brand strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 2px;
}

.footer-brand p {
    color: var(--muted);
    font-size: 0.94rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--text);
}

.footer-bottom {
    padding-top: 18px;
}

.footer-bottom p {
    color: var(--muted-2);
    font-size: 0.9rem;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

.nav-links a.is-active {
    color: var(--text);
}

.nav-links a.is-active:not(.nav-cta) {
    position: relative;
}

.nav-links a.is-active:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--primary);
    box-shadow: 0 0 18px rgba(79, 140, 255, 0.45);
}

/* Coming soon logo */
.coming-logo-wrap {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 20px;
}

.coming-logo-wrap::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120px;
    height: 120px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 140, 255, 0.24), transparent 72%);
    filter: blur(18px);
    opacity: 0.8;
    animation: logoAura 4.5s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.coming-logo {
    position: relative;
    z-index: 1;
    width: 82px;
    height: 82px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 10px rgba(79, 140, 255, 0.18));
    animation: logoFloat 6s ease-in-out infinite, logoGlow 4.5s ease-in-out infinite;
}

@keyframes floatOrb1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(18px, 24px) scale(1.06);
    }
}

@keyframes floatOrb2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-24px, 18px) scale(1.08);
    }
}

@keyframes pulseOrb {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.50;
    }
    50% {
        transform: translateX(-50%) scale(1.08);
        opacity: 0.65;
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.03);
    }
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(79, 140, 255, 0.16));
    }
    50% {
        filter: drop-shadow(0 0 22px rgba(79, 140, 255, 0.36));
    }
}

@keyframes logoAura {
    0%, 100% {
        opacity: 0.55;
        transform: scale(1);
    }
    50% {
        opacity: 0.95;
        transform: scale(1.08);
    }
}

@media (max-width: 1180px) {
    .hero-grid {
        grid-template-columns: 0.95fr 1.05fr;
        gap: 40px;
    }

    .preview-card {
        max-width: 700px;
    }
}

@media (max-width: 1080px) {
    .feature-grid,
    .platform-card-grid,
    .preview-stat-row {
        grid-template-columns: 1fr 1fr;
    }

    .preview-shell {
        grid-template-columns: 82px 1fr;
    }

    .preview-sidebar-brand span,
    .preview-nav-item {
        font-size: 0.88rem;
    }

    .preview-sidebar-brand span,
    .preview-nav-item:not(.active) {
        white-space: nowrap;
        overflow: hidden;
    }
}

@media (max-width: 900px) {
    .hero {
        padding-top: 48px;
    }

    .hero-grid,
    .feature-grid,
    .platform-card-grid,
    .preview-stat-row,
    .preview-panels {
        grid-template-columns: 1fr;
    }

    .hero-copy,
    .section-head.left {
        max-width: 100%;
    }

    .hero h1 {
        max-width: 100%;
    }

    .hero-visual {
        justify-content: center;
    }

    .preview-card {
        max-width: 100%;
    }

    .preview-shell {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .preview-sidebar {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .preview-sidebar-brand {
        padding-bottom: 12px;
    }

    .platforms-box {
        padding: 24px;
    }
}

@media (max-width: 860px) {
    .nav-inner,
    .footer-inner,
    .trusted-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 14px;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(var(--container), calc(100% - 24px));
    }

    .nav-inner {
        min-height: 74px;
    }

    .brand-logo {
        width: 40px;
        height: 40px;
    }

    .hero {
        padding: 34px 0 18px;
    }

    .eyebrow,
    .meta-item,
    .platform-pills span {
        font-size: 0.84rem;
    }

    .btn {
        width: 100%;
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
    }

    .feature-card,
    .platform-card,
    .preview-main,
    .preview-sidebar,
    .cta-box,
    .platforms-box {
        padding-left: 18px;
        padding-right: 18px;
    }

    .coming-logo {
        width: 72px;
        height: 72px;
    }

    .coming-logo-wrap::before {
        inset: -14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .preview-card,
    .feature-card,
    .platform-card,
    .bg-orb,
    .coming-logo,
    .coming-logo-wrap::before {
        transition: none;
        animation: none;
        transform: none !important;
    }
}