:root {
    --bg-900: #05070f;
    --bg-800: #0c1222;
    --bg-700: #111c36;
    --text: #f4f8ff;
    --muted: #9fb2d9;
    --line: rgba(127, 157, 255, 0.2);
    --accent-1: #4f7cff;
    --accent-2: #22d3ee;
    --accent-3: #7c3aed;
    --good: #0fbd89;
    --warn: #f59e0b;
    --danger: #ef4444;
    --site-header-offset: 84px;
    --feature-sticky-nav-height: 56px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: linear-gradient(160deg, var(--bg-900) 0%, var(--bg-800) 48%, #09152f 100%);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

.animated-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.animated-bg::before {
    content: "";
    position: absolute;
    inset: -50%;
    background:
        radial-gradient(circle at 20% 20%, rgba(79, 124, 255, 0.15), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(34, 211, 238, 0.13), transparent 43%),
        radial-gradient(circle at 50% 45%, rgba(124, 58, 237, 0.1), transparent 52%);
    animation: drift 24s linear infinite;
}

.animated-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(127, 157, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(127, 157, 255, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0.15) 80%);
    opacity: 0.35;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(72px);
    opacity: 0.45;
    pointer-events: none;
    will-change: transform;
    transition: transform 0.3s ease;
}

.orb-1 {
    width: 340px; height: 340px; left: 8%; top: 16%;
    background: radial-gradient(circle, rgba(79, 124, 255, 0.8) 0%, rgba(79, 124, 255, 0) 70%);
    animation: floatOrb 14s ease-in-out infinite;
}

.orb-2 {
    width: 420px; height: 420px; right: 10%; top: 48%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.8) 0%, rgba(124, 58, 237, 0) 70%);
    animation: floatOrb 18s ease-in-out infinite reverse;
}

.orb-3 {
    width: 280px; height: 280px; left: 48%; bottom: 10%;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.75) 0%, rgba(34, 211, 238, 0) 70%);
    animation: floatOrb 16s ease-in-out infinite;
}

