:root {
    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-display: "Space Grotesk", sans-serif;

    --color-bg: #fafafa;
    --color-text-main: #0a0a0b;
    --color-text-slate: #64748b;
    --color-text-slate-light: #94a3b8;

    --color-purple-950: #1E003B;
    --color-purple-800: #350069;
    --color-purple-700: #6b21a8;
    --color-purple-100: #f3e8ff;

    --color-lime-400: #a3e635;
    --color-lime-100: #f7fee7;
    --color-lime-50: #e5f3cf;
    --color-lime-600: #65a30d;
}

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

body {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: var(--font-sans);
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
}

@media (min-width: 640px) {
    .container {
        padding: 0 3rem;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 6rem;
    }
}

/* GLOBAL BACKGROUND ELEMENTS */
.fixed-noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
}

.hero-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120vh;
    pointer-events: none;
    z-index: 0;
    background-image: radial-gradient(ellipse at -5% 30%, rgba(155, 229, 0, 0.12) 0%, rgba(155, 229, 0, 0) 55%);
}

/* TYPOGRAPHY */
h1,
h2,
h3,
.font-display {
    font-family: var(--font-display);
}

.text-balance {
    text-wrap: balance;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    items-center: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-weight: 550;
    font-size: 1.25rem;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--color-lime-400);
    color: var(--color-purple-950);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-primary:hover {
    transform: scale(1.02);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid #e2e8f0;
    color: var(--color-text-slate);
}

