:root {
    --background: 0 0% 7%;
    --foreground: 0 0% 98%;
    --card: 0 0% 10%;
    --card-foreground: 0 0% 98%;
    --popover: 0 0% 10%;
    --popover-foreground: 0 0% 98%;
    --primary: 52 100% 54%;
    --primary-foreground: 0 0% 7%;
    --secondary: 0 0% 14%;
    --secondary-foreground: 0 0% 98%;
    --muted: 0 0% 14%;
    --muted-foreground: 0 0% 60%;
    --accent: 52 100% 54%;
    --accent-foreground: 0 0% 7%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 98%;
    --border: 0 0% 18%;
    --input: 0 0% 18%;
    --ring: 52 100% 54%;
    --radius: 0.5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-color: hsl(var(--border));
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

code {
    font-family: 'JetBrains Mono', monospace;
}

.bg-background { background-color: hsl(var(--background)); }
.bg-card { background-color: hsl(var(--card)); }
.bg-card\/30 { background-color: hsl(var(--card) / 0.3); }
.bg-card\/50 { background-color: hsl(var(--card) / 0.5); }
.bg-primary { background-color: hsl(var(--primary)); }
.bg-primary\/5 { background-color: hsl(var(--primary) / 0.05); }
.bg-primary\/10 { background-color: hsl(var(--primary) / 0.1); }
.bg-primary\/20 { background-color: hsl(var(--primary) / 0.2); }
.bg-secondary { background-color: hsl(var(--secondary)); }
.bg-secondary\/50 { background-color: hsl(var(--secondary) / 0.5); }
.bg-muted { background-color: hsl(var(--muted)); }
.text-foreground { color: hsl(var(--foreground)); }
.text-foreground\/80 { color: hsl(var(--foreground) / 0.8); }
.text-primary { color: hsl(var(--primary)); }
.text-primary-foreground { color: hsl(var(--primary-foreground)); }
.text-secondary-foreground { color: hsl(var(--secondary-foreground)); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.text-muted-foreground\/80 { color: hsl(var(--muted-foreground) / 0.8); }
.border-border { border-color: hsl(var(--border)); }
.border-primary { border-color: hsl(var(--primary)); }
.border-primary\/30 { border-color: hsl(var(--primary) / 0.3); }
.border-primary\/50 { border-color: hsl(var(--primary) / 0.5); }

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

.orb {
    position: absolute;
    border-radius: 9999px;
    transform: translate(-50%, -50%);
    will-change: transform;
    contain: layout style paint;
}

.orb-1 {
    left: -10%;
    top: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, hsl(52 100% 54% / 0.15) 0%, transparent 70%);
    filter: blur(120px);
    animation: orb-float-1 20s ease-in-out infinite;
}

.orb-2 {
    left: 80%;
    top: 20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, hsl(52 100% 54% / 0.12) 0%, transparent 70%);
    filter: blur(100px);
    animation: orb-float-2 25s ease-in-out infinite;
}

.orb-3 {
    left: 30%;
    top: 70%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, hsl(52 100% 54% / 0.08) 0%, transparent 70%);
    filter: blur(150px);
    animation: orb-float-3 18s ease-in-out infinite;
}

.orb-4 {
    left: 60%;
    top: 50%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, hsl(52 100% 54% / 0.1) 0%, transparent 70%);
    filter: blur(80px);
    animation: orb-float-1 20s ease-in-out infinite;
}

.grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.02;
    background-image:
        linear-gradient(hsl(52 100% 54% / 0.5) 1px, transparent 1px),
        linear-gradient(90deg, hsl(52 100% 54% / 0.5) 1px, transparent 1px);
    background-size: 80px 80px;
}

.noise-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.015;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.fade-top {
    position: absolute;
    inset: 0;
    left: 0;
    right: 0;
    top: 0;
    height: 8rem;
    background: linear-gradient(to bottom, hsl(var(--background)), transparent);
}

.fade-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 8rem;
    background: linear-gradient(to top, hsl(var(--background)), transparent);
}

@keyframes orb-float-1 {
    0%, 100% { transform: translate(0) scale(1); }
    25% { transform: translate(100px, -50px) scale(1.1); }
    50% { transform: translate(50px, 100px) scale(0.9); }
    75% { transform: translate(-50px, 50px) scale(1.05); }
}

@keyframes orb-float-2 {
    0%, 100% { transform: translate(0) scale(1); }
    25% { transform: translate(-80px, 60px) scale(0.95); }
    50% { transform: translate(-120px, -40px) scale(1.1); }
    75% { transform: translate(40px, -80px) scale(1); }
}

