:root {
    /* Design Tokens - Ultra Premium (Inspirado no Canva) */
    --bg-deep: #050508;
    --bg-surface: #0a0a12;
    --bg-glass: rgb(255 255 255 / 3%);
    --bg-glass-hover: rgb(255 255 255 / 6%);
    --primary: #ff2fb3;
    --secondary: #7a2cff;
    --accent: #00d0ff;
    --neon-green: #dcff00;
    --neon-yellow: #cf0;
    --success: #dcff00;
    --text-main: #f0f0f5;
    --text-muted: #b0b5bd;

    /* Lighter for better contrast (WCAG AAA) */
    --border-glass: rgb(255 255 255 / 10%);
    --border-neon-green: rgb(220 255 0 / 50%);
    --grad-hero: linear-gradient(135deg, var(--primary), var(--secondary));
    --grad-neon: linear-gradient(135deg, var(--neon-green), var(--neon-yellow));
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);

    /* Glow Effects */
    --glow-pink: 0 0 20px rgb(255 47 179 / 40%), 0 0 40px rgb(255 47 179 / 20%);
    --glow-green: 0 0 20px rgb(220 255 0 / 40%), 0 0 40px rgb(220 255 0 / 20%);
    --glow-purple: 0 0 20px rgb(122 44 255 / 40%), 0 0 40px rgb(122 44 255 / 20%);
}

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

html {
    margin: 0;
    padding: 0;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    -webkit-scroll-behavior: smooth;
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-main);
    font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow: hidden auto;
    -webkit-overflow-scrolling: touch;
    -webkit-scroll-behavior: smooth;
    scroll-behavior: smooth;
    overscroll-behavior-y: contain;
    scroll-padding-top: 80px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    touch-action: pan-y;
}

.bg-glow {
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background:
        radial-gradient(circle at 10% 20%, rgb(255 47 179 / 5%) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgb(0 208 255 / 5%) 0%, transparent 50%);
    background-image:
        radial-gradient(circle at 1px 1px, rgb(255 255 255 / 3%) 1px, transparent 0);
    background-size: 40px 40px;
}

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

/* ============================================
   HEADER 2030 - ADVANCED WEB3 DESIGN SYSTEM
   ============================================ */

header {
    --header-height: 80px;
    --header-padding: 0;
    --header-blur: 60px;
    --header-opacity: 0.85;

    height: var(--header-height);
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    z-index: 9999 !important;
    margin: 0;
    padding: var(--header-padding);
    visibility: visible !important;
    opacity: 1 !important;
    display: flex !important;
    transform: translateY(0) !important;
    background:
        linear-gradient(135deg, rgb(255 47 179 / 8%) 0%, rgb(122 44 255 / 8%) 100%),
        rgb(5 5 8 / var(--header-opacity));
    backdrop-filter: blur(var(--header-blur)) saturate(180%);
    border-bottom: 1px solid rgb(255 255 255 / 8%);
    border-top: 1px solid rgb(255 255 255 / 3%);
    box-shadow:
        0 8px 32px rgb(0 0 0 / 40%),
        0 1px 0 rgb(255 255 255 / 5%) inset,
        0 -1px 0 rgb(0 0 0 / 20%) inset;
    transition:
        background 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        backdrop-filter 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.5s ease;
    will-change: background, backdrop-filter;
    contain: layout style paint;
    align-items: center;
    overflow: hidden;
}

header .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Scrolled State */
header.scrolled {
    --header-opacity: 0.4;
    --header-blur: 40px;

    background:
        linear-gradient(135deg, rgb(255 47 179 / 5%) 0%, rgb(122 44 255 / 5%) 100%),
        rgb(5 5 8 / var(--header-opacity));
    backdrop-filter: blur(var(--header-blur)) saturate(150%);
    box-shadow:
        0 4px 24px rgb(0 0 0 / 30%),
        0 1px 0 rgb(255 255 255 / 6%) inset,
        0 -1px 0 rgb(0 0 0 / 15%) inset;
    border-bottom-color: rgb(255 255 255 / 6%);
    border-top-color: rgb(255 255 255 / 2%);
}

