/* ==========================================
   SISTEMA DE DESIGN - FÁBRICA DE FERRAMENTAS
   ESTILO: OFFICE OF THE FUTURE / SPACE
   ========================================== */

:root {
    /* Cores Deep Space */
    --bg-depth: #020408;
    --bg-surface: rgba(15, 23, 42, 0.6);
    --bg-card: rgba(30, 41, 59, 0.4);

    /* Acentos Futuristas */
    --accent-blue: #3b82f6;
    --accent-cyan: #00d4ff;
    --accent-glow: rgba(0, 212, 255, 0.3);

    /* Tipografia */
    --font-heading: 'Clash Display', sans-serif;
    --font-body: 'Sora', sans-serif;

    /* Glassmorphism */
    --glass-blur: blur(16px);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);

    /* Spacing & Sizes */
    --container-max: 1200px;
    --section-pady: clamp(4rem, 15vh, 10rem);
    --transition-base: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================
   RESET & BASE
   ========================================== */

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-depth);
}

body {
    background-color: var(--bg-depth);
    color: #f8fafc;
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.04em;
}

a {
    text-decoration: none;
    transition: var(--transition-base);
}

/* ==========================================
   SPACE BACKGROUND
   ========================================== */

.space-background {
    position: fixed;
    inset: 0;
    z-index: -2;
    background: radial-gradient(circle at 50% 50%, #0a0f1e 0%, #020408 100%);
    overflow: hidden;
}

/* Multiple Star Layers using multi-shadow stars */
.stars,
.stars-2 {
    position: absolute;
    width: 2px;
    height: 2px;
    background: transparent;
    border-radius: 50%;
}

.stars {
    box-shadow: 450px 100px #fff, 120px 400px #fff, 800px 300px #fff, 50px 600px #fff, 1100px 200px #fff, 300px 800px #fff, 900px 50px #fff, 1500px 450px #fff, 200px 200px #fff, 1300px 800px #fff;
    width: 1px;
    height: 1px;
    opacity: 0.5;
}

.stars-2 {
    box-shadow: 150px 150px #fff, 350px 550px #fff, 950px 150px #fff, 550px 750px #fff, 1250px 350px #fff, 150px 850px #fff, 1450px 550px #fff;
    width: 2px;
    height: 2px;
    opacity: 0.8;
}

.nebula {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.05) 0%, transparent 40%);
    filter: blur(60px);
}

/* ==========================================
   LAYOUT UTILS
   ========================================== */

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

.section {
    padding: var(--section-pady) 0;
    position: relative;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Event Info Tags */
.hero-event-details {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.event-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-base);
}

.event-tag i {
    color: var(--accent-cyan);
    font-size: 1.2rem;
}

.event-tag:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
}

/* Base sections... */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.hero-container {
    z-index: 10;
}

.hero-glass-card {
    background: var(--bg-surface);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: clamp(2rem, 8vw, 5rem);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--glass-shadow);
    transform-style: preserve-3d;
    position: relative;
}

.hero-glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 40px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent, rgba(0, 212, 255, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.badge {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-cyan);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 2rem;
    background: linear-gradient(to bottom right, #fff 40%, rgba(255, 255, 255, 0.6));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: revealText 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes revealText {
    0% {
        opacity: 0;
        transform: translateY(30px) skewY(2deg);
    }

    100% {
        opacity: 1;
        transform: translateY(0) skewY(0deg);
    }
}

.hero-title .highlight {
    color: var(--accent-cyan);
    -webkit-text-fill-color: var(--accent-cyan);
    position: relative;
    display: inline-block;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-cyan);
    color: #020408;
    box-shadow: 0 0 20px var(--accent-glow);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 0 40px var(--accent-glow), inset 0 0 20px rgba(255, 255, 255, 0.4);
    background: #fff;
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(8px) rotate(-10deg);
}

/* Shine Animation for Button */
.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(30deg);
    transition: 0s;
}

.btn-primary:hover::after {
    left: 120%;
    transition: 0.6s;
}

