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

:root {
    --storm-bg-main: #07080c;
    --storm-bg-inner: #0b0c12;
    --storm-button: #10121a;
    --storm-border: #10121a;
    --storm-text-primary: #ffffff;
    --storm-text-secondary: #a0a0a0;
    --storm-accent: #0ea5e9;
    --storm-accent-light: #38bdf8;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--storm-bg-main);
    color: var(--storm-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    letter-spacing: -0.01em;
}

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

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--storm-bg-main);
    z-index: 1000;
    border-bottom: 1px solid var(--storm-border);
}

.navbar {
    padding: 1.25rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.logo h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--storm-text-primary);
    letter-spacing: -0.03em;
    margin: 0;
}

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

.nav-links a {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--storm-text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    position: relative;
    letter-spacing: -0.01em;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--storm-accent);
    transition: width 0.3s ease;
}

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

.lang-switch {
    display: flex;
    gap: 0.25rem;
    background-color: var(--storm-bg-inner);
    border-radius: 999px;
    padding: 2px;
    border: 1px solid var(--storm-border);
}

.lang-btn {
    border: none;
    background: transparent;
    color: var(--storm-text-secondary);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.lang-btn.active {
    background-color: var(--storm-accent);
    color: #fff;
}

.lang-btn:hover:not(.active) {
    background-color: var(--storm-bg-main);
    color: var(--storm-text-primary);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 8rem 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-color: var(--storm-bg-main);
}

.hero .container {
    display: grid;
    grid-template-columns: 0.8fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.6s ease;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--storm-text-primary);
    letter-spacing: -0.04em;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    color: var(--storm-accent-light);
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.hero-description {
    font-size: 1.0625rem;
    color: var(--storm-text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.75;
    max-width: 500px;
    font-weight: 400;
    letter-spacing: -0.005em;
}

.hero-compatibility {
    font-size: 0.875rem;
    color: var(--storm-text-secondary);
    margin-bottom: 2rem;
    font-family: 'Courier New', monospace;
    opacity: 0.8;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--storm-text-secondary);
    font-size: 0.96875rem;
    font-weight: 400;
    letter-spacing: -0.003em;
}

.hero-feature-item svg {
    color: var(--storm-accent);
    flex-shrink: 0;
}

.section-description {
    font-size: 1.1875rem;
    color: var(--storm-text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.85;
    font-weight: 400;
    letter-spacing: -0.005em;
}

.about-card code {
    background-color: var(--storm-bg-inner);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.875em;
    color: var(--storm-accent-light);
    border: 1px solid var(--storm-border);
}

.btn-microtext {
    font-size: 0.8125rem;
    color: var(--storm-text-secondary);
    margin-top: 0.75rem;
    text-align: center;
    opacity: 0.85;
}

.btn-primary {
    font-family: 'Space Grotesk', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background-color: var(--storm-button);
    color: var(--storm-text-primary);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    border: 1px solid var(--storm-border);
    cursor: pointer;
    letter-spacing: -0.01em;
}

.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-icon svg {
    display: block;
}

.btn-primary:hover {
    background-color: var(--storm-bg-inner);
    border-color: var(--storm-accent);
    color: var(--storm-accent-light);
    transform: translateY(-1px);
}

.btn-primary:focus {
    outline: 2px solid var(--storm-accent);
    outline-offset: 2px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-fabric-api {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background-color: var(--storm-bg-inner);
    color: var(--storm-text-primary);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.2s ease;
    border: 1px solid var(--storm-border);
    cursor: pointer;
    font-family: inherit;
}

.btn-fabric-api:hover {
    background-color: var(--storm-button);
    border-color: var(--storm-accent);
    color: var(--storm-accent-light);
    transform: translateY(-1px);
}

.btn-fabric-api:focus {
    outline: 2px solid var(--storm-accent);
    outline-offset: 2px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.6s ease;
    position: relative;
    padding: 10px;
}

.hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    filter: brightness(1) contrast(1.08);
    border-radius: 0;
    mask-image: radial-gradient(ellipse farthest-side at center,
        rgba(0, 0, 0, 1) 35%,
        rgba(0, 0, 0, 0.95) 45%,
        rgba(0, 0, 0, 0.85) 55%,
        rgba(0, 0, 0, 0.6) 70%,
        rgba(0, 0, 0, 0.3) 85%,
        rgba(0, 0, 0, 0) 100%
    );
    -webkit-mask-image: radial-gradient(ellipse farthest-side at center,
        rgba(0, 0, 0, 1) 35%,
        rgba(0, 0, 0, 0.95) 45%,
        rgba(0, 0, 0, 0.85) 55%,
        rgba(0, 0, 0, 0.6) 70%,
        rgba(0, 0, 0, 0.3) 85%,
        rgba(0, 0, 0, 0) 100%
    );
}

/* Proximity Showcase Section */
.proximity-showcase {
    padding: 8rem 0;
    background-color: var(--storm-bg-main);
}

.proximity-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.proximity-text {
    animation: fadeInUp 0.6s ease;
}

.proximity-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--storm-text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.proximity-description {
    font-size: 1.0625rem;
    color: var(--storm-text-secondary);
    line-height: 1.75;
    font-weight: 400;
    letter-spacing: -0.005em;
}

.proximity-visual-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 500px;
    animation: fadeInRight 0.6s ease;
}

/* Showcase Visual - Proximity Voice Chat Animation */
.showcase-visual {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Proximity Rings */
.proximity-ring {
    position: absolute;
    border: 2px solid var(--storm-accent);
    border-radius: 50%;
    opacity: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 150px;
    height: 150px;
    animation: ringPulse 3s ease-in-out infinite;
    animation-delay: 0s;
    border-width: 3px;
}

.ring-2 {
    width: 250px;
    height: 250px;
    animation: ringPulse 3s ease-in-out infinite;
    animation-delay: 1s;
    border-color: var(--storm-accent-light);
    border-width: 2.5px;
}

.ring-3 {
    width: 350px;
    height: 350px;
    animation: ringPulse 3s ease-in-out infinite;
    animation-delay: 2s;
    border-color: rgba(14, 165, 233, 0.5);
    border-width: 2px;
}

@keyframes ringPulse {
    0% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1.1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.4);
    }
}