header.scrolled .container {
    overflow: visible;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgb(255 47 179 / 10%) 25%,
            rgb(122 44 255 / 10%) 50%,
            rgb(0 208 255 / 10%) 75%,
            transparent 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease, left 8s linear;
    z-index: 1;
}

header:hover::before {
    opacity: 1;
    left: 100%;
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgb(220 255 0 / 30%) 20%,
            rgb(255 47 179 / 50%) 50%,
            rgb(220 255 0 / 30%) 80%,
            transparent 100%);
    opacity: 0.6;
    box-shadow:
        0 0 10px rgb(220 255 0 / 40%),
        0 0 20px rgb(255 47 179 / 20%);
    animation: neon-pulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes neon-pulse {
    0%,
    100% {
        opacity: 0.6;
        box-shadow:
            0 0 10px rgb(220 255 0 / 40%),
            0 0 20px rgb(255 47 179 / 20%);
    }

    50% {
        opacity: 1;
        box-shadow:
            0 0 20px rgb(220 255 0 / 60%),
            0 0 40px rgb(255 47 179 / 40%);
    }
}

/* Base Link Styles - Order matters for specificity */
footer a {
    color: inherit;
    text-decoration: none;
}

.footer-links a {
    color: inherit;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 4px;
}

footer a:hover,
footer a:focus-visible {
    color: #f0f0f5;
    text-decoration: none;
}

.nav-links a:hover {
    color: #fff;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    gap: 32px;
    position: relative;
    z-index: 2;
    padding: 0;
}

header.scrolled nav {
    position: relative;
    overflow: visible;
}

/* Button Foundation */
.btn {
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    border: none;
    height: fit-content;
    min-height: 48px;
    line-height: 1.2;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    will-change: transform, box-shadow, filter;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

nav .btn {
    margin: 0;
    align-self: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    font-weight: 900;
    font-size: 1.2rem;
    flex-shrink: 0;
    height: 100%;
    position: relative;
    z-index: 2;
    padding: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.logo:hover {
    transform: translateY(-1px);
}

.logo:active {
    transform: translateY(0);
}

.logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgb(255 47 179 / 40%)) drop-shadow(0 0 20px rgb(255 47 179 / 20%));
    transition: filter 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: filter, transform;
}

.logo:hover .logo-img {
    filter: drop-shadow(0 4px 12px rgb(255 47 179 / 60%)) drop-shadow(0 0 30px rgb(255 47 179 / 40%));
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

/* Main */
main {
    margin-top: 80px;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    overscroll-behavior-y: contain;
}

/* Hero */
.hero {
    min-height: calc(70vh - 80px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgb(255 255 255 / 5%) 1px, transparent 1px),
        linear-gradient(90deg, rgb(255 255 255 / 5%) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    opacity: 0.2;
    pointer-events: none;
}

.hero-content {
    max-width: 650px;
    position: relative;
    z-index: 10;
}

/* Text Stylings */
.neon-text {
    background: var(--grad-neon);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgb(220 255 0 / 50%);
    filter: drop-shadow(0 0 10px rgb(220 255 0 / 30%));
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -1px;
    position: relative;
}

h1 .neon-text {
    display: inline-block;
    font-weight: 900;
    position: relative;
}

h1 .neon-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--grad-neon);
    box-shadow: var(--glow-green);
    border-radius: 2px;
}

/* Base p and specific p overrides */
p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-content p {
    color: var(--text-main);
    font-weight: 500;
}

/* RoadMap & Pricing Strongs - Order matters for specificity */
.roadmap-desc strong,
.pricing-subtitle strong {
    color: var(--neon-green);
    font-weight: 700;
}

.hero-content p strong {
    font-weight: 700;
    color: var(--text-main);
}

#animated-text {
    display: inline;
}