/* Floating UI Icons */
.floating-ui {
    position: absolute;
    font-size: 2.5rem;
    color: var(--accent-cyan);
    opacity: 0.2;
    pointer-events: none;
    z-index: 1;
}

.ui-1 {
    top: 15%;
    left: 10%;
}

.ui-2 {
    top: 70%;
    left: 15%;
}

.ui-3 {
    top: 25%;
    right: 12%;
}

/* ==========================================
   PROBLEM SECTION
   ========================================== */

.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .problem-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.section-text {
    font-size: 1.125rem;
    color: #94a3b8;
}

.problem-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.glass {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: var(--transition-base);
}

.stats-card .stat-value {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-cyan);
    line-height: 1;
    margin-bottom: 1rem;
}

.stats-card .stat-desc {
    font-size: 0.9rem;
    color: #94a3b8;
}

.info-card {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
}

.glass:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-10px);
}

/* Custom Cursor */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-cyan);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
}

@media (max-width: 1024px) {
    .custom-cursor {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 160px 0 100px;
    }

    .floating-ui {
        display: none;
    }

    .problem-visual {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-glass-card {
        padding: 3rem 1.5rem;
        border-radius: 30px;
    }
}

/* ==========================================
   OPPORTUNITY SECTION
   ========================================== */

.opportunity {
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.1), transparent 40%);
}

.opportunity-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .opportunity-split {
        grid-template-columns: 7fr 3fr;
    }
}