@keyframes orb-float-3 {
    0%, 100% { transform: translate(0) scale(1); }
    33% { transform: translate(60px, 80px) scale(1.15); }
    66% { transform: translate(-80px, 40px) scale(0.9); }
}

@keyframes fade-in-up {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes ping {
    75%, 100% { opacity: 0; transform: scale(2); }
}

.animate-fade-in-up {
    will-change: transform, opacity;
    animation: fade-in-up 0.6s ease-out forwards;
}

.animate-pulse-glow {
    will-change: transform, opacity;
    animation: pulse-glow 4s ease-in-out infinite;
}

.animate-ping {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s;
    background: transparent;
}

header.scrolled {
    background-color: hsl(var(--background) / 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid hsl(var(--border));
}

header nav {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s;
}

.nav-brand:hover {
    transform: scale(1.05);
}

.nav-brand img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    transition: box-shadow 0.3s;
}

.nav-brand:hover img {
    box-shadow: 0 0 20px hsl(var(--primary) / 0.5);
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
}

.nav-brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    line-height: 1.2;
}

.nav-brand-sub {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: hsl(var(--primary));
    font-weight: 500;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: hsl(var(--muted-foreground));
    transition: color 0.3s;
    position: relative;
    font-size: 0.875rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    height: 2px;
    width: 0;
    background: hsl(var(--primary));
    transition: width 0.3s;
}

.nav-links a:hover {
    color: hsl(var(--foreground));
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta-wrapper {
    display: none;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: calc(var(--radius) - 2px);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    height: 2.5rem;
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: hsl(var(--primary) / 0.9);
    box-shadow: 0 0 20px hsl(var(--primary) / 0.4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: calc(var(--radius) - 2px);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    height: 2.5rem;
    border: 1px solid hsl(var(--border));
    background: transparent;
    color: hsl(var(--foreground));
    transition: all 0.3s;
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    border-color: hsl(var(--primary) / 0.5);
    background: hsl(var(--primary) / 0.1);
    box-shadow: 0 0 20px hsl(var(--primary) / 0.2);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: calc(var(--radius) - 2px);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    height: 2.5rem;
    background: hsl(var(--secondary));
    color: hsl(var(--secondary-foreground));
    transition: all 0.3s;
    width: 100%;
}

.btn-secondary:hover {
    background: hsl(var(--secondary) / 0.8);
}

.btn-large {
    height: 2.75rem;
    padding: 0.5rem 2rem;
    font-size: 1rem;
    border-radius: calc(var(--radius) - 2px);
}

.hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: calc(var(--radius) - 2px);
    color: hsl(var(--foreground));
    transition: background 0.2s;
}

.hamburger:hover {
    background: hsl(var(--accent));
}

.hamburger svg {
    width: 1.5rem;
    height: 1.5rem;
    transition: transform 0.3s;
}

.mobile-menu {
    overflow: hidden;
    border-top: 1px solid hsl(var(--border));
    background: hsl(var(--background) / 0.95);
    backdrop-filter: blur(12px);
    max-height: 0;
    opacity: 0;
    transition: all 0.3s;
}

.mobile-menu.open {
    max-height: 400px;
    opacity: 1;
}

.mobile-menu ul {
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

.mobile-menu a {
    display: block;
    padding: 0.75rem 0;
    color: hsl(var(--muted-foreground));
    transition: color 0.2s;
}

.mobile-menu a:hover {
    color: hsl(var(--primary));
}

.mobile-menu .btn-primary {
    width: 100%;
    margin-top: 0.75rem;
}

.hero {
    position: relative;
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 5rem 1rem 2rem;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 400px;
    width: 400px;
    border-radius: 9999px;
    background: hsl(var(--primary) / 0.1);
    filter: blur(100px);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.version-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    border: 1px solid hsl(var(--primary) / 0.3);
    background: hsl(var(--primary) / 0.1);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    backdrop-filter: blur(4px);
    margin-bottom: 2rem;
}

.ping-dot {
    position: relative;
    display: flex;
    width: 0.5rem;
    height: 0.5rem;
}

.ping-dot .ping {
    position: absolute;
    display: inline-flex;
    width: 100%;
    height: 100%;
    border-radius: 9999px;
    background: hsl(var(--primary));
    opacity: 0.75;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.ping-dot .dot {
    position: relative;
    display: inline-flex;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: hsl(var(--primary));
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: hsl(var(--foreground));
    margin-bottom: 1.5rem;
    text-wrap: balance;
    line-height: 1;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: hsl(var(--foreground) / 0.8);
    margin-bottom: 1rem;
}

.hero-description {
    max-width: 42rem;
    margin: 0 auto 1.5rem;
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    text-wrap: balance;
}

.hero-extra {
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    font-size: 1rem;
    color: hsl(var(--muted-foreground) / 0.8);
    text-wrap: balance;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    padding: 0.5rem 2rem;
    height: 2.75rem;
    border-radius: calc(var(--radius) - 2px);
    font-size: 1rem;
    font-weight: 500;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    transition: all 0.3s;
}

.btn-hero-primary:hover {
    box-shadow: 0 0 30px hsl(var(--primary) / 0.5);
}

.btn-hero-primary .btn-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--primary)), hsl(var(--primary) / 0.8));
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-hero-primary:hover .btn-overlay {
    opacity: 1;
}