#animated-text span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: slide-up 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button Variants */
.btn-primary {
    background: var(--grad-hero);
    color: white;
    box-shadow: 0 4px 20px rgb(255 47 179 / 30%), 0 0 40px rgb(255 47 179 / 10%), inset 0 1px 0 rgb(255 255 255 / 20%);
    border: 1px solid rgb(255 47 179 / 40%);
    flex-shrink: 0;
    white-space: nowrap;
    align-self: center;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgb(255 255 255 / 30%), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--glow-pink), 0 15px 30px rgb(255 47 179 / 40%);
    border-color: var(--primary);
    filter: brightness(1.1);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
    transition: transform 0.1s ease;
}

.btn-primary>* {
    position: relative;
    z-index: 2;
}

/* Header Button */
.btn-header {
    background: rgb(255 255 255 / 5%);
    color: white;
    box-shadow: 0 2px 12px rgb(0 0 0 / 20%), inset 0 1px 0 rgb(255 255 255 / 10%);
    border: 1px solid rgb(255 255 255 / 15%);
    flex-shrink: 0;
    white-space: nowrap;
    align-self: center;
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgb(255 255 255 / 10%), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.btn-header:hover {
    background: rgb(255 255 255 / 10%);
    border-color: rgb(255 255 255 / 25%);
    box-shadow: 0 4px 20px rgb(0 0 0 / 30%), inset 0 1px 0 rgb(255 255 255 / 15%);
    transform: translateY(-1px);
}

.btn-header:hover::before {
    left: 100%;
}

.btn-header:active {
    transform: translateY(0) scale(0.98);
    transition: transform 0.1s ease;
}

header.scrolled .btn-header {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 220px;
    width: auto;
    margin-left: auto;
    text-align: left;
    justify-content: flex-start;
    padding-left: 14px;
    padding-right: 22px;
    font-size: 0.9rem;
}

.btn-header>* {
    position: relative;
    z-index: 2;
}

/* Outline Button */
.btn-outline {
    border: 2px solid var(--border-glass);
    color: white;
    background: transparent;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--bg-glass);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-outline:hover {
    background: var(--bg-glass);
    border-color: var(--neon-green);
    box-shadow: var(--glow-green);
}

.btn-outline:hover::before {
    left: 0;
}

/* Hero Visual */
.hero-visual {
    position: absolute;
    right: -5%;
    top: 55%;
    transform: translateY(-50%);
    width: 50%;
    height: 65%;
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    box-shadow: 0 40px 80px rgb(0 0 0 / 60%);
    background: var(--bg-surface);
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

/* ============================================
   ROADMAP SECTION
   ============================================ */
.services.roadmap-section {
    padding: 120px 0;
    background: var(--bg-deep);
    position: relative;
    overflow: hidden;
}

.services.roadmap-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgb(255 255 255 / 10%) 1px, transparent 0);
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
}

.roadmap-container {
    position: relative;
    padding: 80px 0;
    min-height: 400px;
}

.roadmap-line {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgb(255 255 255 / 20%);
    transform: translateY(-50%);
    z-index: 1;
}

.roadmap-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    gap: 20px;
    padding: 0 40px;
}

.roadmap-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.roadmap-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.roadmap-link:focus-visible {
    outline: 2px solid var(--neon-green);
    outline-offset: 6px;
    border-radius: 16px;
}

/* Roadmap Elements */
.roadmap-box {
    width: 100%;
    max-width: 220px;
    padding: 24px 20px;
    background: #000;
    border: 2px solid var(--neon-green);
    position: relative;
    clip-path: polygon(0% 0%, 95% 0%, 100% 8%, 100% 100%, 5% 100%, 0% 92%);
    margin-bottom: 16px;
}

.roadmap-link:hover .roadmap-box {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgb(220 255 0 / 25%);
}

.roadmap-node {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--neon-green);
    box-shadow: 0 0 10px rgb(220 255 0 / 60%), 0 0 20px rgb(220 255 0 / 40%);
    position: relative;
    z-index: 3;
    margin-bottom: 20px;
}

