/* VoiceType — shared design system (source: index.html) */
:root {
    --color-bg-0: #0a0a0a;
    --color-bg-1: #1a1a2e;
    --color-bg-2: #16213e;
    --color-text: #ffffff;
    --color-text-muted: rgba(255, 255, 255, 0.6);
    --color-text-dim: rgba(255, 255, 255, 0.4);
    --color-brand-1: #8b5cf6;
    --color-brand-2: #6366f1;
    --color-brand-purple: #5b4cd4;
    --color-brand-lavender: #7c6bf0;
    --color-accent: #a78bfa;
    --color-border: rgba(255, 255, 255, 0.1);
    --space-section-y: 60px;
    --radius-lg: 16px;
    --container-max: 1200px;
    --header-h: 80px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #fff;
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header.site-header {
    padding: 24px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 12px;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: auto;
}

.nav-toggle:focus-visible {
    outline: 2px solid #a78bfa;
    outline-offset: 2px;
}

.nav-toggle .nav-toggle-bars {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 20px;
    height: 16px;
}

.nav-toggle .nav-toggle-bars span {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

header.site-header.is-open .nav-toggle .nav-toggle-bars span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

header.site-header.is-open .nav-toggle .nav-toggle-bars span:nth-child(2) {
    opacity: 0;
}

header.site-header.is-open .nav-toggle .nav-toggle-bars span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(180deg, #5B4CD4 0%, #7C6BF0 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(123, 97, 255, 0.4);
}

.logo-icon svg {
    width: 22px;
    height: 22px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #fff;
}

/* Inner pages (legal, support, etc.) */
.page-main {
    padding: 120px 0 80px;
}

.page-hero {
    text-align: center;
    margin-bottom: 40px;
}

.page-hero h1,
.content-page h1,
.prose-legal h1 {
    font-size: clamp(32px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-page h2,
.prose-legal h2 {
    font-size: 22px;
    font-weight: 600;
    margin: 40px 0 16px;
    color: #a78bfa;
}

.content-page h2:first-child,
.prose-legal h2:first-of-type {
    margin-top: 0;
}

.content-page h3,
.prose-legal h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 28px 0 12px;
    color: #fff;
}

.content-page p,
.prose-legal p {
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 16px;
}

.content-page a:not(.btn):not(.logo),
.prose-legal a:not(.btn):not(.logo) {
    color: #a78bfa;
    text-decoration: none;
    font-weight: 500;
}

.content-page a:not(.btn):not(.logo):hover,
.prose-legal a:not(.btn):not(.logo):hover {
    text-decoration: underline;
}

.content-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.content-medium {
    max-width: 980px;
    margin: 0 auto;
}

.content-page .lead,
.prose-legal .last-updated {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 24px;
}

.legal-split-links {
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 24px;
    line-height: 1.65;
}

.legal-split-links a {
    color: #a78bfa;
    font-weight: 600;
}

.highlight-box,
.prose-legal .highlight-box {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0;
    color: rgba(255, 255, 255, 0.9);
}

.highlight-box.warning,
.prose-legal .highlight-box.warning {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.35);
}

.highlight-box strong,
.prose-legal .highlight-box strong {
    color: #fff;
}

.toc,
.prose-legal .toc {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 40px;
}

.toc h3,
.prose-legal .toc h3 {
    margin-top: 0;
    margin-bottom: 16px;
    color: #fff;
}

.toc ul,
.prose-legal .toc ul {
    list-style: none;
    padding-left: 0;
}

.toc a,
.prose-legal .toc a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.toc a:hover,
.prose-legal .toc a:hover {
    color: #a78bfa;
    text-decoration: underline;
}

.section,
.prose-legal .section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 32px;
    margin-bottom: 32px;
}

.section:last-child,
.prose-legal .section:last-child {
    border-bottom: none;
}

ul.plain,
ol.plain,
.prose-legal ul,
.prose-legal ol {
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 16px;
    padding-left: 24px;
}

ul.plain li,
ol.plain li,
.prose-legal li {
    margin-bottom: 8px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.data-table th,
.data-table td {
    text-align: left;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
    vertical-align: top;
    color: rgba(255, 255, 255, 0.9);
}

.data-table th {
    background: rgba(0, 0, 0, 0.25);
    color: #cbd5e1;
    font-weight: 600;
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table a {
    color: #a78bfa;
    word-break: break-all;
}

.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 20px 0 32px;
}

.scenario-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.scenario-top a {
    color: #a78bfa;
    text-decoration: none;
    font-weight: 600;
}

.scenario-top a:hover {
    text-decoration: underline;
}

/* Known limitations / status labels */
.known-item {
    margin-top: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 12px;
    padding: 16px 18px;
}

.known-item h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.known-item p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 8px;
}

.known-item p:last-child {
    margin-bottom: 0;
}

.known .direct,
.known .store {
    font-weight: 600;
}

.known .direct {
    color: #4ade80;
}

.known .store {
    color: #fbbf24;
}

.mtx .ok {
    color: #4ade80;
    font-weight: 600;
}

.mtx .fallback {
    color: #fbbf24;
    font-weight: 600;
}

.mtx .clip {
    color: #fb7185;
    font-weight: 600;
}

/* Hero */
.hero {
    padding: 140px 0 60px;
    text-align: center;
}

.badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #A78BFA;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto 48px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    color: #fff;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.hero-note {
    margin-top: 60px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

/* Hero Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(99, 102, 241, 0.08) 40%, transparent 70%);
    filter: blur(60px);
    animation: orb-pulse 8s ease-in-out infinite;
}

@keyframes orb-pulse {
    0%, 100% { transform: translate(-50%, -60%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -60%) scale(1.1); opacity: 0.8; }
}

.hero {
    position: relative;
}

/* Demo Window */
.demo-window {
    background: rgba(20, 20, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    max-width: 480px;
    margin: 0 auto 40px;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.demo-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.demo-dots {
    display: flex;
    gap: 6px;
}

.demo-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

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

.demo-title {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    flex: 1;
    text-align: center;
    margin-right: 48px;
}

.demo-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* Magic Orb - Living Voice Visualization */
.magic-orb {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orb-glow {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,
        rgba(139, 92, 246, 0.4) 0%,
        rgba(99, 102, 241, 0.2) 30%,
        rgba(168, 85, 247, 0.1) 50%,
        transparent 70%
    );
    filter: blur(30px);
    animation: glow-breathe 4s ease-in-out infinite;
}

@keyframes glow-breathe {
    0%, 100% { transform: scale(0.8); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
}

.orb-core {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(15, 15, 25, 0.8);
    box-shadow:
        0 0 60px rgba(139, 92, 246, 0.5),
        0 0 100px rgba(99, 102, 241, 0.3),
        inset 0 0 30px rgba(139, 92, 246, 0.2);
}

.orb-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.layer-1 {
    background: conic-gradient(
        from 0deg,
        rgba(139, 92, 246, 0.8),
        rgba(99, 102, 241, 0.6),
        rgba(168, 85, 247, 0.8),
        rgba(139, 92, 246, 0.6),
        rgba(99, 102, 241, 0.8),
        rgba(139, 92, 246, 0.8)
    );
    animation: rotate-layer 8s linear infinite;
    filter: blur(8px);
}

.layer-2 {
    background: conic-gradient(
        from 120deg,
        rgba(168, 85, 247, 0.6),
        transparent,
        rgba(99, 102, 241, 0.6),
        transparent,
        rgba(139, 92, 246, 0.6),
        transparent
    );
    animation: rotate-layer 6s linear infinite reverse;
    filter: blur(12px);
}

.layer-3 {
    background: radial-gradient(
        circle at 30% 30%,
        rgba(255, 255, 255, 0.3) 0%,
        transparent 50%
    );
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes rotate-layer {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

.orb-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* Floating Particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(167, 139, 250, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.8);
    animation: float-particle 4s ease-in-out infinite;
}

.particles span:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.particles span:nth-child(2) { top: 20%; right: 15%; animation-delay: 0.5s; }
.particles span:nth-child(3) { bottom: 25%; left: 10%; animation-delay: 1s; }
.particles span:nth-child(4) { bottom: 15%; right: 20%; animation-delay: 1.5s; }
.particles span:nth-child(5) { top: 50%; left: 5%; animation-delay: 2s; }
.particles span:nth-child(6) { top: 40%; right: 5%; animation-delay: 2.5s; }

@keyframes float-particle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translate(10px, -20px) scale(1.5);
        opacity: 0.8;
    }
    90% {
        opacity: 1;
    }
}

/* Pulsing effect synced with "speaking" */
.orb-core::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    animation: pulse-speak 1.5s ease-in-out infinite;
}

@keyframes pulse-speak {
    0%, 100% { transform: scale(0.8); opacity: 0.3; }
    25% { transform: scale(1.1); opacity: 0.6; }
    50% { transform: scale(0.9); opacity: 0.4; }
    75% { transform: scale(1.05); opacity: 0.5; }
}

.demo-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    min-height: 24px;
    text-align: center;
}

.typing-text {
    display: inline;
}

.cursor {
    color: rgba(139, 92, 246, 1);
    animation: blink 1s infinite;
    font-weight: 300;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* How to Use */
.how-to-use {
    padding: 60px 0 80px;
    background: rgba(0, 0, 0, 0.2);
}

.how-to-use h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 8px;
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.step-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -12px;
    left: 24px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    margin-top: 8px;
}

.step-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.step-tip {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 8px;
    padding: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.step-tip svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #8B5CF6;
}

kbd {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 2px 8px;
    font-family: inherit;
    font-size: 13px;
}

.troubleshooting {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px;
}

.troubleshooting h3 {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
}

.troubleshoot-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.troubleshoot-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.troubleshoot-q {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.troubleshoot-q svg {
    width: 18px;
    height: 18px;
    color: #A78BFA;
    flex-shrink: 0;
}

.troubleshoot-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
    padding-left: 28px;
}

.troubleshoot-item em {
    color: rgba(255, 255, 255, 0.8);
}

/* Features */
.features {
    padding: 60px 0 80px;
}

.features h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 48px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(99, 102, 241, 0.05) 100%);
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.15);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.5;
}