.btn-secondary:hover {
    background-color: white;
    color: black;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-lime {
    background-color: var(--color-lime-400);
    color: var(--color-purple-950);
    width: 100%;
    white-space: nowrap;
}

.btn-outline-dark {
    background-color: transparent;
    border: 2px solid var(--color-purple-950);
    color: var(--color-purple-950);
    width: 100%;
}

.btn-outline-dark:hover {
    background-color: var(--color-purple-950);
    color: white;
}

/* ICONS */
.icon {
    width: 1.5rem;
    height: 1.5rem;
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-top: 2.5rem;
    gap: 3rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .hero {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.hero-left {
    max-width: 3xl;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-left {
        align-items: flex-start;
    }
}

.brand-logo {
    height: 2.5rem;
    object-contain: true;
    margin-bottom: 1.5rem;
}

.badge {
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background-color: rgba(106, 9, 202, 0.082);
    color: var(--color-purple-950);
    font-size: 0.875rem;
    font-weight: 600;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.2rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.05em;
    color: var(--color-purple-950);
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: clamp(2.2rem, 3vw, 1.875rem);
    color: var(--color-text-slate);
    font-weight: 500;
    letter-spacing: -1.2px;
    max-width: 40rem;
    margin-bottom: 3rem;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-right {
    display: none;
    flex: 1;
    position: relative;
    min-height: 600px;
    align-items: center;
    justify-content: flex-end;
    overflow: visible;
}

@media (min-width: 1024px) {
    .hero-right {
        display: flex;
    }
}

.hero-bolt {
    position: absolute;
    top: 50%;
    right: -120px;
    transform: translateY(-50%);
    width: 520px;
    height: 520px;
    background-image: url('assets/hero.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
}

.hero-visual-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 760px;
    overflow: visible;
}

.hero-astronauts {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.1));
}

/* VISUAL BADGES */
.visual-badge {
    position: absolute;
    background: white;
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.badge-mission {
    top: 15%;
    left: -5%;
    transform: rotate(-6deg);
}

.badge-progress {
    bottom: 25%;
    left: -10%;
    transform: rotate(4deg);
    background: var(--color-purple-950);
    color: white;
    border-color: #350069;
}

.badge-done {
    top: 35%;
    right: -10%;
    transform: rotate(8deg);
    background: var(--color-lime-50);
    border-color: var(--color-lime-100);
}

.badge-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-purple {
    background: var(--color-purple-100);
    color: var(--color-purple-700);
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-content .label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text-slate-light);
    margin-bottom: 2px;
}

.badge-progress .label {
    color: rgba(255, 255, 255, 0.6);
}

.badge-content .value {
    font-weight: 540;
    font-size: 0.875rem;
    color: #1e293b;
}

.badge-progress .value {
    color: white;
}

.pulse-dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background-color: var(--color-lime-400);
    box-shadow: 0 0 10px rgba(163, 230, 53, 0.5);
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.done-text {
    font-weight: 540;
    font-size: 0.875rem;
    color: #3f6212;
}

.icon-done {
    color: var(--color-lime-600);
}

.hero {
    position: relative;
}

.hero-bolt {
    position: absolute;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
    width: 420px;
    height: 420px;
    background: url('assets/hero.png') center / contain no-repeat;
    pointer-events: none;
    z-index: 1;
    opacity: 1;
}

.hero-visual-wrapper {
    position: relative;
    z-index: 2;
}

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

/* SOLUTION SECTION */
.solution {
    width: 100%;
    max-width: 6xl;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    padding-top: 4rem;
}

@media (min-width: 768px) {
    .solution {
        flex-direction: row;
    }
}

.solution-text-block {
    flex: 1;
    max-width: 40rem;
    text-align: left;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--color-purple-950);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-subtitle {
    margin-top: 2rem;
    font-size: clamp(1.25rem, 3vw, 2.25rem);
    color: var(--color-text-slate);
    font-weight: 500;
}

.solution-cards {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 10;
}

.card-glow {
    position: absolute;
    inset: 0;
    background-color: var(--color-lime-400);
    filter: blur(100px);
    opacity: 0.2;
    border-radius: 50%;
    pointer-events: none;
}

.solution-card {
    padding: 1.5rem;
    border-radius: 1rem;
    display: flex;
    transition: transform 0.3s ease;
    z-index: 10;
}

.card-light {
    background: white;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    justify-content: space-between;
    align-items: center;
}

.card-dark {
    background: var(--color-purple-800);
    border: 1px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    flex-direction: column;
}

@media (min-width: 768px) {
    .card-dark {
        transform: translateX(1.5rem);
    }

    .card-dark:hover {
        transform: translateX(1.5rem) translateY(-0.25rem);
    }
}

.card-body {
    flex: 1;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.card-header .label {
    font-size: 11px;
    font-weight: 540;
    text-transform: uppercase;
    color: var(--color-text-slate-light);
    letter-spacing: 0.1em;
}

.card-dark .label {
    color: #ddd6fe;
    font-weight: 200;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 540;
    color: #1e293b;
    line-height: 1.25;
}

.card-dark .card-title {
    color: white;
    font-weight: 540;
}

.v-progress-bar {
    width: 0.5rem;
    height: 4rem;
    background-color: #f1f5f9;
    border-radius: 9999px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    margin-left: 1.5rem;
}

.progress-fill {
    width: 100%;
    background-color: var(--color-lime-400);
    border-radius: 9999px;
    transition: height 1s ease-in-out;
}

.ping-indicator {
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
}

.ping-circle {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid var(--color-lime-400);
    opacity: 0.3;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.ping-dot {
    position: absolute;
    top: 0.375rem;
    left: 0.375rem;
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background-color: var(--color-lime-400);
}

/* PRODUCT / KANBAN SECTION */
.product-visual {
    width: 100%;
    padding-top: 5rem;
    text-align: center;
}

.product-head {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--color-purple-950);
    font-weight: 700;
    letter-spacing: 0.02rem;
    margin-bottom: 0.1rem;
}

.product-sub {
    font-size: 1.5rem;
    color: var(--color-text-slate);
    font-weight: 500;
    margin-bottom: 5rem;
}

.kanban-wrapper {
    width: 100%;
    max-width: 6xl;
    position: relative;
    padding-bottom: 3rem;
}

.mockup-background {
    position: absolute;
    right: -5rem;
    bottom: -5rem;
    opacity: 0.05;
    pointer-events: none;
    display: flex;
    justify-content: flex-end;
}

.mockup-background img {
    width: 75%;
    height: auto;
    opacity: 0.5;
}

.kanban-board {
    position: relative;
    z-index: 10;
    background: white;
    border-radius: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .kanban-board {
        padding: 3rem;
    }
}

.kanban-header {
    margin-bottom: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 2rem;
    text-align: left;
}

.mini-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-purple-700);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.header-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-purple-950);
    margin: 0;
}

.header-right {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .header-right {
        display: flex;
    }
}

.avatar-stack {
    display: flex;
    margin-right: -0.5rem;
}

.avatar-stack img {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 2px solid white;
    object-fit: cover;
    margin-left: -0.5rem;
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.completion-badge {
    background: var(--color-lime-100);
    padding: 0.75rem 1.5rem;
    border-radius: 1rem;
    color: #3f6212;
    font-weight: 700;
    font-size: 1.25rem;
}

.kanban-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .kanban-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.kanban-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0.25rem;
    border-radius: 1rem;
    transition: background 0.2s ease;
}

.kanban-column.drag-over {
    background: rgba(163, 230, 53, 0.06);
}

.col-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.col-header h4 {
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

.col-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
}

.dot-todo {
    background: #cbd5e1;
}

.dot-progress {
    background: #a855f7;
}

.dot-done {
    background: #84cc16;
}

.cards-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 100px;
}

