/* Curated List Of — shared component styles (works with Tailwind Play CDN). */

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: #fff;
    padding: 8px 16px;
    z-index: 1000;
    transition: top 0.2s;
    font-weight: 500;
}
.skip-link:focus {
    top: 0;
}

:root {
    --primary: #8B5CF6;
    --primary-dark: #7C3AED;
    --primary-light: #A78BFA;
    --secondary: #6366F1;
    --accent: #FBBF24;
    --bg-dark: #0F0F23;
    --bg-card: #1A1A2E;
    --bg-elevated: #16213E;
    --text: #F8FAFC;
    --text-muted: #94A3B8;
    --text-dark: #CBD5E1;
    --border: #334155;
    --success: #10B981;
    --font-heading: 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --container: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-dark);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text);
    line-height: 1.2;
}

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

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

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-accent {
    background: var(--accent);
    color: var(--bg-dark);
}

.btn-accent:hover {
    background: #F59E0B;
    transform: translateY(-1px);
}

.btn-white {
    background: #fff;
    color: var(--primary-dark);
}

.btn-white:hover {
    background: #f1f5f9;
    color: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-white svg {
    color: inherit;
}

/* Scope to .site-nav only — any other <nav> in the page must not pick up fixed top bar styles. */
nav.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(15, 15, 35, 0.65);
    backdrop-filter: blur(20px) saturate(1.35);
    -webkit-backdrop-filter: blur(20px) saturate(1.35);
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

/* 1fr | auto | 1fr — link cluster is centered in the bar, not in leftover space after the logo */
nav.site-nav .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 1rem;
    height: 56px;
}