.btn-hero-primary span,
.btn-hero-primary svg {
    position: relative;
    z-index: 1;
}

.hero-trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 42rem;
    margin: 3rem auto 0;
}

.trust-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border-radius: 0.75rem;
    border: 1px solid hsl(var(--border));
    background: hsl(var(--card) / 0.3);
    padding: 1rem;
    backdrop-filter: blur(4px);
    transition: all 0.3s;
}

.trust-card:hover {
    border-color: hsl(var(--primary) / 0.3);
    background: hsl(var(--card) / 0.5);
}

.trust-card svg {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
}

.trust-card .icon-green { color: #22c55e; }
.trust-card .icon-primary { color: hsl(var(--primary)); }

.trust-card p:first-child {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--foreground));
}

.trust-card p:last-child {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
}

.section {
    position: relative;
    padding: 6rem 1rem;
}

.section-inner {
    max-width: 80rem;
    margin: 0 auto;
}

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

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: hsl(var(--primary));
    margin-bottom: 1rem;
}

.section-label svg {
    width: 1rem;
    height: 1rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.section-subtitle {
    color: hsl(var(--muted-foreground));
    max-width: 42rem;
    margin: 0 auto;
}

.section-extra {
    max-width: 42rem;
    margin: 0.75rem auto 0;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground) / 0.8);
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    font-size: 0.875rem;
    font-weight: 500;
    height: 2.25rem;
    padding: 0 0.75rem;
    border-radius: calc(var(--radius) - 2px);
    border: 1px solid hsl(var(--input));
    background: transparent;
    color: hsl(var(--foreground));
    transition: all 0.3s;
}

.filter-btn:hover {
    background: hsl(var(--primary) / 0.1);
}

.filter-btn.active {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    border-color: hsl(var(--primary));
    box-shadow: 0 0 20px hsl(var(--primary) / 0.3);
}

.filter-btn svg {
    width: 1rem;
    height: 1rem;
}

.filter-count {
    border-radius: 9999px;
    padding: 0.125rem 0.5rem;
    font-size: 0.75rem;
}

.filter-btn.active .filter-count {
    background: hsl(var(--primary-foreground) / 0.2);
    color: hsl(var(--primary-foreground));
}

.filter-btn:not(.active) .filter-count {
    background: hsl(var(--muted));
    color: hsl(var(--muted-foreground));
}

.modules-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

.module-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    border: 1px solid hsl(var(--border));
    background: hsl(var(--card) / 0.5);
    padding: 1.25rem;
    backdrop-filter: blur(4px);
    transition: all 0.5s;
}

.module-card:hover {
    border-color: hsl(var(--primary) / 0.5);
    background: hsl(var(--card));
    box-shadow: 0 0 30px -5px hsl(var(--primary) / 0.2);
    transform: translateY(-4px);
}