.roadmap-stripe {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 40px;
    height: 8px;
    background: repeating-linear-gradient(45deg, var(--neon-green), var(--neon-green) 3px, transparent 3px, transparent 6px);
    opacity: 0.8;
}

.roadmap-box h2 {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    margin: 0;
    line-height: 1.3;
}

.roadmap-desc {
    font-size: 0.9rem;
    color: rgb(255 255 255 / 80%);
    text-align: center;
    line-height: 1.5;
    margin: 0;
    max-width: 240px;
}

/* Mobile Roadmap */
@media (width <=768px) {
    .services.roadmap-section {
        padding: 80px 0;
    }

    .roadmap-container {
        padding: 60px 0;
        min-height: auto;
    }

    .roadmap-line {
        display: none;
    }

    .roadmap-steps {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .roadmap-step {
        width: 100%;
    }

    .roadmap-node {
        margin-bottom: 16px;
    }

    .roadmap-box {
        max-width: 100%;
        width: 100%;
        padding: 20px 16px;
    }

    .roadmap-box h2 {
        font-size: 0.9rem;
    }

    .roadmap-desc {
        font-size: 0.85rem;
        max-width: 100%;
    }
}

/* ============================================
   ABOUT CREATOR - MELLØ
   ============================================ */
.about-creator {
    padding: 100px 0;
    background: var(--bg-surface);
    position: relative;
    overflow: hidden;
}

.about-creator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
    box-shadow: 0 0 10px rgb(220 255 0 / 50%);
}

.creator-card {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 48px;
    background: var(--bg-deep);
    border: 2px solid var(--border-glass);
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.creator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-neon);
    opacity: 0;
    transition: var(--transition);
}

.creator-card:hover {
    border-color: var(--neon-pink);
    transform: translateY(-8px);
    box-shadow: var(--glow-pink);
}

.creator-card:hover::before {
    opacity: 1;
}

.creator-image-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 180px;
    height: 180px;
}

.creator-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--neon-green);
    box-shadow: 0 0 30px rgb(220 255 0 / 40%), 0 0 60px rgb(220 255 0 / 20%);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.creator-card:hover .creator-image {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgb(220 255 0 / 60%), 0 0 80px rgb(220 255 0 / 30%);
}

.creator-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgb(220 255 0 / 30%) 0%, transparent 70%);
    filter: blur(20px);
    z-index: 1;
    animation: pulse-glow 3s ease-in-out infinite;
}

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

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.creator-info {
    flex: 1;
}

.creator-name {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 8px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.creator-name sup {
    font-size: 1rem;
    vertical-align: super;
    color: var(--neon-green);
    font-weight: 400;
}

.creator-title {
    font-size: 1.1rem;
    color: var(--neon-green);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgb(220 255 0 / 40%);
    letter-spacing: 0.5px;
}

.creator-bio {
    font-size: 1rem;
    line-height: 1.7;
    color: rgb(255 255 255 / 80%);
    margin: 0;
}

@media (width <=768px) {
    .about-creator {
        padding: 60px 0;
    }

    .creator-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 32px;
    }

    .creator-image-wrapper {
        width: 140px;
        height: 140px;
    }

    .creator-name {
        font-size: 1.75rem;
    }

    .creator-title {
        font-size: 0.95rem;
    }

    .creator-bio {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
    padding: 80px 0;
    background: var(--bg-deep);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: var(--grad-neon);
    box-shadow: var(--glow-green);
    border-radius: 2px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.pricing-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--grad-neon);
    border-radius: 2px;
    box-shadow: var(--glow-green);
}

.grid-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.pricing-card {
    padding: 40px 32px;
    background: var(--bg-surface);
    border: 2px solid var(--border-glass);
    border-radius: 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-neon);
    opacity: 0;
    transition: var(--transition);
}

