/* ═══════════════════════════════════════════
   ACRYLIUM — Modern Landing Page Styles
   ═══════════════════════════════════════════ */

/* ── Reset & Variables ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg:        #0a0a0f;
    --bg-card:   #12121a;
    --bg-card-hover: #1a1a28;
    --surface:   #16161f;
    --border:    #ffffff10;
    --border-hover: #ffffff20;

    --text:      #e8e8ed;
    --text-dim:  #8888a0;
    --text-muted:#5a5a70;

    --accent:    #7c6aef;
    --accent-light: #a78bfa;
    --accent-glow: #7c6aef40;

    --gradient-1: linear-gradient(135deg, #7c6aef, #c084fc, #f472b6);
    --gradient-2: linear-gradient(135deg, #7c6aef 0%, #a78bfa 100%);

    --radius:    16px;
    --radius-sm: 10px;
    --radius-xs: 6px;

    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;

    --max-width: 1120px;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Scroll Animations ── */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1);
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
.showcase-card.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.showcase-card.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.process-step.animate-on-scroll:nth-child(2) { transition-delay: 0.08s; }
.process-step.animate-on-scroll:nth-child(3) { transition-delay: 0.16s; }
.process-step.animate-on-scroll:nth-child(4) { transition-delay: 0.24s; }
.process-step.animate-on-scroll:nth-child(5) { transition-delay: 0.32s; }
.price-card.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.price-card.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.base-card.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.base-card.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }


/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.navbar {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
}

.logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 44px;
    height: 44px;
    border-radius: 0;
    object-fit: contain;
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

.nav-cta {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 22px;
    border: 1px solid var(--border-hover);
    border-radius: 100px;
    transition: all 0.3s;
    background: transparent;
}
.nav-cta:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.hero-content {
    position: relative;
    z-index: 5;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 24px 80px;
    max-width: 720px;
    margin: 0 auto;
}

.hero-logo {
    width: clamp(180px, 35vw, 280px);
    height: auto;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 40px rgba(124, 106, 239, 0.35)) drop-shadow(0 0 80px rgba(192, 132, 252, 0.15));
    animation: heroLogoFloat 6s ease-in-out infinite;
}

@keyframes heroLogoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-tag {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 20px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-dim);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}
.btn-primary {
    background: var(--gradient-2);
    color: #fff;
    box-shadow: 0 4px 24px var(--accent-glow);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--accent-glow);
}
.btn-outline {
    border: 1px solid var(--border-hover);
    background: transparent;
    color: var(--text);
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent-light);
}
.btn-full { width: 100%; }

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}
.hero-scroll-indicator span {
    display: block;
    width: 24px;
    height: 38px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}
.hero-scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent-light);
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(12px); }
}


/* ══════════════════════════════════════════
   SECTIONS (SHARED)
   ══════════════════════════════════════════ */
.section {
    padding: 100px 0;
}

.section-tag {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-light);
    text-align: center;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-desc {
    text-align: center;
    color: var(--text-dim);
    max-width: 560px;
    margin: 0 auto 56px;
    font-size: 1.05rem;
    line-height: 1.7;
}


/* ══════════════════════════════════════════
   PRODUCT SHOWCASE
   ══════════════════════════════════════════ */
.product-section {
    background: var(--surface);
}

.product-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.showcase-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s;
}
.showcase-card:hover {
    border-color: var(--accent);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.showcase-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    color: var(--accent-light);
}
.showcase-icon svg { width: 100%; height: 100%; }

.showcase-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.showcase-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
}


/* ══════════════════════════════════════════
   BASES
   ══════════════════════════════════════════ */
.bases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.base-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s;
}
.base-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.card-premium {
    border-color: var(--accent-glow);
}
.card-premium:hover {
    border-color: var(--accent);
}

.premium-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gradient-1);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    z-index: 2;
}

/* Visual representation of the product */
.base-visual {
    position: relative;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 24px;
    background: linear-gradient(180deg, #0e0e18 0%, var(--bg-card) 100%);
}

.base-plate {
    width: 80px;
    height: 110px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    backdrop-filter: blur(4px);
    margin-bottom: -6px;
    z-index: 1;
}

.plate-glow {
    box-shadow: 0 0 30px rgba(124, 106, 239, 0.25), 0 0 60px rgba(124, 106, 239, 0.1);
    border-color: rgba(124, 106, 239, 0.3);
}

.base-stand {
    width: 100px;
    height: 20px;
    border-radius: 4px 4px 8px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-dim);
}

.stand-3d {
    background: linear-gradient(180deg, #2a2a3a, #1a1a28);
    border: 1px solid #333;
}

.stand-led {
    position: relative;
    background: linear-gradient(180deg, #3d2a1a, #2a1c0f);
    border: 1px solid #5a3d20;
}

.stand-led-custom {
    position: relative;
    background: linear-gradient(180deg, #3d2a1a, #2a1c0f);
    border: 1px solid #7c6aef60;
}

.led-glow {
    position: absolute;
    top: -8px;
    left: 10%;
    right: 10%;
    height: 8px;
    background: linear-gradient(180deg, rgba(124, 106, 239, 0.6), transparent);
    border-radius: 4px 4px 0 0;
    animation: ledPulse 3s ease-in-out infinite;
}

.glow-custom {
    background: linear-gradient(180deg, rgba(244, 114, 182, 0.6), transparent);
    animation: ledPulseCustom 3s ease-in-out infinite;
}

@keyframes ledPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}
@keyframes ledPulseCustom {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.base-info {
    padding: 28px;
}
.base-info h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 8px;
}
.base-info > p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 18px;
}
.base-features {
    list-style: none;
}
.base-features li {
    position: relative;
    padding-left: 20px;
    color: var(--text-dim);
    font-size: 0.88rem;
    margin-bottom: 6px;
}
.base-features li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent-light);
    font-size: 0.7rem;
}