/* Player Center */
.player-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    color: var(--storm-accent);
    z-index: 10;
    animation: playerPulse 2s ease-in-out infinite;
}

.player-center svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 12px rgba(14, 165, 233, 0.7));
}

.microphone-icon {
    color: #60a5fa;
}

.microphone-icon svg {
    filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.6));
}

@keyframes playerPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* Player Right */
.player-right {
    position: absolute;
    top: 50%;
    right: 20%;
    transform: translateY(-50%);
    width: 72px;
    height: 72px;
    color: var(--storm-text-primary);
    z-index: 10;
    animation: playerPulse 2s ease-in-out infinite;
    animation-delay: 0.5s;
}

.player-right svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

.player-icon {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    color: #60a5fa;
    z-index: 11;
}

.speaker-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.6));
}

.ring-right {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border: 2px solid rgba(96, 165, 250, 0.6);
    border-radius: 50%;
    animation: ringPulse 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

/* Other Players */
.other-player {
    position: absolute;
    width: 56px;
    height: 56px;
    color: var(--storm-text-primary);
    opacity: 0.85;
    z-index: 5;
    transition: all 0.3s ease;
}

.other-player svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.3));
}

.player-1 {
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    animation: playerFloat 4s ease-in-out infinite;
    animation-delay: 0s;
}

.player-2 {
    top: 50%;
    right: 15%;
    transform: translateY(-50%);
    animation: playerFloat2 4s ease-in-out infinite;
    animation-delay: 1.3s;
}

.player-3 {
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    animation: playerFloat3 4s ease-in-out infinite;
    animation-delay: 2.6s;
}

@keyframes playerFloat {
    0%, 100% {
        transform: translate(-50%, 0) translateY(0);
    }
    50% {
        transform: translate(-50%, 0) translateY(-10px);
    }
}