.opportunity-title {
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.opportunity-content .section-text {
    line-height: 1.8;
    max-width: 800px;
}

.opportunity-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.abstract-shape {
    width: 300px;
    height: 300px;
    position: relative;
    transform: rotate(15deg);
}

.shape-inner {
    position: absolute;
    inset: 0;
    border: 2px solid var(--accent-cyan);
    border-radius: 30px;
    box-shadow: 0 0 30px var(--accent-glow);
    animation: floatingShape 8s infinite ease-in-out;
}

.shape-inner::after {
    content: '';
    position: absolute;
    inset: -20px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 40px;
    animation: rotatingShape 12s infinite linear;
}

@keyframes floatingShape {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Orbiting Logos Styles */
.logos-orbit {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

.orbit-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(2, 4, 8, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.1);
    animation: orbitFloat 10s infinite ease-in-out;
}

/* Individual positions around the square */
.tool-chatgpt {
    --orbit-angle: 0deg;
    --orbit-dist: 160px;
    animation-delay: 0s;
}

.tool-claude {
    --orbit-angle: 60deg;
    --orbit-dist: 170px;
    animation-delay: -1.5s;
}

.tool-antigravity {
    --orbit-angle: 120deg;
    --orbit-dist: 155px;
    animation-delay: -3s;
    border-color: #fff;
    font-weight: 800;
}

.tool-netlify {
    --orbit-angle: 180deg;
    --orbit-dist: 165px;
    animation-delay: -4.5s;
}

.tool-supabase {
    --orbit-angle: 240deg;
    --orbit-dist: 175px;
    animation-delay: -6s;
}

.tool-lovable {
    --orbit-angle: 300deg;
    --orbit-dist: 160px;
    animation-delay: -7.5s;
}

@keyframes orbitFloat {
    0% {
        transform: translate(calc(-50% + cos(var(--orbit-angle)) * var(--orbit-dist)),
                calc(-50% + sin(var(--orbit-angle)) * var(--orbit-dist))) rotate(0deg);
    }

    50% {
        transform: translate(calc(-50% + cos(var(--orbit-angle)) * (var(--orbit-dist) + 15px)),
                calc(-50% + sin(var(--orbit-angle)) * (var(--orbit-dist) + 15px))) rotate(5deg) scale(1.1);
    }

    100% {
        transform: translate(calc(-50% + cos(var(--orbit-angle)) * var(--orbit-dist)),
                calc(-50% + sin(var(--orbit-angle)) * var(--orbit-dist))) rotate(0deg);
    }
}

@keyframes rotatingShape {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ==========================================
   WORKSHOP SECTION (TIMELINE)
   ========================================== */

.timeline-container {
    max-width: 1000px;
}

.text-center {
    text-align: center;
    margin-bottom: 4rem;
}

.timeline-wrapper {
    position: relative;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(0, 212, 255, 0.1);
    transform: translateX(-50%);
}

.line-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--accent-cyan);
    box-shadow: 0 0 15px var(--accent-cyan);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 4rem;
}

.timeline-item.right {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 2rem;
    width: 16px;
    height: 16px;
    background: var(--bg-depth);
    border: 2px solid var(--accent-cyan);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 5;
    box-shadow: 0 0 10px var(--accent-glow);
}

.timeline-card {
    width: 90%;
    position: relative;
    padding: 2rem;
}

.step-number {
    position: absolute;
    top: -1rem;
    left: 1rem;
    font-size: 5rem;
    font-weight: 800;
    color: rgba(0, 212, 255, 0.05);
    line-height: 1;
    z-index: -1;
    font-family: var(--font-heading);
}

.timeline-item.right .timeline-card {
    margin-left: 3rem;
}

.timeline-item.left .timeline-card {
    margin-right: 3rem;
}

@media (max-width: 768px) {
    .timeline-line {
        left: 20px;
    }

    .timeline-dot {
        left: 20px;
    }

    .timeline-item {
        padding-left: 50px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .timeline-item.right {
        padding-left: 50px;
    }

    .timeline-item.left .timeline-card,
    .timeline-item.right .timeline-card {
        margin-left: 0;
        width: 100%;
    }
}

/* ==========================================
   CLEAN APPLE GRID SECTION
   ========================================== */

.bento-grid-clean {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

.apple-card {
    height: 100%;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.apple-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.apple-icon {
    font-size: 3rem;
    color: var(--accent-cyan);
    margin-bottom: 2rem;
    opacity: 0.8;
    transition: var(--transition-base);
}

.apple-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
}

.apple-card p {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* Hover effects (Minimalist) */
.apple-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.3);
}

.apple-card:hover .apple-icon {
    opacity: 1;
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

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

@media (max-width: 640px) {
    .bento-grid-clean {
        grid-template-columns: 1fr;
    }

    .apple-card {
        padding: 2.5rem 1.5rem;
    }
}

/* ==========================================
   DELIVERIES SECTION (CARD STACK)
   ========================================== */

.stack-container {
    max-width: 900px;
}

.stack-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 0;
}

.stack-card {
    position: sticky;
    top: 15vh;
    min-height: 300px;
    padding: 4rem;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-surface), var(--bg-depth));
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.stack-card:nth-child(1) {
    transform: translateY(0);
    z-index: 1;
}

.stack-card:nth-child(2) {
    transform: translateY(20px);
    z-index: 2;
}

.stack-card:nth-child(3) {
    transform: translateY(40px);
    z-index: 3;
}

.card-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent-cyan);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.stack-card h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.stack-card p {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 500px;
}

@media (max-width: 768px) {
    .stack-card {
        padding: 2rem;
        min-height: auto;
    }

    .stack-card h3 {
        font-size: 1.75rem;
    }
}

/* ==========================================
   QUALIFICATION SECTION (MULTI-SPLIT)
   ========================================== */

.qualification {
    padding: 0;
    overflow: hidden;
}

.qualification-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

.qual-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
}

.qual-side.positive {
    background: var(--accent-cyan);
    color: var(--bg-depth);
}

.qual-side.negative {
    background: var(--bg-depth);
    color: var(--accent-cyan);
    border-left: 1px solid rgba(0, 212, 255, 0.1);
}

.qual-content {
    max-width: 500px;
}

.qual-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
}

.qual-list {
    list-style: none;
}

.qual-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.qual-list i {
    font-size: 1.75rem;
    margin-top: 0.25rem;
}

.positive .qual-list i {
    color: var(--bg-depth);
}