/* Pricing */
.pricing {
    padding: 60px 0 80px;
}

.pricing h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 12px;
}

.pricing-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* Use Cases */
.use-cases {
    padding: 60px 0 80px;
}

.use-cases.use-cases--tight-top {
    padding-top: 0;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.use-case-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 22px;
    color: inherit;
    text-decoration: none;
    display: block;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.use-case-card:hover {
    transform: translateY(-2px);
    border-color: rgba(124, 107, 240, 0.6);
    background: linear-gradient(135deg, rgba(124, 107, 240, 0.14) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.use-case-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.use-case-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
}

/* Quickstart */
.quickstart {
    padding: 60px 0 80px;
    background: rgba(0, 0, 0, 0.12);
}

.quickstart-shell {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    padding: 22px;
}

.quickstart-shell pre {
    margin: 0;
    white-space: pre-wrap;
    word-break: break-word;
    color: #CFFAFE;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 13px;
    line-height: 1.6;
}

.quickstart-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.quickstart-meta {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.quickstart-note {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

/* Release History */
.release-history {
    padding: 60px 0 80px;
    background: rgba(0, 0, 0, 0.15);
}

.release-card {
    max-width: 900px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
}

.release-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
}

.release-version {
    font-size: 18px;
    font-weight: 600;
}

.release-date {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.release-card ul {
    margin-top: 12px;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.release-card li {
    margin: 6px 0;
}

.roadmap {
    margin-top: 20px;
}

.pricing-card.popular {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(99, 102, 241, 0.08) 100%);
    border-color: rgba(139, 92, 246, 0.4);
    position: relative;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2);
}

.pricing-card.popular:hover {
    box-shadow: 0 16px 48px rgba(139, 92, 246, 0.3);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 20px;
    margin-bottom: 4px;
    font-weight: 600;
}

.pricing-card .price {
    font-size: 40px;
    font-weight: 700;
    margin: 12px 0;
}

.pricing-card .price span {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

.pricing-card ul {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.pricing-card li {
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.pricing-card li svg {
    width: 16px;
    height: 16px;
    color: #8B5CF6;
    flex-shrink: 0;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
}

.pricing-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.pricing-actions .btn {
    width: 100%;
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

footer p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

footer .copyright {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.2);
    margin-top: 20px;
}

footer .made-with {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}

        /* Responsive */
        @media (max-width: 768px) {
            .nav-toggle {
                display: flex;
            }

            .nav-links {
                display: none;
                position: fixed;
                top: 88px;
                left: 16px;
                right: 16px;
                z-index: 200;
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                margin-left: 0;
                padding: 12px;
                background: rgba(12, 12, 20, 0.98);
                border: 1px solid rgba(255, 255, 255, 0.12);
                border-radius: 12px;
                box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55);
            }

            .nav-links a {
                padding: 12px 14px;
                border-radius: 8px;
            }

            .nav-links a:hover,
            .nav-links a:focus-visible {
                background: rgba(255, 255, 255, 0.08);
            }

            header.site-header.is-open .nav-links {
                display: flex;
            }

            .hero {
                padding: 120px 0 40px;
            }

    .features, .pricing {
        padding: 40px 0 60px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .features-grid, .pricing-cards {
        gap: 16px;
    }

    .demo-window {
        margin: 0 16px 32px;
    }

    .demo-content {
        padding: 24px;
    }

    .gradient-orb {
        width: 400px;
        height: 400px;
    }

    .page-main {
        padding: 100px 0 60px;
    }
}

/* Inner pages: hero badge without inline styles */
.page-hero .badge {
    display: inline-block;
    margin-bottom: 16px;
}

.page-hero .last-updated.centered {
    max-width: 52ch;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

/* FAQ: accessible disclosure blocks */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list details {
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    margin-bottom: 12px;
    padding: 0;
    overflow: hidden;
}

.faq-list details[open] {
    border-color: rgba(124, 107, 240, 0.35);
}

.faq-list summary {
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    padding: 16px 18px;
    padding-right: 44px;
    position: relative;
}

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

.faq-list summary::after {
    content: "";
    position: absolute;
    right: 18px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--color-accent);
    border-bottom: 2px solid var(--color-accent);
    transform: translateY(-60%) rotate(45deg);
    transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
    transform: translateY(-20%) rotate(225deg);
}

.faq-list summary:hover,
.faq-list summary:focus-visible {
    color: #e9d5ff;
    outline: none;
}

.faq-list summary:focus-visible {
    box-shadow: inset 0 0 0 2px var(--color-accent);
    border-radius: 12px;
}

.faq-list .faq-answer {
    padding: 0 18px 18px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    line-height: 1.65;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-list .faq-answer p {
    margin-bottom: 12px;
}

.faq-list .faq-answer p:last-child {
    margin-bottom: 0;
}

/* Compare / hub: callout CTA */
.section-cta {
    text-align: center;
    margin-top: 48px;
    padding: 40px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(124, 107, 240, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.section-cta p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
    max-width: 46ch;
    margin-left: auto;
    margin-right: auto;
}