@keyframes playerFloat2 {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
    }
    50% {
        transform: translateY(-50%) translateX(-8px);
    }
}

@keyframes playerFloat3 {
    0%, 100% {
        transform: translate(-50%, 0) translateY(0);
    }
    50% {
        transform: translate(-50%, 0) translateY(10px);
    }
}

/* Waveform */
.waveform {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: flex-end;
    gap: 5px;
    z-index: 15;
    background-color: rgba(7, 8, 12, 0.9);
    padding: 14px 24px;
    border-radius: 14px;
    border: 1px solid var(--storm-accent);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
}

.wave-bar {
    width: 5px;
    background: linear-gradient(to top, var(--storm-accent), var(--storm-accent-light));
    border-radius: 3px;
    min-height: 10px;
    box-shadow: 0 0 4px rgba(14, 165, 233, 0.5);
}

.wave-bar:nth-child(1) {
    height: 12px;
    animation: waveAnimation 1.2s ease-in-out infinite;
    animation-delay: 0s;
}

.wave-bar:nth-child(2) {
    height: 20px;
    animation: waveAnimation 1.2s ease-in-out infinite;
    animation-delay: 0.1s;
}

.wave-bar:nth-child(3) {
    height: 16px;
    animation: waveAnimation 1.2s ease-in-out infinite;
    animation-delay: 0.2s;
}

.wave-bar:nth-child(4) {
    height: 24px;
    animation: waveAnimation 1.2s ease-in-out infinite;
    animation-delay: 0.3s;
}

.wave-bar:nth-child(5) {
    height: 18px;
    animation: waveAnimation 1.2s ease-in-out infinite;
    animation-delay: 0.4s;
}

.wave-bar:nth-child(6) {
    height: 22px;
    animation: waveAnimation 1.2s ease-in-out infinite;
    animation-delay: 0.5s;
}

.wave-bar:nth-child(7) {
    height: 14px;
    animation: waveAnimation 1.2s ease-in-out infinite;
    animation-delay: 0.6s;
}

@keyframes waveAnimation {
    0%, 100% {
        transform: scaleY(0.5);
        opacity: 0.7;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

.waveform-label {
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: var(--storm-accent-light);
    font-weight: 500;
    white-space: nowrap;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.5px;
}

/* Video Section */
.video-section {
    padding: 8rem 0;
    background-color: var(--storm-bg-main);
}

.video-container {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--storm-border);
    background-color: var(--storm-bg-main);
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}

.demo-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
}

.video-caption {
    text-align: center;
    font-size: 0.9375rem;
    color: var(--storm-text-secondary);
    margin-top: 1rem;
    opacity: 0.8;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: -0.003em;
}

/* About Section */
.about {
    padding: 8rem 0;
    background-color: var(--storm-bg-main);
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--storm-text-primary);
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.about-card {
    background-color: var(--storm-bg-main);
    padding: 2.25rem 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.2s ease;
    border: 1px solid var(--storm-border);
    display: flex;
    flex-direction: column;
    min-height: 240px;
}

.about-card:hover {
    border-color: var(--storm-accent);
    background-color: var(--storm-bg-inner);
}

.card-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.25rem;
    color: var(--storm-accent);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.card-icon svg {
    width: 42px;
    height: 42px;
}

.about-card:hover .card-icon {
    color: var(--storm-accent-light);
}

.about-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.375rem;
    margin-bottom: 0.875rem;
    color: var(--storm-text-primary);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.about-card p {
    color: var(--storm-text-secondary);
    line-height: 1.8;
    font-size: 0.96875rem;
    flex-grow: 1;
    font-weight: 400;
    letter-spacing: -0.003em;
}

/* Footer */
footer {
    background-color: var(--storm-bg-inner);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--storm-border);
}

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--storm-text-primary);
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--storm-text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--storm-bg-main);
    border: 1px solid var(--storm-border);
    border-radius: 8px;
    color: var(--storm-text-secondary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--storm-accent);
    border-color: var(--storm-accent);
    color: white;
    transform: translateY(-3px);
}