/* ══════════════════════════════════════════
   PROCESS
   ══════════════════════════════════════════ */
.process-section {
    background: var(--surface);
}

.process-timeline {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-step {
    display: flex;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
}
.process-step:last-child { border-bottom: none; }
.process-step:hover { padding-left: 8px; }

.step-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.5;
    min-width: 56px;
    line-height: 1;
    padding-top: 4px;
    transition: opacity 0.3s;
}
.process-step:hover .step-number { opacity: 1; }

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 6px;
}
.step-content p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
}


/* ══════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: start;
}

.price-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px 28px;
    transition: all 0.4s;
}
.price-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.card-featured {
    border-color: var(--accent);
    background: linear-gradient(180deg, #1a1630, var(--bg-card));
    box-shadow: 0 8px 40px var(--accent-glow);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-2);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 100px;
}

.price-header {
    text-align: center;
    margin-bottom: 20px;
}
.price-header h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 4px;
}
.price-subtitle {
    color: var(--text-dim);
    font-size: 0.85rem;
}

.price-amount {
    text-align: center;
    margin-bottom: 28px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2px;
}
.price-currency {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dim);
    margin-top: 8px;
}
.price-value {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-features {
    list-style: none;
    margin-bottom: 28px;
}
.price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dim);
    font-size: 0.9rem;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}
.price-features li:last-child { border-bottom: none; }
.price-features svg {
    color: var(--accent-light);
    flex-shrink: 0;
}

.pricing-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 32px;
}


/* ══════════════════════════════════════════
   PROMO CODE
   ══════════════════════════════════════════ */
.promo-box {
    max-width: 520px;
    margin: 48px auto 0;
}
.promo-inner {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    text-align: center;
}
.promo-text h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 4px;
}
.promo-text p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 20px;
}
.promo-input-group {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.promo-input {
    flex: 1;
    max-width: 280px;
    padding: 12px 16px;
    border: 1px solid var(--border-hover);
    border-radius: 100px;
    background: var(--bg);
    color: var(--text);
    font-size: 0.95rem;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.3s;
}
.promo-input::placeholder {
    color: var(--text-muted);
}
.promo-input:focus {
    border-color: var(--accent);
}
.promo-btn {
    padding: 12px 24px;
    white-space: nowrap;
}
.promo-msg {
    margin-top: 12px;
    font-size: 0.85rem;
    min-height: 1.2em;
}
.promo-error {
    color: #f87171;
}
.promo-success {
    color: #34d399;
}


/* ══════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════ */
.contact-section {
    background: var(--surface);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 640px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 28px;
    transition: all 0.4s;
    cursor: pointer;
}
.contact-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 40px var(--accent-glow);
}

.card-instagram:hover {
    border-color: #e1306c;
    box-shadow: 0 8px 40px rgba(225, 48, 108, 0.2);
}

.contact-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    color: var(--accent-light);
}
.card-instagram .contact-icon { color: #e1306c; }
.contact-icon svg { width: 100%; height: 100%; }

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 4px;
}
.contact-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-bottom: 16px;
}
.contact-action {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-light);
    transition: color 0.3s;
}
.card-instagram .contact-action { color: #e1306c; }


/* ══════════════════════════════════════════
   LEGAL
   ══════════════════════════════════════════ */
.legal-section {
    padding: 48px 0;
}
.legal-box {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 24px;
}
.legal-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--text-muted);
    margin-top: 2px;
}
.legal-box p {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.7;
}


/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer {
    padding: 32px 0;
    border-top: 1px solid var(--border);
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-logo {
    display: flex;
    align-items: center;
}
.footer-logo-img {
    height: 56px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 12px var(--accent-glow));
}
.footer p {
    color: var(--text-muted);
    font-size: 0.82rem;
}


/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
    .section { padding: 72px 0; }
    .section-desc { margin-bottom: 40px; }

    .hero-bg-glow { width: 500px; height: 500px; }
    .hero-content { padding-bottom: 100px; }

    .product-showcase { grid-template-columns: 1fr; }
    .bases-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
    .contact-grid { grid-template-columns: 1fr; }

    .process-step { gap: 16px; }
    .step-number { font-size: 1.5rem; min-width: 40px; }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .promo-input-group {
        flex-direction: column;
        align-items: center;
    }
    .promo-input { max-width: 100%; width: 100%; }
    .promo-btn { width: 100%; }

    .legal-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 400px) {
    .hero h1 { font-size: 2.2rem; }
    .hero-actions { flex-direction: column; width: 100%; padding: 0 12px; }
    .btn { width: 100%; }
    .navbar { padding: 16px 18px; }
}