.pricing-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-8px);
    background: var(--bg-glass-hover);
    box-shadow: var(--glow-green);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-value {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 24px;
    text-shadow: 0 0 20px rgb(220 255 0 / 30%);
}

.pricing-featured {
    border-color: var(--neon-green);
    background: linear-gradient(135deg, rgb(220 255 0 / 5%), rgb(122 44 255 / 5%));
    box-shadow: var(--glow-green);
}

.pricing-featured::before {
    opacity: 1;
}

.pricing-footer {
    text-align: center;
    margin-top: 40px;
}

.btn-link {
    font-size: 0.95rem;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    padding: 80px 0;
    background: var(--bg-deep);
    border-top: 1px solid rgb(255 255 255 / 5%);
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.footer-right {
    text-align: right;
}

.footer-copy {
    margin: 0;
}

.footer-links {
    margin-top: 2px;
    color: #9aa0aa;
    font-size: 0.85rem;
}

.footer-flowpay-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    text-decoration: none;
}

.footer-flowpay-link:focus-visible {
    outline: 2px solid var(--neon-green);
    outline-offset: 6px;
    border-radius: 12px;
}

.footer-flowpay-logo {
    max-width: 160px;
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.85;
    filter: grayscale(100%) brightness(0.25);
    transition: filter 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.footer-flowpay-link:hover .footer-flowpay-logo,
.footer-flowpay-link:focus-visible .footer-flowpay-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-1px);
}

.footer-cnpj {
    margin-top: 0;
    color: #7b7f88;
    font-size: 0.85rem;
}