/* KANBAN CARDS */
.k-card {
    position: relative;
    padding: 1.5rem;
    border-radius: 1rem;
    cursor: grab;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.k-card:active {
    cursor: grabbing;
}

.k-card.dragging {
    opacity: 0.5;
    cursor: grabbing;
    transform: scale(0.95);
}

.k-todo {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.k-progress {
    background: var(--color-purple-950);
    color: white;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    transform: scale(1.05) rotate(1deg);
    z-index: 5;
}

.k-done {
    background: var(--color-lime-50);
    border: 1px solid var(--color-lime-100);
    opacity: 0.6;
}

.k-card-title {
    font-weight: 540;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    text-align: left;
}

.k-done .k-card-title {
    line-through: true;
    color: var(--color-text-slate);
    text-decoration: line-through;
}

.k-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--color-text-slate-light);
    font-weight: 500;
}

.k-detail {
    background: #f1f5f9;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
}

.active-sprint {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    width: fit-content;
    display: block;
}

.k-progress-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ddd6fe;
    margin-top: 1rem;
}

.checkbox-mock {
    width: 1.5rem;
    height: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-fill {
    width: 0.75rem;
    height: 0.75rem;
    background: var(--color-lime-400);
    border-radius: 2px;
}

.k-done-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4d7c0f;
    font-weight: 700;
    font-size: 0.875rem;
    margin-top: 1rem;
}

.card-avatars {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
}

.card-avatars img {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    border: 2px solid white;
    object-fit: cover;
}

.k-progress .card-avatars img {
    border-color: var(--color-purple-950);
}

.k-done .card-avatars img {
    border-color: var(--color-lime-50);
    opacity: 0.6;
}

.card-avatars.stack img {
    margin-left: -0.5rem;
}

.card-avatars.stack img:first-child {
    margin-left: 0;
}

/* DRAG HINT */
.drag-hint-wrapper {
    position: absolute;
    bottom: -1.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.6;
    animation: pulse 2s infinite;
}

.drag-hint-wrapper img {
    width: 100%;
    height: auto;
}

/* MULTI STARTUP */
.multi-startup {
    width: 100%;
    max-width: 4xl;
    text-align: center;
    margin-top: 4rem;
}

.startup-circles-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .startup-circles-row {
        gap: 4rem;
    }
}

.startup-circle {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

@media (min-width: 768px) {
    .startup-circle {
        width: 8rem;
        height: 8rem;
    }
}

.startup-circle:hover {
    transform: translateY(-0.25rem);
}

.circle-inner {
    width: 5.375rem;
    height: 5.375rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    padding: 1rem;
}

@media (min-width: 768px) {
    .circle-inner {
        width: 7.125rem;
        height: 7.125rem;
        padding: 1.5rem;
    }
}

.circle-inner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.btn-add-startup {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border: 2px dashed #cbd5e1;
    color: #94a3b8;
    font-size: 3rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
}

@media (min-width: 768px) {
    .btn-add-startup {
        width: 8rem;
        height: 8rem;
        font-size: 4rem;
    }
}

.btn-add-startup:hover {
    background: #e2e8f0;
    transform: scale(1.05);
}

.btn-add-startup:active {
    transform: scale(0.95);
}

/* PLUS BUTTON HINT */
.plus-hint-wrapper {
    position: absolute;
    top: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 7rem;
    pointer-events: none;
    opacity: 0.7;
    animation: pulse 2s infinite;
}

.plus-hint-wrapper img {
    width: 100%;
    height: auto;
}

.startup-title {
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--color-purple-950);
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.startup-desc {
    font-size: 1.8rem;
    color: var(--color-text-slate);
    font-weight: 500;
    letter-spacing: -0.8px;
    max-width: 50rem;
    margin: 0 auto;
}

/* PRICING */
.pricing {
    width: 100%;
    max-width: 5xl;
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.pricing-title {
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--color-purple-950);
    margin-bottom: 0.75rem;
}

.pricing-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-slate);
    font-weight: 500;
}

.pricing-cards {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .pricing-cards {
        flex-direction: row;
        align-items: stretch;
    }
}

.pricing-card {
    flex: 1;
    max-width: 24rem;
    background: white;
    border-radius: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.07);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-0.25rem);
}

.card-builder {
    position: relative;
    border-width: 2px;
    border-color: rgba(30, 0, 59, 0.2);
    box-shadow: 0 20px 60px rgba(30, 0, 59, 0.12);
}

@media (min-width: 768px) {
    .card-builder {
        transform: scale(1.05);
    }

    .card-builder:hover {
        transform: scale(1.05) translateY(-0.25rem);
    }
}

.popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-purple-950);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.pricing-illust {
    width: 14.25rem;
    height: auto;
    margin-bottom: 1rem;
}

.p-card-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-purple-950);
    margin-bottom: 0.25rem;
}

.p-card-tagline {
    color: var(--color-text-slate-light);
    font-weight: 500;
    font-size: 1rem;
}

.p-card-price {
    display: flex;
    align-items: flex-end;
    gap: 0.25rem;
    margin-top: 1rem;
}