.content-wrapper { position: relative; z-index: 1; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.1rem 0;
    background: rgba(5, 7, 15, 0.7);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid transparent;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.logo {
    text-decoration: none;
    font-size: 1.7rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #ffffff;
    flex-shrink: 0;
}

.logo span {
    background: linear-gradient(120deg, var(--accent-2), var(--accent-1), var(--accent-3));
    background-size: 240% 240%;
    animation: gradientFlow 9s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: rgba(244, 248, 255, 0.74);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active { color: #ffffff; }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
}

.nav-signup {
    text-decoration: none;
    color: #dbe6ff;
    font-size: 0.92rem;
    font-weight: 600;
    padding: 0.72rem 1.15rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.nav-signup:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.26);
    color: #ffffff;
}

.cta-button {
    text-decoration: none;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 0.82rem 1.45rem;
    border-radius: 12px;
    background: linear-gradient(130deg, var(--accent-1), var(--accent-3));
    box-shadow: 0 10px 28px rgba(79, 124, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    will-change: transform;
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(79, 124, 255, 0.4);
}

.mobile-nav-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    color: #fff;
    width: 42px;
    height: 42px;
    cursor: pointer;
    font-size: 1.1rem;
    align-items: center;
    justify-content: center;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: var(--site-header-offset);
    left: 0; right: 0;
    background: rgba(5, 7, 15, 0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(127, 157, 255, 0.2);
    padding: 1rem 1.5rem 1.5rem;
    z-index: 999;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
    text-decoration: none;
    color: #dbe6ff;
    font-weight: 600;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(127, 157, 255, 0.12);
    font-size: 0.95rem;
}

.mobile-nav a:last-child { border-bottom: none; }

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    border-radius: 12px;
    padding: 0.95rem 1.25rem;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(130deg, var(--accent-1), var(--accent-3));
    box-shadow: 0 14px 34px rgba(79, 124, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(79, 124, 255, 0.45);
}

.btn-secondary {
    color: #dbe6ff;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.26);
}

/* Sections */
section { padding: 5.4rem 0; }

.section-header {
    text-align: center;
    margin-bottom: 2.8rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: #b7cbf8;
    border: 1px solid rgba(127, 157, 255, 0.34);
    background: rgba(127, 157, 255, 0.11);
    border-radius: 999px;
    padding: 0.42rem 0.76rem;
    margin-bottom: 0.85rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 0.8rem;
}

.section-subtitle {
    color: var(--muted);
    max-width: 740px;
    margin: 0 auto;
    font-size: 1.04rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(79, 124, 255, 0.4);
    background: rgba(79, 124, 255, 0.12);
    color: #d4e0ff;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.gradient-text {
    background: linear-gradient(130deg, #8ab4ff, #64f0ff, #9f7cff);
    background-size: 280% 280%;
    animation: gradientFlow 10s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle { color: var(--muted); font-size: 1.12rem; max-width: 660px; }

/* AI action approval queue */
.ai-action-queue {
    display: grid;
    gap: 0.55rem;
}

.ai-action-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.65rem;
    align-items: center;
    border-radius: 10px;
    border: 1px solid rgba(124, 58, 237, 0.35);
    background: linear-gradient(135deg, rgba(79, 124, 255, 0.1), rgba(124, 58, 237, 0.08));
    padding: 0.65rem 0.75rem;
}

.ai-action-item strong {
    display: block;
    font-size: 0.78rem;
    color: #edf3ff;
    margin-bottom: 0.2rem;
}

.ai-action-item p {
    font-size: 0.7rem;
    color: #9db5e4;
    margin: 0;
}

.ai-action-btns {
    display: flex;
    gap: 0.35rem;
    flex-shrink: 0;
}

.ai-action-btn {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.3rem 0.55rem;
    border-radius: 6px;
    border: 1px solid transparent;
    cursor: default;
    white-space: nowrap;
}

.ai-action-btn.approve {
    background: rgba(15, 189, 137, 0.2);
    border-color: rgba(15, 189, 137, 0.4);
    color: #50e7b8;
}

.ai-action-btn.dismiss {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(127, 157, 255, 0.25);
    color: #9db5e4;
}

.ai-approvals-callout {
    border-radius: 12px;
    border: 1px solid rgba(124, 58, 237, 0.45);
    background: linear-gradient(135deg, rgba(79, 124, 255, 0.14), rgba(124, 58, 237, 0.1));
    padding: 0.85rem 1rem;
    margin-bottom: 1rem;
}

.ai-approvals-callout h4 {
    font-size: 0.88rem;
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.ai-approvals-callout p {
    font-size: 0.8rem;
    color: #cad8f3;
    margin: 0;
}

.sub-feature-item.featured {
    border-color: rgba(124, 58, 237, 0.45);
    background: linear-gradient(135deg, rgba(79, 124, 255, 0.12), rgba(124, 58, 237, 0.08));
}

/* AI Badge */
.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    background: linear-gradient(130deg, rgba(79, 124, 255, 0.3), rgba(124, 58, 237, 0.3));
    border: 1px solid rgba(124, 58, 237, 0.5);
    color: #c4b5fd;
}

/* Feature cards & grids */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(230px, 1fr));
    gap: 1rem;
}

.feature-card {
    position: relative;
    border-radius: 16px;
    border: 1px solid rgba(127, 157, 255, 0.2);
    background: rgba(12, 24, 45, 0.7);
    padding: 1.3rem;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
    isolation: isolate;
    text-decoration: none;
    color: inherit;
    display: block;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: linear-gradient(120deg, rgba(79, 124, 255, 0), rgba(79, 124, 255, 0.65), rgba(34, 211, 238, 0.45), rgba(79, 124, 255, 0));
    transform: translateX(-70%);
    transition: transform 0.45s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(122, 174, 255, 0.42);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before { transform: translateX(20%); }

.feature-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #dff2ff;
    margin-bottom: 0.9rem;
    background: linear-gradient(130deg, rgba(79, 124, 255, 0.8), rgba(34, 211, 238, 0.7));
    box-shadow: 0 8px 22px rgba(79, 124, 255, 0.35);
}

.feature-card h3 {
    font-size: 1.12rem;
    margin-bottom: 0.52rem;
    letter-spacing: -0.02em;
}

.feature-card p {
    color: var(--muted);
    font-size: 0.94rem;
    margin-bottom: 0.7rem;
}

.feature-count {
    font-size: 0.78rem;
    color: var(--accent-2);
    font-weight: 600;
}

.feature-list {
    list-style: none;
    display: grid;
    gap: 0.34rem;
}

.feature-list li {
    color: #cad8f3;
    font-size: 0.87rem;
    position: relative;
    padding-left: 1rem;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0; top: 0.58em;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #65d7ff;
    box-shadow: 0 0 10px rgba(101, 215, 255, 0.7);
}

.sub-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.sub-feature-item {
    border-radius: 12px;
    border: 1px solid rgba(127, 157, 255, 0.18);
    background: rgba(9, 19, 38, 0.6);
    padding: 0.85rem 1rem;
    font-size: 0.86rem;
    color: #cad8f3;
}

.sub-feature-item strong {
    display: block;
    color: #edf3ff;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

/* Product window mock */
.product-window {
    border-radius: 16px;
    border: 1px solid rgba(127, 157, 255, 0.28);
    background: rgba(6, 12, 24, 0.95);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.product-titlebar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    background: rgba(15, 25, 48, 0.9);
    border-bottom: 1px solid rgba(127, 157, 255, 0.15);
}

.traffic-lights {
    display: flex;
    gap: 6px;
}

.traffic-lights span {
    width: 10px; height: 10px;
    border-radius: 50%;
}

.traffic-lights span:nth-child(1) { background: #ff5f57; }
.traffic-lights span:nth-child(2) { background: #febc2e; }
.traffic-lights span:nth-child(3) { background: #28c840; }

.product-url {
    flex: 1;
    font-size: 0.72rem;
    color: #8ea8d8;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    padding: 0.3rem 0.65rem;
    text-align: center;
}

.product-body {
    display: flex;
    min-height: 320px;
}

.mock-sidebar {
    width: 180px;
    flex-shrink: 0;
    border-right: 1px solid rgba(127, 157, 255, 0.12);
    background: rgba(8, 14, 28, 0.8);
    padding: 0.75rem 0;
}

.mock-sidebar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.85rem;
    font-size: 0.75rem;
    color: #8ea8d8;
    border-left: 2px solid transparent;
}

.mock-sidebar-item.active {
    color: #fff;
    background: rgba(79, 124, 255, 0.12);
    border-left-color: var(--accent-1);
}

.mock-sidebar-item i { width: 14px; text-align: center; font-size: 0.7rem; }

.mock-main {
    flex: 1;
    padding: 1rem;
    overflow: hidden;
}

/* Mock tabs */
.mock-tabs {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.85rem;
    flex-wrap: wrap;
}

.mock-tab {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.35rem 0.7rem;
    border-radius: 8px;
    border: 1px solid rgba(127, 157, 255, 0.2);
    background: rgba(15, 28, 52, 0.6);
    color: #8ea8d8;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mock-tab.active,
.mock-tab:hover {
    background: rgba(79, 124, 255, 0.2);
    border-color: rgba(79, 124, 255, 0.4);
    color: #fff;
}

.mock-panel { display: none; }
.mock-panel.active { display: block; animation: fadeIn 0.3s ease; }

/* Kanban */
.mock-kanban {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
    min-height: 240px;
}

.kanban-col {
    background: rgba(10, 20, 40, 0.6);
    border-radius: 10px;
    border: 1px solid rgba(127, 157, 255, 0.15);
    padding: 0.5rem;
}

.kanban-col-header {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #9db5e4;
    padding: 0.3rem 0.4rem 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kanban-count {
    background: rgba(79, 124, 255, 0.2);
    border-radius: 99px;
    padding: 0.1rem 0.4rem;
    font-size: 0.62rem;
}

.kanban-card {
    background: rgba(15, 31, 61, 0.8);
    border: 1px solid rgba(127, 157, 255, 0.2);
    border-radius: 8px;
    padding: 0.55rem;
    margin-bottom: 0.4rem;
    font-size: 0.72rem;
}

.kanban-card strong { display: block; color: #edf3ff; margin-bottom: 0.2rem; }
.kanban-card span { color: #8ea8d8; font-size: 0.65rem; }

.kanban-pill {
    display: inline-block;
    font-size: 0.58rem;
    font-weight: 700;
    padding: 0.12rem 0.35rem;
    border-radius: 99px;
    margin-top: 0.3rem;
}

.pill-blue { background: rgba(79, 124, 255, 0.2); color: #91b0ff; }
.pill-green { background: rgba(15, 189, 137, 0.2); color: #50e7b8; }
.pill-warn { background: rgba(245, 158, 11, 0.2); color: #f8c564; }
.pill-purple { background: rgba(124, 58, 237, 0.2); color: #c4b5fd; }

/* Flyout */
.mock-flyout {
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 42%;
    background: rgba(10, 18, 36, 0.98);
    border-left: 1px solid rgba(127, 157, 255, 0.25);
    padding: 0.85rem;
    z-index: 2;
    overflow-y: auto;
}

.mock-flyout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(127, 157, 255, 0.15);
}

.mock-flyout-header h4 { font-size: 0.85rem; }

.mock-flyout-body { font-size: 0.75rem; color: #cad8f3; }

.mock-relative { position: relative; }

/* Tables */
.mock-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.72rem;
}

.mock-table th {
    text-align: left;
    padding: 0.45rem 0.6rem;
    color: #9db5e4;
    font-weight: 600;
    border-bottom: 1px solid rgba(127, 157, 255, 0.2);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mock-table td {
    padding: 0.45rem 0.6rem;
    border-bottom: 1px solid rgba(127, 157, 255, 0.1);
    color: #cad8f3;
}

/* Chat */
.mock-chat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 200px;
    overflow-y: auto;
}

.chat-bubble {
    max-width: 75%;
    padding: 0.5rem 0.7rem;
    border-radius: 12px;
    font-size: 0.72rem;
}

.chat-bubble.in {
    align-self: flex-start;
    background: rgba(79, 124, 255, 0.15);
    border: 1px solid rgba(79, 124, 255, 0.25);
    color: #d6e4ff;
}

.chat-bubble.out {
    align-self: flex-end;
    background: rgba(15, 189, 137, 0.12);
    border: 1px solid rgba(15, 189, 137, 0.25);
    color: #adf4db;
}

.chat-attachment {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.65rem;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    margin-top: 0.3rem;
}

/* KPI row */
.mock-kpi-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
    margin-bottom: 0.85rem;
}

.mock-kpi {
    border-radius: 10px;
    border: 1px solid rgba(127, 157, 255, 0.18);
    background: rgba(14, 28, 53, 0.55);
    padding: 0.65rem;
}

.mock-kpi strong {
    display: block;
    font-size: 1rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.mock-kpi span { font-size: 0.68rem; color: var(--muted); }

/* Calendar grid */
.mock-calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    font-size: 0.65rem;
}

.cal-header {
    text-align: center;
    padding: 0.3rem;
    color: #9db5e4;
    font-weight: 600;
    font-size: 0.62rem;
}

.cal-cell {
    min-height: 48px;
    border: 1px solid rgba(127, 157, 255, 0.1);
    border-radius: 4px;
    padding: 0.2rem;
    background: rgba(10, 20, 40, 0.4);
}

.cal-event {
    background: rgba(79, 124, 255, 0.25);
    border-radius: 3px;
    padding: 0.15rem 0.25rem;
    margin-top: 0.15rem;
    font-size: 0.58rem;
    color: #b7cbf8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Command palette */
.cmd-palette {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 3rem;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 5;
}

.cmd-palette.open { opacity: 1; pointer-events: auto; }

.cmd-box {
    width: 90%;
    max-width: 400px;
    background: rgba(12, 22, 42, 0.98);
    border: 1px solid rgba(127, 157, 255, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transform: translateY(-10px);
    transition: transform 0.3s ease;
}

.cmd-palette.open .cmd-box { transform: translateY(0); }

.cmd-input {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(127, 157, 255, 0.15);
    font-size: 0.8rem;
    color: #8ea8d8;
}

.cmd-item {
    padding: 0.55rem 1rem;
    font-size: 0.75rem;
    color: #cad8f3;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cmd-item:hover, .cmd-item.highlight {
    background: rgba(79, 124, 255, 0.15);
}

.cmd-kbd {
    margin-left: auto;
    font-size: 0.62rem;
    padding: 0.15rem 0.35rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    color: #8ea8d8;
}

/* Screenshot slot */
.screenshot-slot { position: relative; }

.screenshot-slot.has-screenshot .mock-content { display: none; }

.screenshot-slot img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

.screenshot-slot img[hidden] { display: none; }

/* Feature module (features page) */
.feature-module {
    padding: 4rem 0;
    scroll-margin-top: calc(var(--site-header-offset) + var(--feature-sticky-nav-height) + 16px);
}

.feature-module:nth-child(even) {
    background: rgba(8, 14, 28, 0.4);
}

.features-hero {
    padding: 9rem 0 3rem;
    text-align: center;
}

.features-hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
}

/* Sticky nav */
.feature-sticky-nav-wrap {
    position: sticky;
    top: var(--site-header-offset);
    z-index: 50;
    background: rgba(5, 7, 15, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(127, 157, 255, 0.15);
    padding: 0.65rem 0;
    margin-bottom: 0.25rem;
}

.feature-sticky-nav {
    display: flex;
    gap: 0.35rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.35rem 0;
    min-height: var(--feature-sticky-nav-height);
    align-items: center;
}

.feature-sticky-nav::-webkit-scrollbar { display: none; }

.feature-sticky-nav a {
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    color: #8ea8d8;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    border: 1px solid transparent;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.feature-sticky-nav a:hover,
.feature-sticky-nav a.active {
    color: #fff;
    background: rgba(79, 124, 255, 0.18);
    border-color: rgba(79, 157, 255, 0.35);
}

/* Hero (index) */
.hero { padding: 10rem 0 4rem; }

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.2rem;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    line-height: 1.06;
    letter-spacing: -0.04em;
    margin-bottom: 1.2rem;
    max-width: 720px;
}

.hero-actions {
    margin-top: 2rem;
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.hero-stats {
    margin-top: 2.2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 1rem;
    max-width: 640px;
}

.stat {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1rem;
}

.stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
}

.stat-label { color: var(--muted); font-size: 0.86rem; }

.hero-panel {
    position: relative;
    min-height: 520px;
    border-radius: 28px;
    border: 1px solid rgba(122, 156, 255, 0.28);
    background:
        linear-gradient(160deg, rgba(79, 124, 255, 0.18), rgba(34, 211, 238, 0.08) 42%, rgba(124, 58, 237, 0.12) 100%),
        rgba(8, 14, 28, 0.86);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    padding: 1.3rem;
}

.hero-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, transparent 10%, rgba(255, 255, 255, 0.08) 45%, transparent 82%);
    transform: translateX(-100%);
    animation: signalSweep 5.6s ease-in-out infinite;
}

.control-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.control-title { font-size: 0.95rem; font-weight: 700; color: #dbe7ff; }

.status-pill {
    font-size: 0.72rem;
    color: #0a2118;
    background: #34d399;
    font-weight: 700;
    border-radius: 99px;
    padding: 0.26rem 0.62rem;
}

.signal-grid {
    position: relative;
    height: 270px;
    border-radius: 18px;
    border: 1px solid rgba(145, 176, 255, 0.24);
    background:
        linear-gradient(rgba(145, 176, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(145, 176, 255, 0.1) 1px, transparent 1px),
        rgba(9, 17, 33, 0.72);
    background-size: 28px 28px, 28px 28px, auto;
    overflow: hidden;
}

.signal-node {
    position: absolute;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
    animation: ping 2.6s infinite;
}

.signal-node.n1 { top: 22%; left: 14%; }
.signal-node.n2 { top: 34%; left: 46%; animation-delay: 0.4s; background: #60a5fa; }
.signal-node.n3 { top: 62%; left: 74%; animation-delay: 0.7s; background: #22d3ee; }
.signal-node.n4 { top: 76%; left: 30%; animation-delay: 1.2s; background: #a78bfa; }

.signal-line {
    position: absolute;
    height: 2px;
    transform-origin: left center;
    background: linear-gradient(90deg, rgba(136, 170, 255, 0), rgba(136, 170, 255, 0.95), rgba(136, 170, 255, 0));
    animation: linePulse 2.8s ease-in-out infinite;
}

.line-1 { top: 30%; left: 16%; width: 36%; transform: rotate(8deg); }
.line-2 { top: 50%; left: 44%; width: 34%; transform: rotate(28deg); animation-delay: 0.5s; }
.line-3 { top: 70%; left: 30%; width: 44%; transform: rotate(-12deg); animation-delay: 1.1s; }

.chip-row { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.65rem; }

.chip {
    font-size: 0.76rem;
    font-weight: 600;
    color: #d7e4ff;
    padding: 0.42rem 0.72rem;
    border-radius: 999px;
    border: 1px solid rgba(157, 181, 255, 0.35);
    background: rgba(11, 24, 48, 0.65);
    animation: chipFloat 4s ease-in-out infinite;
}

.chip:nth-child(2) { animation-delay: 0.4s; }
.chip:nth-child(3) { animation-delay: 0.8s; }
.chip:nth-child(4) { animation-delay: 1.2s; }

.hero-feed { margin-top: 1rem; display: grid; gap: 0.55rem; }

.feed-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 12px;
    border: 1px solid rgba(150, 178, 255, 0.2);
    background: rgba(7, 14, 27, 0.78);
    padding: 0.65rem 0.8rem;
    font-size: 0.78rem;
    color: #c7d8ff;
}

.feed-item .tag {
    border-radius: 999px;
    font-size: 0.66rem;
    padding: 0.2rem 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.tag.good { background: rgba(15, 189, 137, 0.16); color: #50e7b8; }
.tag.warn { background: rgba(245, 158, 11, 0.16); color: #f8c564; }
.tag.info { background: rgba(79, 124, 255, 0.16); color: #91b0ff; }

/* Spotlight demos */
.spotlight-section { padding: 4rem 0; }

.spotlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.spotlight-demo {
    border-radius: 18px;
    border: 1px solid rgba(127, 157, 255, 0.22);
    background: rgba(9, 19, 38, 0.7);
    overflow: hidden;
}

.spotlight-demo-header {
    padding: 1rem 1.2rem 0.5rem;
}

.spotlight-demo-header h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.spotlight-demo-header p {
    font-size: 0.82rem;
    color: var(--muted);
}

.spotlight-demo .product-window {
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(127, 157, 255, 0.15);
    box-shadow: none;
}

.spotlight-demo .product-body { min-height: 220px; }

/* Email, workflow, ops, trust, use-cases, comparison, CTA, footer */
.email-section { padding-top: 1rem; }

.email-card {
    max-width: 840px;
    margin: 0 auto;
    border-radius: 22px;
    border: 1px solid rgba(126, 160, 255, 0.28);
    background: linear-gradient(150deg, rgba(10, 20, 38, 0.9), rgba(16, 31, 57, 0.8));
    box-shadow: 0 26px 58px rgba(0, 0, 0, 0.34);
    padding: 2.1rem;
    position: relative;
    overflow: hidden;
}

.email-card h3 {
    text-align: center;
    font-size: clamp(1.65rem, 3.2vw, 2.3rem);
    margin-bottom: 0.65rem;
    letter-spacing: -0.03em;
}

.email-copy { text-align: center; color: var(--muted); margin-bottom: 1.4rem; }

.incentive-note {
    margin: 0 auto 1.25rem;
    max-width: 660px;
    border: 1px solid rgba(79, 124, 255, 0.35);
    background: rgba(79, 124, 255, 0.1);
    border-radius: 12px;
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
    color: #d6e4ff;
    text-align: center;
}

.email-form { display: flex; gap: 0.75rem; justify-content: center; }

.submit-btn {
    border: none;
    cursor: pointer;
    white-space: nowrap;
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.95rem 1.35rem;
    background: linear-gradient(130deg, var(--accent-1), var(--accent-3));
    box-shadow: 0 12px 28px rgba(79, 124, 255, 0.36);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(79, 124, 255, 0.44);
}

.privacy-note {
    text-align: center;
    color: rgba(215, 228, 255, 0.68);
    font-size: 0.86rem;
    margin-top: 1rem;
}

.workflow-strip {
    margin-top: 1.2rem;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.8rem;
}

.workflow-step {
    position: relative;
    border: 1px solid rgba(127, 157, 255, 0.28);
    background: rgba(10, 21, 40, 0.78);
    border-radius: 14px;
    padding: 1rem 0.8rem;
    text-align: center;
    overflow: hidden;
}

.workflow-step::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0) 70%);
    transform: translateX(-120%);
    animation: handoff 4.5s infinite;
}

.workflow-step:nth-child(2)::after { animation-delay: 0.4s; }
.workflow-step:nth-child(3)::after { animation-delay: 0.8s; }
.workflow-step:nth-child(4)::after { animation-delay: 1.2s; }
.workflow-step:nth-child(5)::after { animation-delay: 1.6s; }

.workflow-step i { font-size: 1.2rem; margin-bottom: 0.45rem; color: #9dc3ff; }
.workflow-step h4 { font-size: 0.84rem; margin-bottom: 0.25rem; }
.workflow-step p { font-size: 0.75rem; color: var(--muted); }

.ops-layout {
    margin-top: 1.8rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1rem;
}

.ops-card {
    border-radius: 16px;
    border: 1px solid rgba(127, 157, 255, 0.24);
    background: rgba(8, 19, 37, 0.8);
    padding: 1rem;
}

.ops-card h3 { font-size: 1rem; margin-bottom: 0.7rem; }

.ops-feed { display: grid; gap: 0.55rem; }

.ops-event {
    border: 1px solid rgba(127, 157, 255, 0.18);
    background: rgba(15, 31, 61, 0.55);
    border-radius: 10px;
    padding: 0.62rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.6rem;
    align-items: center;
    font-size: 0.82rem;
}

.ops-event i { color: #9ec3ff; }
.ops-event time { color: #8ea8d8; font-size: 0.73rem; }

.ops-status {
    font-size: 0.66rem;
    font-weight: 700;
    padding: 0.22rem 0.46rem;
    border-radius: 999px;
    border: 1px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ops-status.done { color: #50e7b8; border-color: rgba(80, 231, 184, 0.35); background: rgba(15, 189, 137, 0.14); }
.ops-status.live { color: #8dc7ff; border-color: rgba(141, 199, 255, 0.35); background: rgba(79, 124, 255, 0.14); }
.ops-status.waiting { color: #f8c564; border-color: rgba(248, 197, 100, 0.35); background: rgba(245, 158, 11, 0.12); }

.mini-kpis { display: grid; gap: 0.55rem; }

.kpi {
    border: 1px solid rgba(127, 157, 255, 0.2);
    border-radius: 10px;
    padding: 0.78rem;
    background: rgba(14, 28, 53, 0.55);
}

.kpi strong { display: block; font-size: 1.1rem; color: #ffffff; letter-spacing: -0.02em; }
.kpi span { color: var(--muted); font-size: 0.75rem; }

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
}

.trust-card {
    border-radius: 14px;
    border: 1px solid rgba(127, 157, 255, 0.22);
    background: rgba(9, 20, 39, 0.72);
    padding: 1rem;
    text-align: center;
}

.trust-card i { font-size: 1.22rem; color: #8dc7ff; margin-bottom: 0.45rem; }
.trust-card h4 { font-size: 0.88rem; margin-bottom: 0.2rem; }
.trust-card p { font-size: 0.76rem; color: var(--muted); }

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.use-case {
    border-radius: 16px;
    border: 1px solid rgba(127, 157, 255, 0.22);
    background: rgba(9, 19, 38, 0.7);
    padding: 1.1rem;
}

.use-case-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.7rem;
}

.use-case-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(79, 124, 255, 0.16);
    border: 1px solid rgba(79, 124, 255, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #a8c7ff;
    font-size: 0.88rem;
}

.use-case h4 { font-size: 0.98rem; }

.use-case-pain, .use-case-solution {
    border-radius: 10px;
    padding: 0.65rem;
    font-size: 0.84rem;
    margin-top: 0.55rem;
}

.use-case-pain {
    border: 1px solid rgba(239, 68, 68, 0.32);
    background: rgba(239, 68, 68, 0.09);
    color: #ffc2c2;
}

.use-case-solution {
    border: 1px solid rgba(15, 189, 137, 0.34);
    background: rgba(15, 189, 137, 0.1);
    color: #adf4db;
}

.comparison-table {
    max-width: 980px;
    margin: 0 auto;
    border-radius: 18px;
    border: 1px solid rgba(127, 157, 255, 0.25);
    background: rgba(9, 20, 39, 0.76);
    overflow: hidden;
}

.comparison-head {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    background: rgba(79, 124, 255, 0.16);
    border-bottom: 1px solid rgba(127, 157, 255, 0.24);
}

.comparison-head div {
    padding: 0.95rem 1rem;
    font-weight: 700;
    font-size: 0.86rem;
    color: #d6e3ff;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    border-bottom: 1px solid rgba(127, 157, 255, 0.17);
}

.comparison-row:last-child { border-bottom: none; }

.comparison-row div {
    padding: 0.9rem 1rem;
    color: #d0defa;
    font-size: 0.84rem;
    display: flex;
    align-items: center;
}

.comparison-row div:first-child { font-weight: 600; color: #edf3ff; }
.comparison-row .yes { color: #50e7b8; font-weight: 700; justify-content: center; }
.comparison-row .no { color: #ff9b9b; font-weight: 700; justify-content: center; }

.final-cta-box {
    border-radius: 22px;
    border: 1px solid rgba(127, 157, 255, 0.25);
    background: linear-gradient(155deg, rgba(19, 36, 68, 0.92), rgba(35, 23, 73, 0.86));
    box-shadow: 0 26px 54px rgba(0, 0, 0, 0.35);
    padding: 2.7rem 1.3rem;
    text-align: center;
}

.final-cta-box p {
    color: var(--muted);
    max-width: 680px;
    margin: 0 auto 1.2rem;
}

.final-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.52rem;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(130deg, var(--accent-1), var(--accent-3));
    border-radius: 12px;
    padding: 0.95rem 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 700;
    box-shadow: 0 14px 30px rgba(79, 124, 255, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.final-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(79, 124, 255, 0.42);
}

footer {
    padding: 2.2rem 0 2.6rem;
    border-top: 1px solid rgba(127, 157, 255, 0.2);
    background: rgba(5, 10, 20, 0.72);
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.footer-brand { font-weight: 800; letter-spacing: -0.02em; }
.footer-note { color: #9eb1d8; font-size: 0.87rem; }

.footer-link {
    color: #b8c8ec;
    text-decoration: none;
    border-bottom: 1px solid rgba(127, 157, 255, 0.35);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-link:hover { color: var(--text); border-color: rgba(127, 157, 255, 0.65); }

.scroll-to-top {
    position: fixed;
    right: 1.15rem;
    bottom: 1.15rem;
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(130deg, var(--accent-1), var(--accent-3));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 999;
}

.scroll-to-top.visible { opacity: 1; visibility: visible; }
.scroll-to-top:hover { transform: translateY(-2px); }

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* Form builder mock */
.form-builder {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 0.75rem;
    min-height: 200px;
}

.form-palette {
    border-right: 1px solid rgba(127, 157, 255, 0.15);
    padding-right: 0.5rem;
}

.form-palette-item {
    font-size: 0.68rem;
    padding: 0.4rem 0.5rem;
    margin-bottom: 0.3rem;
    border-radius: 6px;
    border: 1px dashed rgba(127, 157, 255, 0.3);
    color: #8ea8d8;
    cursor: default;
}

.form-canvas {
    display: grid;
    gap: 0.4rem;
}

.form-field-mock {
    border: 1px solid rgba(127, 157, 255, 0.2);
    border-radius: 6px;
    padding: 0.4rem 0.6rem;
    font-size: 0.7rem;
    color: #9db5e4;
    background: rgba(15, 28, 52, 0.5);
}

/* Permission matrix */
.perm-grid {
    display: grid;
    grid-template-columns: 120px repeat(4, 1fr);
    gap: 1px;
    background: rgba(127, 157, 255, 0.15);
    border-radius: 8px;
    overflow: hidden;
    font-size: 0.68rem;
}

.perm-cell {
    background: rgba(12, 22, 42, 0.9);
    padding: 0.4rem 0.5rem;
    text-align: center;
    color: #cad8f3;
}

.perm-cell.header { background: rgba(79, 124, 255, 0.15); font-weight: 700; color: #9db5e4; }
.perm-cell.check { color: #50e7b8; }
.perm-cell.deny { color: #ff9b9b; }

/* Notification toast */
.notif-toast {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(12, 22, 42, 0.98);
    border: 1px solid rgba(127, 157, 255, 0.3);
    border-radius: 10px;
    padding: 0.6rem 0.85rem;
    font-size: 0.72rem;
    max-width: 220px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    z-index: 3;
}

.notif-toast strong { display: block; color: #edf3ff; margin-bottom: 0.15rem; }

/* Animations */
@keyframes floatOrb {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(16px, -22px, 0) scale(1.05); }
}

@keyframes drift {
    0% { transform: rotate(0deg) scale(1.05); }
    100% { transform: rotate(360deg) scale(1.05); }
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes signalSweep {
    0%, 100% { transform: translateX(-110%); }
    50% { transform: translateX(120%); }
}

@keyframes ping {
    0%, 100% { box-shadow: 0 0 0 0 rgba(141, 199, 255, 0.26); }
    60% { box-shadow: 0 0 0 12px rgba(141, 199, 255, 0); }
}

@keyframes linePulse {
    0%, 100% { opacity: 0.25; }
    50% { opacity: 1; }
}

@keyframes chipFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@keyframes handoff {
    0% { transform: translateX(-120%); }
    40% { transform: translateX(120%); }
    100% { transform: translateX(120%); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1080px) {
    .hero-grid, .ops-layout { grid-template-columns: 1fr; }
    .hero-panel { max-width: 760px; margin: 0 auto; }
    .features-grid, .spotlight-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sub-feature-grid { grid-template-columns: repeat(2, 1fr); }
    .mock-kanban { grid-template-columns: repeat(2, 1fr); }
    .mock-kpi-row { grid-template-columns: repeat(2, 1fr); }
    .mock-flyout { width: 55%; }
}

@media (max-width: 760px) {
    :root {
        --site-header-offset: 72px;
        --feature-sticky-nav-height: 52px;
    }

    .container { padding: 0 16px; }
    .nav-links { display: none; }
    .mobile-nav-toggle { display: flex; }
    .cta-button { padding: 0.72rem 1rem; font-size: 0.85rem; }
    .nav-actions { gap: 0.45rem; }
    .nav-signup { padding: 0.62rem 0.85rem; font-size: 0.82rem; }
    .hero { padding-top: 7.6rem; }
    .features-hero { padding-top: 7.6rem; }
    .feature-module {
        scroll-margin-top: calc(var(--site-header-offset) + var(--feature-sticky-nav-height) + 20px);
    }
    .hero-stats { grid-template-columns: 1fr; max-width: 100%; }
    .hero-panel { min-height: auto; }
    .signal-grid { height: 220px; }
    .features-grid, .use-cases-grid, .trust-grid, .workflow-strip,
    .spotlight-grid, .sub-feature-grid { grid-template-columns: 1fr; }
    .mock-kanban { grid-template-columns: 1fr; }
    .mock-sidebar { display: none; }
    .mock-flyout { position: relative; width: 100%; border-left: none; border-top: 1px solid rgba(127, 157, 255, 0.15); }
    .product-body { flex-direction: column; }
    .comparison-head { display: none; }
    .comparison-row {
        grid-template-columns: 1fr;
        border-bottom: 1px solid rgba(127, 157, 255, 0.2);
        margin-bottom: 0.75rem;
        background: rgba(14, 29, 55, 0.52);
    }
    .comparison-row div { border-bottom: 1px solid rgba(127, 157, 255, 0.14); }
    .comparison-row div:last-child { border-bottom: none; }
    .comparison-row div::before {
        content: attr(data-label);
        min-width: 120px;
        color: #9db5e4;
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        margin-right: auto;
    }
    .comparison-row div:first-child::before { content: "Feature"; }
    .comparison-row .yes, .comparison-row .no { justify-content: flex-start; }
    .footer-wrap { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition: none !important; }
}