.negative .qual-list i {
    color: #ef4444;
}

@media (max-width: 1024px) {
    .qualification-grid {
        grid-template-columns: 1fr;
    }

    .qual-side {
        padding: 4rem 2rem;
    }
}

/* ==========================================
   AUTHOR SECTION (EDITORIAL)
   ========================================== */

.author-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.author-image-wrapper {
    position: relative;
    z-index: 1;
    height: auto;
}

.author-img {
    width: 100%;
    height: auto;
    border-radius: 40px;
    display: block;
    position: relative;
    z-index: 2;
    object-fit: contain;
    /* Garante que a imagem inteira apareça no espaço */
}

.author-shape {
    position: absolute;
    inset: -15px;
    border: 2px solid var(--accent-cyan);
    border-radius: 50px;
    z-index: 1;
    opacity: 0.3;
}

.author-bio {
    position: relative;
}

.author-quotes {
    font-size: 8rem;
    color: var(--accent-blue);
    position: absolute;
    top: -4rem;
    left: -3rem;
    opacity: 0.1;
    z-index: -1;
}

.author-name {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-cyan);
}

.author-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #94a3b8;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.author-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #f1f5f9;
    margin-bottom: 1.5rem;
}

.author-signature {
    margin-top: 3rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--accent-cyan);
}

@media (max-width: 1024px) {
    .author-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .author-signature {
        justify-content: center;
    }

    .author-quotes {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* ==========================================
   PRICING SECTION (SPOTLIGHT)
   ========================================== */

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 4rem;
    text-align: center;
    border: 2px solid var(--accent-cyan);
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.1), transparent 70%);
    pointer-events: none;
}

.pricing-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.pricing-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.pricing-value {
    margin: 3rem 0;
    font-family: var(--font-heading);
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
    color: var(--accent-cyan);
}

.amount {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
}

.period {
    font-size: 1.1rem;
    color: #94a3b8;
}

.pricing-event-info {
    margin: 2rem auto;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 350px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.pricing-event-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.pricing-event-info i {
    color: var(--accent-cyan);
    font-size: 1.1rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    max-width: 300px;
    margin: 0 auto 3rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.pricing-features i {
    color: var(--accent-cyan);
}

.btn-pulse {
    animation: breathing 2.5s infinite ease-in-out;
}

@keyframes breathing {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px var(--accent-glow);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 40px var(--accent-glow);
    }
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: #94a3b8;
}

/* ==========================================
   SCARCITY SECTION (SPARSE)
   ========================================== */

.scarcity {
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.scarcity-flicker {
    font-size: clamp(2rem, 8vw, 6rem);
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.flicker-number {
    color: var(--accent-cyan);
    animation: neonFlicker 3s infinite;
}

@keyframes neonFlicker {

    0%,
    19%,
    21%,
    23%,
    25%,
    54%,
    56%,
    100% {
        text-shadow: 0 0 10px var(--accent-cyan), 0 0 20px var(--accent-cyan);
        opacity: 1;
    }

    20%,
    22%,
    24%,
    55% {
        text-shadow: none;
        opacity: 0.5;
    }
}

.scarcity-bar-wrapper {
    max-width: 400px;
    margin: 0 auto;
}

.scarcity-bar {
    height: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.scarcity-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
    box-shadow: 0 0 15px var(--accent-cyan);
}

.scarcity-status {
    font-size: 1rem;
    font-weight: 600;
    color: #94a3b8;
}

/* ==========================================
   FOOTER (SINGLE FOCUS)
   ========================================== */

.footer {
    padding: 8rem 0 4rem;
    background: radial-gradient(circle at bottom, rgba(0, 212, 255, 0.1), transparent 50%);
    position: relative;
    overflow: hidden;
}

#footer-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom {
    margin-top: 8rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.social-links a {
    font-size: 1.5rem;
    color: #94a3b8;
}

.social-links a:hover {
    color: var(--accent-cyan);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #fff;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column-reverse;
        gap: 2rem;
        text-align: center;
    }
}