.logo {
    grid-column: 1;
    justify-self: start;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.0625rem;
    letter-spacing: -0.02em;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.logo:hover {
    color: var(--primary-light);
}

.logo svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.nav-links {
    grid-column: 2;
    justify-self: center;
    display: flex;
    gap: 1.375rem;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.nav-links a {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: rgba(148, 163, 184, 0.9);
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary-light);
}

.page-breadcrumb-wrap {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 0.625rem 0;
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.page-breadcrumb a {
    color: inherit;
    transition: color 0.2s;
}

.page-breadcrumb a:hover {
    color: var(--primary-light);
}

.page-breadcrumb .sep {
    opacity: 0.4;
}

.hero,
.page-hero {
    padding: 10rem 0 6rem;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before,
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.page-hero-content {
    max-width: 720px;
    position: relative;
}

.page-hero-content--center {
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.page-hero-content--center .hero-badge {
    margin-left: auto;
    margin-right: auto;
}

.page-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.page-hero-content--center h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.hero-title-line {
    display: block;
    font-weight: 600;
    font-size: 0.45em;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.hero-title-accent {
    color: var(--primary-light);
}

.hero-title-chevron {
    color: var(--text-muted);
    font-weight: 500;
    margin-right: 0.15em;
}

.page-hero p {
    font-size: 1.0625rem;
    color: var(--text-muted);
    max-width: 580px;
    margin-bottom: 1.5rem;
}

.page-hero-content--center .hero-lead {
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.0625rem;
    line-height: 1.65;
    margin-bottom: 2rem;
}

.page-hero-content--center .hero-cta-sub,
.page-hero-content--center .hero-secondary-link {
    margin-left: auto;
    margin-right: auto;
}

/* Unified hero CTA: pill download + install command (smartphones) */
.hero-cta-bar {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    min-height: 3.25rem;
    background: #14141f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.hero-cta-bar .btn-hero-download {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.15rem 0.65rem 1.25rem;
    margin: 0.4rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--bg-dark);
    background: #fff;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: background 0.15s, transform 0.15s;
}

.hero-cta-bar .btn-hero-download:hover {
    background: #f1f5f9;
}

.hero-cta-bar .btn-hero-download:active {
    transform: scale(0.98);
}

.hero-cta-bar .btn-hero-download svg.chevron {
    width: 14px;
    height: 14px;
    opacity: 0.5;
    margin-left: 0.125rem;
}

.hero-cta-bar-divider {
    display: none;
    width: 1px;
    align-self: stretch;
    margin: 0.5rem 0;
    background: rgba(255, 255, 255, 0.08);
}

@media (min-width: 769px) {
    .hero-cta-bar {
        flex-wrap: nowrap;
    }

    .hero-cta-bar-divider {
        display: block;
    }
}

.hero-cta-bar-code {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    padding: 0.65rem 0.75rem 0.65rem 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.hero-cta-bar-code .install-cmd-code {
    font-size: 0.78rem;
}

.hero-cta-bar .install-cmd-copy {
    flex-shrink: 0;
    width: 3rem;
    min-height: 3.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.15s, background 0.15s;
}

@media (min-width: 769px) {
    .hero-cta-bar .install-cmd-copy {
        border-top: none;
    }
}

.hero-cta-bar .install-cmd-copy:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}

.hero-cta-bar .install-cmd-copy:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: -2px;
}

.hero-cta-bar .install-cmd-copy svg {
    width: 18px;
    height: 18px;
}

.hero-cta-sub {
    margin-top: 1rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.hero-cta-sub a {
    color: var(--primary-light);
    border-bottom: 1px solid rgba(167, 139, 250, 0.3);
}

.hero-cta-sub a:hover {
    border-color: var(--primary-light);
}

.hero-secondary-link {
    margin-top: 1.5rem;
    font-size: 0.875rem;
}

.hero-secondary-link a {
    color: var(--text-muted);
    border-bottom: 1px solid rgba(148, 163, 184, 0.35);
    transition: color 0.15s, border-color 0.15s;
}

.hero-secondary-link a:hover {
    color: var(--text-dark);
    border-color: var(--text-muted);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
}

.page-hero .hero-badge {
    padding: 0.375rem 0.875rem;
    font-size: 0.8125rem;
    margin-bottom: 1.25rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero h1 span {
    color: var(--primary-light);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.stat {
    text-align: center;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
}

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

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

.methodology-note a {
    color: var(--primary-light);
    border-bottom: 1px solid rgba(167, 139, 250, 0.3);
}

.methodology-note a:hover {
    border-color: var(--primary-light);
}

/* One-line install command (curl … | bash) */
.install-cmd-wrap {
    margin-top: 1.25rem;
    max-width: 100%;
}

.install-cmd-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.install-cmd-bar {
    display: flex;
    align-items: stretch;
    gap: 0;
    min-height: 3rem;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.install-cmd-scroll {
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    -webkit-overflow-scrolling: touch;
}

.install-cmd-code {
    font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
    font-size: 0.8125rem;
    line-height: 1.45;
    white-space: nowrap;
    color: #e2e8f0;
}

.install-cmd-bin,
.install-cmd-flag {
    color: #f0a78c;
}

.install-cmd-url {
    color: #f8fafc;
}

.install-cmd-pipe {
    color: #64748b;
    margin: 0 0.15em;
}

.install-cmd-shell {
    color: #38bdf8;
}

.install-cmd-seg {
    color: #a5f3fc;
}

.install-cmd-copy {
    flex-shrink: 0;
    width: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.15s, background 0.15s;
}

.install-cmd-copy:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}

.install-cmd-copy:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: -2px;
}

.install-cmd-copy svg {
    width: 18px;
    height: 18px;
}

.install-cmd-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.625rem;
    line-height: 1.5;
}

.meta-bar {
    padding: 0.875rem 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
}

.meta-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.meta-info {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.meta-item {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.meta-item strong {
    color: var(--text-dark);
    font-weight: 600;
}

.score-legend {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.table-section {
    padding: 2.5rem 0 4rem;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid var(--border);
}

#smartphones-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

#smartphones-table thead {
    background: var(--bg-elevated);
}

#smartphones-table thead th {
    padding: 1rem 0.875rem;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    border-bottom: 1px solid var(--border);
}

#smartphones-table thead th.score-col {
    text-align: center;
}

#smartphones-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
}

#smartphones-table tbody tr:last-child {
    border-bottom: none;
}

#smartphones-table tbody tr:hover {
    background: rgba(139, 92, 246, 0.04);
}

#smartphones-table tbody td {
    padding: 1rem 0.875rem;
    font-size: 0.9375rem;
    vertical-align: middle;
}

.rank-cell {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-muted);
    width: 3rem;
}

.rank-cell.top3 {
    color: var(--accent);
}

.phone-cell {
    min-width: 200px;
}

.phone-name {
    font-weight: 600;
    color: var(--text);
    font-size: 0.9375rem;
}

.phone-meta {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.125rem;
}