.module-card .card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, hsl(var(--primary) / 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.module-card:hover .card-gradient {
    opacity: 1;
}

.module-card .card-content {
    position: relative;
}

.module-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.module-icon {
    display: flex;
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: hsl(var(--primary) / 0.1);
    color: hsl(var(--primary));
    transition: all 0.3s;
}

.module-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.module-card:hover .module-icon {
    transform: scale(1.1);
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    box-shadow: 0 0 20px hsl(var(--primary) / 0.4);
}

.module-badge {
    border-radius: 9999px;
    padding: 0.125rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.module-name {
    font-size: 1rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.25rem;
}

.module-desc {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.show-all-btn {
    margin-top: 2.5rem;
    text-align: center;
}

.download-section .section-inner {
    max-width: 64rem;
}

.download-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

.download-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid hsl(var(--border));
    background: hsl(var(--card) / 0.5);
    transition: all 0.5s;
}

.download-card:hover {
    transform: translateY(-4px);
    border-color: hsl(var(--primary) / 0.3);
    background: hsl(var(--card));
}

.download-card.featured {
    border-color: hsl(var(--primary) / 0.5);
    background: hsl(var(--primary) / 0.05);
}

.download-card.featured:hover {
    border-color: hsl(var(--primary));
    box-shadow: 0 0 40px hsl(var(--primary) / 0.2);
}

.download-card .glow-orb {
    position: absolute;
    right: -2rem;
    top: -2rem;
    width: 6rem;
    height: 6rem;
    border-radius: 9999px;
    background: hsl(var(--primary) / 0.2);
    filter: blur(40px);
    transition: all 0.5s;
}

.download-card:hover .glow-orb {
    background: hsl(var(--primary) / 0.3);
}

.download-card-inner {
    position: relative;
    padding: 1.5rem;
}

.download-card .tag {
    display: inline-block;
    border-radius: 9999px;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.download-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.download-card p {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
}

.download-card .source-text {
    margin-top: 0.75rem;
    text-align: center;
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 0;
}

.download-card .source-text a {
    color: hsl(var(--primary));
    text-decoration-skip-ink: none;
    transition: color 0.2s;
}

.download-card .source-text a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.also-want {
    margin-top: 2.5rem;
}

.also-want-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.also-want-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.also-want-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid hsl(var(--border));
    background: hsl(var(--card) / 0.5);
    backdrop-filter: blur(4px);
    transition: all 0.3s;
}

.also-want-card:hover {
    border-color: hsl(var(--primary) / 0.3);
    background: hsl(var(--card));
    transform: translateY(-2px);
}

.also-want-icon {
    display: flex;
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background: hsl(var(--primary) / 0.1);
    color: hsl(var(--primary));
}

.also-want-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.25rem;
}

.also-want-card p {
    font-size: 0.85rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.also-want-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: hsl(var(--primary));
    text-decoration: none;
    transition: opacity 0.2s;
}

.also-want-link:hover {
    opacity: 0.8;
}

.disclaimer-box {
    margin-top: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid hsl(var(--border));
    background: hsl(var(--card) / 0.5);
    padding: 1.5rem;
    backdrop-filter: blur(4px);
}

.disclaimer-box .disclaimer-inner {
    display: flex;
    gap: 1rem;
}

.disclaimer-box svg {
    margin-top: 0.125rem;
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(var(--primary));
}

.disclaimer-box .title {
    font-weight: 500;
    color: hsl(var(--foreground));
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.disclaimer-box .body {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.625;
}

.checkmarks {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.check-item svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #22c55e;
}

.install-section .section-inner {
    max-width: 56rem;
}

.install-section .section-header {
    margin-bottom: 4rem;
}

.timeline {
    position: relative;
}

.timeline-line {
    display: none;
    position: absolute;
    left: 1.5rem;
    top: 0;
    height: 100%;
    width: 1px;
    background: linear-gradient(to bottom, hsl(var(--primary)), hsl(var(--primary) / 0.5), transparent);
}

.timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-step {
    display: flex;
    gap: 1.5rem;
    transition: all 0.5s;
}

.step-number {
    position: relative;
    z-index: 10;
    display: flex;
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: 2px solid hsl(var(--primary));
    background: hsl(var(--background));
    font-size: 0.875rem;
    font-weight: 700;
    color: hsl(var(--primary));
    transition: all 0.3s;
}

.timeline-step:hover .step-number {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    box-shadow: 0 0 20px hsl(var(--primary) / 0.4);
}

.step-card {
    flex: 1;
    border-radius: 0.75rem;
    border: 1px solid hsl(var(--border));
    background: hsl(var(--card) / 0.5);
    padding: 1.25rem;
    backdrop-filter: blur(4px);
    transition: all 0.3s;
}

.timeline-step:hover .step-card {
    border-color: hsl(var(--primary) / 0.3);
    background: hsl(var(--card));
    transform: translateY(-4px);
}

.step-card h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.step-card p {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
    line-height: 1.6;
}

.step-card a {
    color: hsl(var(--primary));
    text-decoration: none;
}

.step-card a:hover {
    text-decoration: underline;
}

.path-blocks {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.path-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid hsl(var(--border));
    background: hsl(var(--secondary) / 0.5);
    transition: border-color 0.2s;
}

.path-block:hover {
    border-color: hsl(var(--primary) / 0.3);
}

.path-block-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    overflow: hidden;
}

.path-os {
    border-right: 1px solid hsl(var(--border));
    background: hsl(var(--muted));
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    color: hsl(var(--muted-foreground));
    flex-shrink: 0;
}

.path-block code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    color: hsl(var(--foreground));
    padding: 0.5rem 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.copy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0 0.5rem;
    height: 2rem;
    border-radius: calc(var(--radius) - 2px);
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
    transition: all 0.2s;
    flex-shrink: 0;
    margin-right: 0.5rem;
}