.currency {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-purple-950);
}

.period {
    color: var(--color-text-slate-light);
    font-weight: 500;
    margin-bottom: 0.375rem;
}

.p-card-features {
    list-style: none;
    margin: 2rem 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.p-card-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #334155;
    font-weight: 500;
}

.check-circle {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-circle.lime {
    background: #f7fee7;
    color: #84cc16;
}

.check-circle.purple {
    background: #f3e8ff;
    color: #a855f7;
}

.check-circle .icon {
    width: 0.875rem;
    height: 0.875rem;
}

/* FOOTER */
.footer {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(180deg, #020617 0%, #0a1628 50%, #020617 100%);
    padding: 8rem 0;
    margin-top: 5rem;
}

.footer-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.footer-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 5xl;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-title {
    font-size: clamp(3rem, 10vw, 5rem);
    color: white;
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.05em;
    margin-bottom: 3rem;
}

.cta-btn {
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
    shadow: 0 25px 50px -12px rgba(163, 230, 53, 0.2);
}

.wa-btn {
    text-decoration: none;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.wa-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.wa-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.footer-divider {
    width: 4rem;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 4rem 0;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.social-icon {
    color: #94a3b8;
    transition: all 0.25s ease;
    width: 1.25rem;
    height: 1.25rem;
}

.social-icon:hover {
    color: white;
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.35));
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #94a3b8;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: white;
}

.dot {
    color: rgba(255, 255, 255, 0.2);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.footer-copyright {
    margin-top: 3rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 500;
}

/* BACK TO TOP */
.back-to-top-rocket {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(150%);
    transition: all 0.35s ease;
    opacity: 0;
}

.back-to-top-rocket.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    opacity: 1;
}

.back-to-top-rocket:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(30, 0, 59, 0.14);
}

.back-to-top-rocket svg {
    width: 1.375rem;
    height: 1.375rem;
    transition: transform 0.25s ease;
}

.back-to-top-rocket:hover svg {
    transform: translateY(-1px);
}

.back-to-top-rocket.launching {
    transform: translateY(-500px) scale(0.9);
    opacity: 0;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease-in;
}

/* Launching animation styles */
.back-to-top-rocket.launching {
    pointer-events: none;
}

/* Fire effect */
.back-to-top-rocket::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%) scaleY(0);
    width: 1.125rem;
    height: 1.5rem;
    border-radius: 0 0 50% 50%;
    background: radial-gradient(ellipse at top, #ff8c00 0%, #ff6b00 30%, #ff4500 60%, transparent 100%);
    opacity: 0;
    filter: blur(1px);
}

.back-to-top-rocket.launching::after {
    animation: exhaust-fire 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* SCROLL INDICATOR */
.scroll-indicator {
    position: absolute;
    top: 85vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: none;
}

@media (min-width: 1024px) {
    .scroll-indicator {
        display: block;
    }
}

.mouse-outline {
    width: 1.25rem;
    height: 2rem;
    border: 1.5px solid var(--color-text-slate-light);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    padding: 0.375rem;
}

.scroll-dot {
    width: 0.25rem;
    height: 0.375rem;
    background: var(--color-text-slate-light);
    border-radius: 9999px;
    animation: scroll-dot-move 1.5s infinite ease-in-out;
}

/* ANIMATIONS */
@keyframes scroll-dot-move {

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

    50% {
        transform: translateY(6px);
        opacity: 0.3;
    }
}

@keyframes float {

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

    50% {
        transform: translateY(-15px);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes exhaust-fire {
    0% {
        transform: translateX(-50%) scaleY(0) scaleX(0.6);
        opacity: 0;
    }

    20% {
        transform: translateX(-50%) scaleY(1.2) scaleX(1);
        opacity: 0.95;
    }

    100% {
        transform: translateX(-50%) scaleY(3.5) scaleX(0.2);
        opacity: 0;
    }
}

/* ENTRANCE ANIMATIONS (Standard classes, triggered via JS) */
.hero-anim {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-anim.visible {
    opacity: 1;
    transform: translateY(0);
}

.solution-anim {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.solution-anim.visible {
    opacity: 1;
    transform: translateY(0);
}

.final-cta-anim {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.final-cta-anim.visible {
    opacity: 1;
    transform: translateY(0);
}

/* WIGGLE */
@keyframes kanban-wiggle {

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

    20% {
        transform: rotate(-1.5deg);
    }

    40% {
        transform: rotate(1.5deg);
    }

    60% {
        transform: rotate(-1deg);
    }

    80% {
        transform: rotate(1deg);
    }
}

.kanban-hint {
    animation: kanban-wiggle 0.5s ease-in-out forwards;
    animation-play-state: paused;
}

.kanban-hint.wiggle {
    animation-play-state: running;
}

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