.price-cell {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

.score-cell {
    text-align: center;
}

.score-bar-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.score-num {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9375rem;
    min-width: 2.25rem;
    text-align: right;
}

.score-bar {
    width: 48px;
    height: 6px;
    background: var(--bg-elevated);
    border-radius: 3px;
    overflow: hidden;
    flex-shrink: 0;
}

.score-fill {
    height: 100%;
    border-radius: 3px;
}

.overall-cell {
    text-align: center;
}

.overall-score {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
}

.score-9,
.score-10 {
    color: #10B981;
}

.score-7,
.score-8 {
    color: #A78BFA;
}

.score-5,
.score-6 {
    color: #FBBF24;
}

.score-0,
.score-1,
.score-2,
.score-3,
.score-4 {
    color: #94A3B8;
}

.fill-high {
    background: #10B981;
}

.fill-mid-high {
    background: #A78BFA;
}

.fill-mid {
    background: #FBBF24;
}

.fill-low {
    background: #64748B;
}

.strengths {
    display: flex;
    gap: 0.375rem;
    flex-wrap: wrap;
}

.pill {
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-light);
    border: 1px solid rgba(139, 92, 246, 0.2);
    white-space: nowrap;
}

.pill-green {
    background: rgba(16, 185, 129, 0.1);
    color: #34D399;
    border-color: rgba(16, 185, 129, 0.2);
}

.pill-amber {
    background: rgba(251, 191, 36, 0.1);
    color: #FCD34D;
    border-color: rgba(251, 191, 36, 0.2);
}

.methodology-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.methodology-box h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.methodology-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.methodology-box .methodology-meta {
    font-size: 0.8125rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.methodology-box a {
    color: var(--primary-light);
}

.methodology-box-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.methodology-box-actions .btn {
    padding: 0.65rem 1.35rem;
    font-size: 0.9375rem;
}

.methodology-box-hint {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.category-weights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.weight-item {
    padding: 0.375rem 0.75rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.8125rem;
    color: var(--text-dark);
}

.weight-item span {
    color: var(--primary-light);
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.2s;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

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

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.2s;
}

.value-card:hover {
    border-color: var(--primary);
}

.value-card-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-elevated);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.value-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-light);
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.value-card .link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary-light);
    font-weight: 500;
    font-size: 0.875rem;
}

.value-card .link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s;
}

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

.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: all 0.2s;
}

.step:hover {
    border-color: var(--primary);
}

.step-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.step-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.step-tag {
    padding: 0.25rem 0.75rem;
    background: var(--bg-elevated);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary-light);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.vision-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
}

.vision-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.vision-card-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.vision-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.vision-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.vision-pullquote {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-style: italic;
    color: var(--primary-light) !important;
}

.vision-card-full-width {
    grid-column: span 2;
}

.integrations {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.integration-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.2s;
}

.integration-badge:hover {
    border-color: var(--primary);
    color: var(--primary-light);
}

.integration-badge svg {
    width: 20px;
    height: 20px;
}

.cta-section {
    padding: 6rem 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-box h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.faq-item p {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

footer {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

footer p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

footer a {
    color: var(--primary-light);
    font-weight: 500;
}

footer a:hover {
    text-decoration: underline;
}

.footer-note {
    margin-top: 1rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
    opacity: 0.85;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.trust-badge svg {
    width: 20px;
    height: 20px;
    color: var(--success);
}

.table-footnote {
    margin-top: 1.5rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.table-footnote a {
    color: var(--primary-light);
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .vision-card-full-width {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    nav.site-nav .container {
        display: flex;
        justify-content: flex-start;
    }

    .hero,
    .page-hero {
        padding: 8rem 0 4rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .features-grid,
    .value-grid {
        grid-template-columns: 1fr;
    }

    .step {
        flex-direction: column;
    }

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

    .hero-cta-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta-bar .btn-hero-download {
        justify-content: center;
        width: calc(100% - 0.8rem);
        margin: 0.5rem;
    }

    .hero-cta-bar-divider {
        display: none;
    }

    .hero-cta-bar-code {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding: 0.75rem 1rem;
    }

    .hero-cta-bar .install-cmd-copy {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        width: 100%;
        min-height: 2.75rem;
    }
}

@media (max-width: 640px) {
    .meta-info {
        gap: 1rem;
    }
}