.copy-btn:hover {
    background: hsl(var(--accent));
    color: hsl(var(--foreground));
}

.copy-btn svg {
    width: 0.875rem;
    height: 0.875rem;
}

.faq-section .section-inner {
    max-width: 48rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    overflow: hidden;
    border-radius: 0.75rem;
    border: 1px solid hsl(var(--border));
    background: hsl(var(--card) / 0.5);
    transition: all 0.5s;
}

.faq-item:hover,
.faq-item.active {
    border-color: hsl(var(--border));
    background: hsl(var(--card));
}

.faq-item.active {
    border-color: hsl(var(--primary) / 0.5);
    box-shadow: 0 0 30px -10px hsl(var(--primary) / 0.2);
}

.faq-question {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    text-align: left;
    color: hsl(var(--foreground));
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
}

.faq-question svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    color: hsl(var(--muted-foreground));
    transition: transform 0.3s, color 0.3s;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: hsl(var(--primary));
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease-in-out;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-answer-content {
    border-top: 1px solid hsl(var(--border));
    padding: 1rem 1.25rem 1.25rem;
}

.faq-answer-content p {
    color: hsl(var(--muted-foreground));
    line-height: 1.625;
    font-size: 0.875rem;
}

.faq-cta {
    margin-top: 2.5rem;
    text-align: center;
}

.faq-cta p {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
}

footer {
    position: relative;
    border-top: 1px solid hsl(var(--border));
    background: hsl(var(--card) / 0.5);
}

.footer-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsl(var(--background)), transparent);
    pointer-events: none;
}

.footer-inner {
    position: relative;
    max-width: 80rem;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

.footer-brand {
    grid-column: span 1;
}

.footer-brand a {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

.footer-brand a:hover {
    transform: scale(1.05);
}

.footer-brand img {
    width: 32px;
    height: 32px;
    border-radius: var(--radius);
}

.footer-brand-text .name {
    font-size: 1.125rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    line-height: 1.2;
}

.footer-brand-text .sub {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: hsl(var(--primary));
    font-weight: 500;
}

.footer-brand > p {
    max-width: 24rem;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    border: 1px solid hsl(var(--border));
    background: hsl(var(--secondary));
    color: hsl(var(--muted-foreground));
    transition: all 0.3s;
}

.social-link:hover {
    border-color: hsl(var(--primary) / 0.5);
    color: hsl(var(--primary));
    box-shadow: 0 0 15px hsl(var(--primary) / 0.2);
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-col h3 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col a {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    transition: color 0.2s;
}

.footer-col a:hover {
    color: hsl(var(--primary));
}

.footer-bottom {
    margin-top: 3rem;
    border-top: 1px solid hsl(var(--border));
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: center;
}

.footer-bottom p:first-child {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.footer-bottom p:last-child {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(2rem);
    transition: all 0.7s;
}

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

.first-time-link {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.first-time-link a {
    color: hsl(var(--primary));
    text-underline-offset: 4px;
    transition: color 0.2s;
}

.first-time-link a:hover {
    text-decoration: underline;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }

    .hero-trust {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .nav-cta-wrapper {
        display: block;
    }

    .hamburger {
        display: none;
    }

    .mobile-menu {
        display: none;
    }

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

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .section {
        padding: 8rem 1rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .download-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .also-want-grid {
        grid-template-columns: 1fr 1fr;
    }

    .timeline-line {
        display: block;
        left: 2rem;
    }

    .timeline-step {
        gap: 2rem;
    }

    .step-number {
        width: 4rem;
        height: 4rem;
        font-size: 1rem;
    }

    .step-card h3 {
        font-size: 1.25rem;
    }

    .footer-inner {
        padding: 3rem 1.5rem 4rem;
    }

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

    .footer-bottom {
        flex-direction: row;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 6rem;
    }

    .modules-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }
}

@media (min-width: 1280px) {
    .modules-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