.footer-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--storm-text-primary);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--storm-text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--storm-accent);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--storm-border);
    text-align: center;
}

.footer-bottom p {
    color: var(--storm-text-secondary);
    font-size: 0.875rem;
    margin: 0.5rem 0;
}

.footer-note {
    color: var(--storm-text-secondary) !important;
    font-weight: 400;
    opacity: 0.7;
    font-size: 0.8125rem;
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    footer {
        padding: 3rem 0 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-visual {
        padding: 20px;
        min-height: 400px;
    }

    .proximity-showcase {
        padding: 4rem 0;
    }

    .proximity-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .proximity-title {
        font-size: 2rem;
        text-align: center;
    }

    .proximity-description {
        text-align: center;
        font-size: 1rem;
    }

    .proximity-visual-wrapper {
        min-height: 400px;
    }

    .showcase-visual {
        max-width: 100%;
        height: 400px;
    }

    .ring-1 {
        width: 120px;
        height: 120px;
    }

    .ring-2 {
        width: 200px;
        height: 200px;
    }

    .ring-3 {
        width: 280px;
        height: 280px;
    }

    .player-center {
        width: 48px;
        height: 48px;
    }

    .other-player {
        width: 36px;
        height: 36px;
    }

    .waveform {
        padding: 8px 16px;
        bottom: 10%;
    }

    .waveform-label {
        font-size: 0.6875rem;
        bottom: -20px;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

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

    .about-card {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .btn-primary,
    .btn-download {
        width: 100%;
        justify-content: center;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero-visual {
        padding: 15px;
        min-height: 300px;
    }

    .proximity-showcase {
        padding: 3rem 0;
    }

    .proximity-content {
        gap: 2rem;
    }

    .proximity-title {
        font-size: 1.75rem;
    }

    .proximity-description {
        font-size: 0.9375rem;
    }

    .proximity-visual-wrapper {
        min-height: 300px;
    }

    .showcase-visual {
        height: 300px;
    }

    .ring-1 {
        width: 100px;
        height: 100px;
    }

    .ring-2 {
        width: 170px;
        height: 170px;
    }

    .ring-3 {
        width: 240px;
        height: 240px;
    }

    .player-center {
        width: 56px;
        height: 56px;
    }

    .other-player {
        width: 44px;
        height: 44px;
    }

    .about,
    .download,
    .video-section {
        padding: 4rem 0;
    }

    .logo h1 {
        font-size: 1.25rem;
    }

    .logo-img {
        height: 28px;
    }

    .hero-compatibility {
        font-size: 0.8125rem;
    }

    .btn-microtext {
        font-size: 0.75rem;
    }

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--storm-bg-main) 0%, var(--storm-bg-inner) 100%);
    border-top: 1px solid var(--storm-border);
    border-bottom: 1px solid var(--storm-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--storm-accent);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--storm-text-secondary);
    font-weight: 500;
}

@media (max-width: 968px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: var(--storm-bg-main);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--storm-bg-inner);
    border: 1px solid var(--storm-border);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--storm-accent);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    color: #fbbf24;
    font-size: 1.25rem;
}

.testimonial-text {
    color: var(--storm-text-primary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    border-top: 1px solid var(--storm-border);
    padding-top: 1rem;
}

.author-name {
    font-weight: 600;
    color: var(--storm-text-primary);
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.875rem;
    color: var(--storm-text-secondary);
}

@media (max-width: 968px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}

/* Trust Badges Section */
.trust-section {
    padding: 3rem 0;
    background: var(--storm-bg-inner);
    border-top: 1px solid var(--storm-border);
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: var(--storm-bg-main);
    border: 1px solid var(--storm-border);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    border-color: var(--storm-accent);
    transform: translateY(-3px);
}

.trust-badge svg {
    color: var(--storm-accent);
}

.trust-badge span {
    font-weight: 600;
    color: var(--storm-text-primary);
    font-size: 0.9375rem;
}

@media (max-width: 968px) {
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .trust-badges {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Hero Buttons Mobile */
    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-fabric-api {
        width: 100%;
        justify-content: center;
    }
}