@media (width <=768px) {
    .footer-grid {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .footer-left {
        text-align: center;
    }

    .footer-right {
        text-align: center;
        order: 4;
    }

    .footer-links {
        order: 1;
    }

    .footer-cnpj {
        order: 2;
    }

    .footer-copy {
        order: 3;
    }
}

/* ============================================
   LEGAL
   ============================================ */
.legal {
    padding: 80px 0;
    border-top: 1px solid rgb(255 255 255 / 8%);
}

.legal h2 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.legal h3 {
    font-size: 1.1rem;
    margin-top: 24px;
    margin-bottom: 8px;
}

.legal p,
.legal li {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.legal ul {
    margin: 8px 0 16px 18px;
}

.legal-back {
    display: inline-block;
    margin-bottom: 16px;
    color: #f0f0f5;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.legal-back:hover,
.legal-back:focus-visible {
    opacity: 0.85;
    text-decoration: none;
}

/* ============================================
   CTA
   ============================================ */
.cta {
    padding: 120px 0;
}

.cta-box {
    padding: 80px 40px;
    background: linear-gradient(135deg, #ff2fb3, #7a2cff);
    border-radius: 40px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid rgb(255 255 255 / 10%);
    box-shadow: var(--glow-pink), var(--glow-purple);
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgb(255 255 255 / 10%) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgb(220 255 0 / 10%) 0%, transparent 50%);
    opacity: 0.5;
    pointer-events: none;
}

.cta-box h2 {
    font-size: 3rem;
    margin-bottom: 24px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    color: white;
    position: relative;
    z-index: 1;
}

.btn-cta {
    background: #fff;
    color: #000;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgb(0 0 0 / 30%);
    transition: var(--transition);
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgb(255 255 255 / 40%), 0 0 30px rgb(255 255 255 / 20%);
}

/* Responsive - Mobile First */
@media (width <=768px) {
    header {
        --header-height: 70px;
        --header-blur: 60px;
        --header-opacity: 0.9;

        height: var(--header-height);
        backdrop-filter: blur(var(--header-blur)) saturate(180%);
        background: linear-gradient(135deg, rgb(255 47 179 / 10%) 0%, rgb(122 44 255 / 10%) 100%), rgb(5 5 8 / var(--header-opacity));
        box-shadow: 0 8px 32px rgb(0 0 0 / 50%), 0 1px 0 rgb(255 255 255 / 8%) inset;
    }

    main {
        margin-top: 70px;
    }

    header.scrolled {
        --header-opacity: 0.35;
        --header-blur: 35px;

        background: linear-gradient(135deg, rgb(255 47 179 / 4%) 0%, rgb(122 44 255 / 4%) 100%), rgb(5 5 8 / var(--header-opacity));
        backdrop-filter: blur(var(--header-blur)) saturate(140%);
        box-shadow: 0 4px 20px rgb(0 0 0 / 25%), 0 1px 0 rgb(255 255 255 / 5%) inset;
    }

    .nav-links {
        display: none;
    }

    nav {
        gap: 16px;
    }

    .logo-img {
        height: 34px;
    }

    .btn-primary {
        font-size: 0.85rem;
        padding: 12px 22px;
        min-height: 44px;
        box-shadow: 0 3px 15px rgb(255 47 179 / 40%), 0 0 30px rgb(255 47 179 / 15%);
    }

    .btn-header {
        font-size: 0.85rem;
        padding: 10px 18px;
        min-height: 40px;
        box-shadow: 0 2px 8px rgb(0 0 0 / 20%), inset 0 1px 0 rgb(255 255 255 / 8%);
    }

    .hero {
        padding: 72px 0 20px;
    }

    .hero-visual {
        position: absolute;
        right: -18%;
        top: 55%;
        width: 85%;
        height: 55%;
        opacity: 0.5;
        pointer-events: none;
        z-index: 1;
    }

    .hero-content {
        text-align: center;
        padding: 0 20px;
    }

    h1 {
        font-size: 1.75rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 12px;
        padding: 0 20px;
    }

    .btn {
        width: 100%;
        border-radius: 50px;
    }

    .services.roadmap-section {
        padding: 60px 0;
    }

    .roadmap-desc strong,
    .pricing-subtitle strong {
        color: var(--neon-green);
        font-weight: 700;
    }

    .pricing-desc strong,
    .pricing-time strong,
    .service-card p strong {
        color: var(--neon-green);
        font-weight: 700;
        text-shadow: 0 0 10px rgb(220 255 0 / 50%);
    }

    .pricing {
        padding: 50px 0;
    }

    .pricing-header h2 {
        font-size: 1.75rem;
    }

    .pricing-card {
        padding: 28px 20px;
    }

    .pricing-value {
        font-size: 1.75rem;
    }

    .cta {
        padding: 50px 0;
    }

    .cta-box {
        padding: 40px 20px;
        border-radius: 24px;
    }

    .cta-box h2 {
        font-size: 1.5rem;
    }

    .btn-cta {
        width: 100%;
    }

    footer {
        padding: 40px 0;
    }
}

@media (width <=1024px) and (width >=769px) {
    .hero-visual {
        display: none;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    h1 {
        font-size: 3rem;
    }

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

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio {
    padding: 100px 0 80px;
    position: relative;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 56px;
}

.portfolio-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}

.portfolio-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
}

.portfolio-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.6;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.portfolio-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.portfolio-card:hover {
    border-color: rgb(255 47 179 / 30%);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgb(0 0 0 / 40%),
        0 0 30px rgb(255 47 179 / 8%);
}

.portfolio-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0a0a12;
}

.portfolio-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: block;
}

.portfolio-card:hover .portfolio-img-wrap img {
    transform: scale(1.04);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgb(5 5 8 / 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: var(--transition);
    box-shadow: var(--glow-pink);
}

.portfolio-link-btn:hover {
    background: #fff;
    color: var(--primary);
}

.portfolio-info {
    padding: 20px 22px 24px;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.portfolio-tags .tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
    padding: 4px 8px;
    background: rgb(255 255 255 / 5%);
    color: var(--text-muted);
    border: 1px solid rgb(255 255 255 / 10%);
}

.portfolio-info h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-info h3 {
    color: var(--primary);
}

.portfolio-info p {
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0;
}

@media (width <=640px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ANIMATIONS & PULSES
   ============================================ */
@keyframes skeleton-pulse {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}