* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --background: #0D0F14;
    --foreground: #FAFAFA;
    --card: #161A22;
    --card-foreground: #FAFAFA;
    --primary: #52C41A;
    --primary-foreground: #0D0F14;
    --secondary: #252B38;
    --secondary-foreground: #E5E5E5;
    --muted: #2E3544;
    --muted-foreground: #9CA3AF;
    --border: #374151;
    --radius: 0.75rem;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4rem 1rem;
}

@media (min-width: 640px) {
    .hero {
        padding: 0 1.5rem;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(82, 196, 26, 0.2), var(--background) 50%, var(--background));
}

.hero-glow-1,
.hero-glow-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.hero-glow-1 {
    top: 25%;
    left: 25%;
    width: 12rem;
    height: 12rem;
    background: rgba(82, 196, 26, 0.1);
}

.hero-glow-2 {
    bottom: 25%;
    right: 25%;
    width: 12rem;
    height: 12rem;
    background: rgba(45, 212, 191, 0.1);
}

@media (min-width: 640px) {

    .hero-glow-1,
    .hero-glow-2 {
        width: 24rem;
        height: 24rem;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 72rem;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    background: rgba(37, 43, 56, 0.5);
    border: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero-badge {
        padding: 0.5rem 1rem;
        margin-bottom: 2rem;
    }
}

.hero-badge svg {
    width: 0.75rem;
    height: 0.75rem;
    color: var(--primary);
}

@media (min-width: 640px) {
    .hero-badge svg {
        width: 1rem;
        height: 1rem;
    }
}

.hero-badge span {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

@media (min-width: 640px) {
    .hero-badge span {
        font-size: 0.875rem;
    }
}

.hero-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-title .primary {
    color: var(--primary);
}

.hero-title .divider {
    color: rgba(156, 163, 175, 0.3);
}

.hero-title .divider-mobile {
    display: block;
    font-size: 1.25rem;
    margin: 0.5rem 0;
}

@media (min-width: 640px) {
    .hero-title .divider-mobile {
        display: none;
    }
}

.hero-title .divider-desktop {
    display: none;
    margin: 0 1rem;
}

@media (min-width: 640px) {
    .hero-title .divider-desktop {
        display: inline;
    }
}

.hero-title .product-name {
    display: block;
}

@media (min-width: 640px) {
    .hero-title .product-name {
        display: inline;
    }
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto 2rem;
    line-height: 1.75;
    padding: 0 0.5rem;
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-subtitle br {
    display: none;
}

@media (min-width: 640px) {
    .hero-subtitle br {
        display: block;
    }
}

.hero-subtitle .mobile-dash {
    display: inline;
}

@media (min-width: 640px) {
    .hero-subtitle .mobile-dash {
        display: none;
    }
}

/* Product Quick Cards */
.product-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 56rem;
    margin: 0 auto 2rem;
}

@media (min-width: 640px) {
    .product-cards {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
}

.product-quick-card {
    position: relative;
    padding: 1rem;
    border-radius: 0.75rem;
    background: rgba(22, 26, 34, 0.5);
    border: 1px solid var(--border);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
    .product-quick-card {
        padding: 1.5rem;
        border-radius: 1rem;
    }
}

.product-quick-card:hover {
    border-color: rgba(82, 196, 26, 0.5);
}

.product-quick-card:hover .product-quick-card-arrow {
    color: var(--primary);
    transform: translateX(0.25rem);
}

.product-quick-card:hover .product-quick-card-icon-wrapper {
    background: rgba(82, 196, 26, 0.2);
}

.product-quick-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .product-quick-card-header {
        gap: 1rem;
        margin-bottom: 0.75rem;
    }
}

.product-quick-card-icon-wrapper {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: rgba(82, 196, 26, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

@media (min-width: 640px) {
    .product-quick-card-icon-wrapper {
        width: 3rem;
        height: 3rem;
        border-radius: 0.75rem;
    }
}

.product-quick-card-icon-wrapper svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

@media (min-width: 640px) {
    .product-quick-card-icon-wrapper svg {
        width: 1.5rem;
        height: 1.5rem;
    }
}

.product-quick-card-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
}

@media (min-width: 640px) {
    .product-quick-card-info h3 {
        font-size: 1.25rem;
    }
}

.product-quick-card-info h3 span {
    color: var(--primary);
}

.product-quick-card-info p {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

@media (min-width: 640px) {
    .product-quick-card-info p {
        font-size: 0.875rem;
    }
}

.product-quick-card-desc {
    color: var(--muted-foreground);
    text-align: left;
    font-size: 0.75rem;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .product-quick-card-desc {
        font-size: 0.875rem;
    }
}

.product-quick-card-arrow {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 1rem;
    height: 1rem;
    color: rgba(156, 163, 175, 0.5);
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
    .product-quick-card-arrow {
        top: 1.5rem;
        right: 1.5rem;
        width: 1.25rem;
        height: 1.25rem;
    }
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
        padding: 0;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.25rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

@media (min-width: 640px) {
    .btn {
        font-size: 1rem;
        padding: 1.5rem 2rem;
        width: auto;
    }
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
}

.btn-primary:hover {
    background: #45a815;
}

.btn-outline {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background: var(--secondary);
}

.btn svg {
    width: 1rem;
    height: 1rem;
}

@media (min-width: 640px) {
    .btn svg {
        width: 1.25rem;
        height: 1.25rem;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 1s infinite;
    display: none;
}

@media (min-width: 640px) {
    .scroll-indicator {
        display: block;
        bottom: 2rem;
    }
}

.scroll-indicator-inner {
    width: 1.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    border: 2px solid rgba(156, 163, 175, 0.5);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0.25rem;
}

.scroll-indicator-dot {
    width: 0.375rem;
    height: 0.75rem;
    background: var(--primary);
    border-radius: 9999px;
    animation: pulse 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-0.5rem);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Products Section */
.products {
    padding: 3rem 1rem;
}

@media (min-width: 640px) {
    .products {
        padding: 6rem 1.5rem;
    }
}

.products-container {
    max-width: 72rem;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
    .section-header {
        margin-bottom: 4rem;
    }
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 1.875rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-desc {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    max-width: 42rem;
    margin: 0 auto;
    padding: 0 0.5rem;
}

@media (min-width: 640px) {
    .section-desc {
        font-size: 1.125rem;
    }
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* Product Card */
.product-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 1rem;
    background: rgba(22, 26, 34, 0.5);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: rgba(82, 196, 26, 0.5);
}

.product-card-gradient {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-card:hover .product-card-gradient {
    opacity: 1;
}

.product-card-gradient.holefly {
    background: linear-gradient(to bottom right, rgba(82, 196, 26, 0.05), transparent);
}

.product-card-gradient.streamhole {
    background: linear-gradient(to bottom right, rgba(45, 212, 191, 0.05), transparent);
}

.product-card-header {
    position: relative;
    z-index: 10;
    padding: 1rem 1rem 0.75rem;
}

@media (min-width: 640px) {
    .product-card-header {
        padding: 1.5rem 1.5rem 1rem;
    }
}

.product-card-title-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .product-card-title-row {
        margin-bottom: 1rem;
    }
}

.product-card-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .product-card-icon {
        width: 3rem;
        height: 3rem;
        border-radius: 0.75rem;
    }
}

.product-card-icon.holefly {
    background: rgba(82, 196, 26, 0.2);
}

.product-card-icon.streamhole {
    background: rgba(45, 212, 191, 0.2);
}

.product-card-icon span {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
}

@media (min-width: 640px) {
    .product-card-icon span {
        font-size: 1.5rem;
    }
}

.product-card-title-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
}

@media (min-width: 640px) {
    .product-card-title-info h3 {
        font-size: 1.5rem;
    }
}

.product-card-title-info p {
    font-size: 0.75rem;
    color: var(--primary);
}

@media (min-width: 640px) {
    .product-card-title-info p {
        font-size: 0.875rem;
    }
}

.product-card-desc {
    color: var(--muted-foreground);
    line-height: 1.75;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .product-card-desc {
        font-size: 1rem;
    }
}

.product-card-content {
    position: relative;
    z-index: 10;
    padding: 0 1rem 1rem;
}

@media (min-width: 640px) {
    .product-card-content {
        padding: 0 1.5rem 1.5rem;
    }
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .product-features {
        gap: 0.75rem;
    }
}

.product-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    background: rgba(37, 43, 56, 0.3);
    transition: background 0.2s ease;
}

@media (min-width: 640px) {
    .product-feature {
        gap: 0.75rem;
        padding: 0.75rem;
    }
}

.product-feature:hover {
    background: rgba(37, 43, 56, 0.5);
}

.product-feature-icon {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 0.375rem;
    background: rgba(82, 196, 26, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .product-feature-icon {
        width: 2rem;
        height: 2rem;
        border-radius: 0.5rem;
    }
}

.product-feature-icon svg {
    width: 0.875rem;
    height: 0.875rem;
    color: var(--primary);
}

@media (min-width: 640px) {
    .product-feature-icon svg {
        width: 1rem;
        height: 1rem;
    }
}

.product-feature-info {
    min-width: 0;
}

.product-feature-info h4 {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--foreground);
}

@media (min-width: 640px) {
    .product-feature-info h4 {
        font-size: 0.875rem;
    }
}

.product-feature-info p {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.product-card-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.2s ease;
}

@media (min-width: 640px) {
    .product-card-btn {
        margin-top: 1.5rem;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

.product-card-btn:hover {
    background: #45a815;
}

/* Features Section */
.features {
    padding: 3rem 1rem;
    background: rgba(22, 26, 34, 0.3);
}

@media (min-width: 640px) {
    .features {
        padding: 6rem 1.5rem;
    }
}

.features-container {
    max-width: 72rem;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .features-grid {
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    padding: 1rem;
    border-radius: 0.75rem;
    background: var(--card);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
    .feature-card {
        padding: 1.5rem;
        border-radius: 1rem;
    }
}

.feature-card:hover {
    border-color: rgba(82, 196, 26, 0.5);
}

.feature-card:hover .feature-card-icon {
    background: rgba(82, 196, 26, 0.2);
}

.feature-card-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: rgba(82, 196, 26, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    transition: background 0.3s ease;
}

@media (min-width: 640px) {
    .feature-card-icon {
        width: 3rem;
        height: 3rem;
        border-radius: 0.75rem;
        margin-bottom: 1rem;
    }
}

.feature-card-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

@media (min-width: 640px) {
    .feature-card-icon svg {
        width: 1.5rem;
        height: 1.5rem;
    }
}

.feature-card h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
    .feature-card h3 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
}

.feature-card p {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

@media (min-width: 640px) {
    .feature-card p {
        font-size: 0.875rem;
    }
}

/* Footer */
.footer {
    padding: 2rem 1rem;
    border-top: 1px solid var(--border);
}

@media (min-width: 640px) {
    .footer {
        padding: 3rem 1.5rem;
    }
}

.footer-container {
    max-width: 72rem;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .footer-main {
        gap: 2rem;
    }
}

.footer-brand {
    font-size: 1.25rem;
    font-weight: 700;
}

@media (min-width: 640px) {
    .footer-brand {
        font-size: 1.5rem;
    }
}

.footer-brand .primary {
    color: var(--primary);
}

.footer-brand .divider {
    color: rgba(156, 163, 175, 0.5);
    margin: 0 0.5rem;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .footer-nav {
        gap: 1.5rem;
    }
}

.footer-nav a {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    transition: color 0.2s ease;
}

@media (min-width: 640px) {
    .footer-nav a {
        font-size: 0.875rem;
    }
}

.footer-nav a:hover {
    color: var(--foreground);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .footer-social {
        gap: 1rem;
    }
}

.footer-social a {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

@media (min-width: 640px) {
    .footer-social a {
        width: 2.5rem;
        height: 2.5rem;
    }
}

.footer-social a:hover {
    background: rgba(82, 196, 26, 0.2);
}

.footer-social svg {
    width: 1rem;
    height: 1rem;
    color: var(--muted-foreground);
}

@media (min-width: 640px) {
    .footer-social svg {
        width: 1.25rem;
        height: 1.25rem;
    }
}

.footer-social a:hover svg {
    color: var(--foreground);
}

.footer-copyright {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

@media (min-width: 640px) {
    .footer-copyright {
        margin-top: 2rem;
        padding-top: 2rem;
        font-size: 0.875rem;
    }
}