/* KITEBIZ - Inteligência Operacional como Serviço */
/* https://kitebiz.com.br */

:root {
    --gold: #f5a623;
    --gold-light: #ffd76e;
    --black: #000000;
    --black-soft: #0a0a0a;
    --gray-dark: #141414;
    --gray: #1a1a1a;
    --gray-mid: #2a2a2a;
    --gray-light: #666666;
    --white: #ffffff;
    --white-soft: #f5f5f5;
}

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

::selection {
    background: var(--gold);
    color: var(--black);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.7;
    font-weight: 600;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}

p, span, li, a {
    font-weight: 600;
}

/* Utilities */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.text-gold {
    color: var(--gold);
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: transparent;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 120px;
    opacity: 0.95;
    transition: all 0.3s ease;
}

.header.scrolled .logo {
    height: 70px;
}

@media (max-width: 768px) {
    .logo {
        height: 80px;
    }

    .header.scrolled .logo {
        height: 50px;
    }
}

.logo:hover {
    opacity: 1;
}

.nav {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.7;
    transition: all 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-link:hover {
    opacity: 1;
    color: var(--gold);
}

.nav-link:hover::after {
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gold);
}

.btn:hover {
    background: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(245, 166, 35, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.btn:hover svg {
    transform: translateX(4px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-desktop {
    display: block;
}

.hero-video-mobile {
    display: none;
}

@media (max-width: 768px) {
    .hero-video-desktop {
        display: none;
    }
    .hero-video-mobile {
        display: block;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%),
        linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding-top: 8rem;
}

.hero-alert {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(220, 38, 38, 0.3);
    margin-bottom: 2.5rem;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.2); }
    50% { box-shadow: 0 0 20px 0 rgba(220, 38, 38, 0.3); }
}

.hero-alert span {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fca5a5;
    font-weight: 500;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.hero-title em {
    font-style: normal;
    color: var(--gold);
    font-weight: 800;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: rgba(255,255,255,0.8);
    max-width: 650px;
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 600;
}

.hero-subtitle strong {
    color: var(--white);
    font-weight: 700;
}

.hero-definition {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    background: rgba(245, 166, 35, 0.08);
    border-left: 3px solid var(--gold);
    max-width: 650px;
}

.hero-definition strong {
    color: var(--gold);
    font-weight: 700;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-tagline {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-tagline::before {
    content: '';
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    opacity: 0.5;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Section Styles */
section {
    padding: clamp(5rem, 12vw, 10rem) 0;
}

.section-label {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.section-title .strike {
    text-decoration: line-through;
    text-decoration-color: var(--gold);
    opacity: 0.5;
}

/* Manifesto Section */
.manifesto {
    background: var(--black);
    padding: 6rem 0;
    position: relative;
}

.manifesto::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
}

.manifesto-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.manifesto-text {
    margin-top: 2rem;
}

.manifesto-text p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.manifesto-text p strong {
    color: var(--white);
    font-weight: 700;
}

.manifesto-highlight {
    font-size: 1.25rem !important;
    color: var(--gold) !important;
    font-style: italic;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    margin-top: 2rem !important;
    margin-bottom: 0 !important;
}

/* Problem Section */
.problem {
    background: var(--black-soft);
    position: relative;
    padding: 8rem 0;
}

.problem-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

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

.problem-intro {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.9;
    font-weight: 500;
}

/* Gap Chart Container */
.gap-chart-container {
    max-width: 1100px;
    margin: 0 auto 4rem;
    background: #0a0a0a;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(245, 166, 35, 0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(245, 166, 35, 0.05);
}

.gap-chart {
    width: 100%;
    height: auto;
    display: block;
}

/* SVG Chart Typography - Dark Theme */
.gap-chart .chart-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    fill: #ffffff;
    letter-spacing: 0.15em;
}

.gap-chart .chart-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    fill: rgba(255,255,255,0.5);
}

.gap-chart .axis-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    fill: rgba(255,255,255,0.7);
}

.gap-chart .axis-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    fill: rgba(255,255,255,0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.gap-chart .inflection-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 700;
    fill: #dc2626;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.gap-chart .event-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
}

.gap-chart .event-label.red {
    fill: #f87171;
}

.gap-chart .event-label.red-small {
    font-size: 9px;
    fill: #f87171;
}

.gap-chart .event-label.blue {
    fill: #60a5fa;
}

.gap-chart .event-label.gold {
    fill: #f5a623;
    font-weight: 700;
}

.gap-chart .event-label.gold-small {
    font-size: 9px;
    fill: #f5a623;
    font-weight: 600;
}

.gap-chart .gap-text-main {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    fill: #ffffff;
}

.gap-chart .gap-text-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    fill: rgba(255,255,255,0.7);
}

.gap-chart .gap-text-impact {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    fill: #f87171;
    font-style: italic;
}

.gap-chart .line-label-text.dark {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 700;
    fill: #000000;
    letter-spacing: 0.05em;
}

.gap-chart .line-label-text.light {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 700;
    fill: rgba(255,255,255,0.9);
    letter-spacing: 0.05em;
}

.gap-chart .legend-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    fill: rgba(255,255,255,0.6);
}

/* Gap Explanation */
.gap-explanation {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255,255,255,0.03);
    border-left: 4px solid var(--gold);
}

.gap-explanation h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.gap-explanation p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-weight: 500;
}

.gap-explanation .text-red {
    color: #f87171;
    font-weight: 700;
}

.gap-explanation .text-blue {
    color: #60a5fa;
    font-weight: 700;
}

.gap-warning {
    font-size: 0.95rem !important;
    color: var(--gold) !important;
    font-style: italic;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    margin-top: 1rem;
}

.gap-solution {
    font-size: 1rem !important;
    color: rgba(255,255,255,0.9) !important;
    margin-top: 1rem;
    margin-bottom: 0 !important;
}

.gap-solution strong {
    color: var(--gold);
}

.gap-cta {
    flex-shrink: 0;
}

@media (max-width: 968px) {
    .gap-explanation {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem;
    }

    .gap-explanation-content {
        text-align: left;
    }

    .gap-cta {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .gap-chart-container {
        padding: 0.75rem;
        margin-left: -1rem;
        margin-right: -1rem;
        border-radius: 8px;
    }

    .gap-chart .chart-title {
        font-size: 16px;
    }

    .gap-chart .chart-subtitle {
        font-size: 10px;
    }

    .gap-chart .event-label,
    .gap-chart .event-label.red,
    .gap-chart .event-label.blue {
        font-size: 7px;
    }

    .gap-chart .axis-label {
        font-size: 9px;
    }

    .gap-chart .gap-text-main {
        font-size: 12px;
    }

    .gap-chart .gap-text-desc {
        font-size: 8px;
    }

    .gap-chart .gap-text-impact {
        font-size: 7px;
    }

    .gap-explanation {
        padding: 1.5rem;
    }
}

/* VTA Method */
.method {
    background: var(--black);
    position: relative;
}

.method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.method-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.method-header p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
}

.method-header strong {
    color: var(--white);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 2px;
    font-weight: 700;
}

/* VTA Timeline Cronogram */
.vta-timeline {
    max-width: 1000px;
    margin: 0 auto 4rem;
    padding: 2.5rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(245, 166, 35, 0.2);
    border-radius: 8px;
}

.vta-timeline-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.vta-timeline-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.vta-timeline-subtitle {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

/* Timeline Grid */
.vta-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.vta-row {
    display: grid;
    grid-template-columns: 140px repeat(12, 1fr);
    gap: 4px;
    align-items: center;
}

.vta-row.vta-weeks {
    margin-bottom: 0.5rem;
}

.vta-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-right: 1rem;
}

.vta-letter {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--black);
    font-weight: 800;
    font-size: 1rem;
    border-radius: 4px;
}

.vta-phase-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
}

.vta-cell {
    height: 44px;
    background: rgba(255,255,255,0.03);
    border-radius: 4px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vta-cell.week-number {
    background: transparent;
    height: 28px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
}

.vta-cell.week-number.checkpoint-week {
    color: var(--gold);
}

/* Active Cells */
.vta-cell.active-v .vta-bar {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold), #d4920e);
    border-radius: 4px;
    opacity: 0.9;
}

.vta-cell.active-t .vta-bar {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold), #d4920e);
    border-radius: 4px;
    opacity: 0.7;
}

.vta-cell.active-a .vta-bar {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold), #d4920e);
    border-radius: 4px;
    opacity: 0.5;
}

/* Checkpoint Dots */
.checkpoint-dot {
    position: absolute;
    top: -6px;
    right: 50%;
    transform: translateX(50%);
    width: 12px;
    height: 12px;
    background: var(--black);
    border: 3px solid var(--gold);
    border-radius: 50%;
    z-index: 2;
}

.vta-cell.active-v .checkpoint-dot,
.vta-cell.active-t .checkpoint-dot,
.vta-cell.active-a .checkpoint-dot {
    background: var(--gold);
}

/* Checkpoints Legend */
.vta-checkpoints {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 2rem;
}

.vta-checkpoint-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.checkpoint-marker {
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
}

.vta-checkpoint-item strong {
    color: var(--white);
    font-weight: 600;
}

/* Phase Descriptions */
.vta-phases-desc {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.vta-phase-desc {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.phase-tag {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--black);
    font-weight: 800;
    font-size: 0.75rem;
    border-radius: 3px;
}

.vta-phase-desc p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    margin: 0;
}

.vta-phase-desc p strong {
    color: var(--white);
    font-weight: 600;
}

/* Method Separator */
.method-separator {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(245, 166, 35, 0.3), transparent);
    margin: 4rem 0;
}

.method-cards-header {
    text-align: center;
    margin-bottom: 3rem;
}

.method-cards-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

/* VTA Timeline Responsive */
@media (max-width: 968px) {
    .vta-timeline {
        padding: 1.5rem;
    }

    .vta-row {
        grid-template-columns: 100px repeat(12, 1fr);
        gap: 2px;
    }

    .vta-letter {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }

    .vta-phase-name {
        display: none;
    }

    .vta-cell {
        height: 36px;
    }

    .vta-checkpoints {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .vta-phases-desc {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .vta-row {
        grid-template-columns: 40px repeat(12, 1fr);
        gap: 2px;
    }

    .vta-label {
        padding-right: 0.5rem;
    }

    .vta-letter {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }

    .vta-cell {
        height: 28px;
    }

    .vta-cell.week-number {
        font-size: 0.65rem;
    }

    .checkpoint-dot {
        width: 8px;
        height: 8px;
        border-width: 2px;
        top: -4px;
    }
}

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

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

.method-card {
    padding: 3rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.method-card:hover {
    background: rgba(245, 166, 35, 0.05);
    transform: translateY(-8px);
}

.method-card:hover::before {
    transform: scaleX(1);
}

.method-card.featured {
    transform: translateY(-1rem);
    border-top: 3px solid var(--gold);
}

.method-card.featured::before {
    display: none;
}

.method-letter {
    font-family: 'Montserrat', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    color: var(--gold);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 1.5rem;
    transition: all 0.5s;
}

.method-card:hover .method-letter {
    opacity: 0.7;
}

.method-card h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.method-card h4 {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.method-duration {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    background: rgba(245, 166, 35, 0.1);
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.method-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 600;
}

.method-card code {
    background: rgba(245, 166, 35, 0.15);
    padding: 0.15rem 0.5rem;
    font-size: 0.85rem;
    font-family: inherit;
    font-weight: 700;
}

/* Data Sources Block */
.data-sources {
    max-width: 1000px;
    margin: 4rem auto 0;
    padding: 3rem;
    background: rgba(245, 166, 35, 0.03);
    border: 1px solid rgba(245, 166, 35, 0.15);
    border-radius: 8px;
}

.data-sources-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.data-sources-intro {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 600;
}

.data-sources-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .data-sources-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.data-source-column h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.data-source-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.data-source-column li {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    padding-left: 1.25rem;
    position: relative;
    font-weight: 600;
    line-height: 1.5;
}

.data-source-column li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.data-sources-footer {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    font-style: italic;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin: 0;
}

/* Differentiator */
.diff {
    background: var(--gray-dark);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

@media (max-width: 968px) {
    .diff-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

.diff-image {
    position: relative;
    overflow: hidden;
}

.diff-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.7s;
}

.diff-image:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.diff-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,0.1);
    pointer-events: none;
}

.diff-content h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
}

.diff-content > p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2.5rem;
    line-height: 1.9;
    font-weight: 600;
}

.diff-content strong {
    color: var(--white);
    font-weight: 700;
}

.diff-content em {
    font-style: normal;
    color: var(--gold);
    font-weight: 700;
}

.diff-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.diff-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.diff-list-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

/* Vibe Process Coding Section */
.vibe-tech-bullets {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.vibe-tech-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.vibe-tech-number {
    flex-shrink: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(245, 166, 35, 0.1);
    padding: 0.4rem 0.6rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.vibe-tech-item div strong {
    display: block;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.vibe-tech-item div p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
    line-height: 1.5;
}

.vibe-governance {
    margin-top: 2rem;
}

.vibe-governance h4 {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
    font-weight: 700;
}

/* Pillars */
.pillars {
    background: var(--black-soft);
}

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

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.05);
}

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

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

.pillar {
    background: var(--black-soft);
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s;
}

.pillar:hover {
    background: rgba(245, 166, 35, 0.08);
}

.pillar svg {
    width: 48px;
    height: 48px;
    color: var(--gold);
    margin-bottom: 1.5rem;
    transition: all 0.4s;
    opacity: 0.8;
}

.pillar:hover svg {
    color: var(--gold);
    opacity: 1;
    transform: scale(1.1);
}

.pillar h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.pillar span {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
}

/* Products */
.products {
    background: var(--black);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

.product-card {
    padding: 3rem;
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.15) 0%, transparent 100%);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s;
}

.product-card:hover {
    border-color: rgba(245, 166, 35, 0.3);
    transform: translateY(-4px);
}

.product-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.product-header svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
}

.product-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.product-card p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.product-card .btn-small {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s;
    border: 1px solid var(--gold);
}

.product-card .btn-small:hover {
    background: var(--gold);
    color: var(--black);
}

.product-card .btn-small svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s;
}

.product-card .btn-small:hover svg {
    transform: translateX(3px);
}

/* CTA Section */
.cta {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, var(--black), rgba(245, 166, 35, 0.1), var(--black)),
        url('imgs/kitebiz-hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 4rem 2rem;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.9;
    font-weight: 600;
}

.cta .btn {
    font-size: 1rem;
    padding: 1.25rem 3rem;
}

.cta-tags {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    color: rgba(255,255,255,0.3);
    font-size: 0.85rem;
    font-family: monospace;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand img {
    height: 28px;
    width: auto;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .footer-brand {
        align-items: center;
    }
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    max-width: 280px;
}

.footer-contact h4,
.footer-links h4 {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-item:hover {
    color: var(--white);
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .footer-contact-item {
        justify-content: center;
    }
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

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

.footer-copy {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--gold);
}

.footer-legal span {
    color: rgba(255,255,255,0.2);
    font-size: 0.8rem;
}

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

.footer-social a {
    color: rgba(255,255,255,0.4);
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--gold);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Nav */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav .nav-link {
    font-size: 1.5rem;
    opacity: 1;
}

.mobile-nav .btn {
    margin-top: 1rem;
}

@media (max-width: 968px) {
    .nav {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .mobile-nav {
        display: flex;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* Stat Card Positive Variant */
.stat-card-positive {
    border-top-color: #22c55e;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, transparent 100%);
}

.stat-list-item-positive svg {
    color: #22c55e;
}

/* Hero Alert Gold Variant */
.hero-alert-gold {
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(245, 166, 35, 0.3);
    animation: none;
}

.hero-alert-gold span {
    color: var(--gold-light);
}

.hero-alert-gold svg {
    stroke: var(--gold);
}

/* Method Deliverables */
.method-deliverables {
    list-style: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.method-deliverables li {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    padding-left: 1.25rem;
    position: relative;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.method-deliverables li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* CTA Microcopy */
.cta-microcopy {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-top: 1.5rem;
    font-weight: 600;
}

/* Pillars Subtitle */
.pillars-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    margin-top: 1rem;
    font-weight: 600;
}

/* Product Flow Indicator */
.product-flow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* Chart Gold Legend */
.chart-legend-gold {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gold);
    margin-top: 1rem;
    font-weight: 600;
    font-style: italic;
}

/* Manifesto CTA */
.manifesto-cta {
    margin-top: 2rem;
    text-align: center;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    border-bottom: 1px solid transparent;
}

.btn-link:hover {
    color: var(--white);
    border-bottom-color: var(--white);
}

.btn-link svg {
    transition: transform 0.3s;
}

.btn-link:hover svg {
    transform: translate(3px, -3px);
}

/* CTA Secondary Link */
.cta-secondary-link {
    margin-top: 1.5rem;
    justify-content: center;
}

/* Quick Numbers Section */
.quick-numbers {
    background: var(--black);
    padding: 4rem 0;
    border-top: 1px solid rgba(245, 166, 35, 0.2);
}

.quick-numbers-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quick-numbers-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.quick-numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .quick-numbers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.quick-number-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(245, 166, 35, 0.05);
    border: 1px solid rgba(245, 166, 35, 0.2);
}

.quick-number-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
}

.quick-number-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
}

.quick-numbers-footer {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    font-style: italic;
}

/* Proofs Section */
.proofs {
    background: var(--black);
    padding: 6rem 0;
    position: relative;
}

.proofs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(245, 166, 35, 0.3), transparent);
}

.proofs-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.proofs-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
}

.proof-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-left: 3px solid var(--gold);
    transition: all 0.3s;
}

.proof-item:hover {
    background: rgba(245, 166, 35, 0.05);
    transform: translateX(8px);
}

.proof-number {
    flex-shrink: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
    opacity: 0.5;
}

.proof-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.proof-text p {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin: 0;
    font-weight: 600;
}

@media (max-width: 768px) {
    .proof-item {
        padding: 1.5rem;
    }
}

/* Case Study Section */
.case-study {
    background: var(--gray-dark);
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

.case-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    margin-top: 1rem;
    font-weight: 600;
}

.case-content {
    max-width: 1000px;
    margin: 0 auto;
}

.case-challenge,
.case-solution,
.case-results,
.case-roi,
.case-benefits {
    margin-bottom: 3rem;
}

.case-challenge h3,
.case-solution h3,
.case-results h3,
.case-roi h3 {
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.case-challenge p,
.case-solution p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    font-weight: 600;
}

.case-stats-mini {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.case-stat-mini {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.case-stat-mini .stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
}

.case-stat-mini .stat-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
}

/* Case Stats Grid */
.case-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .case-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.case-stat {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
}

.case-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.case-stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
}

/* Case ROI */
.case-roi {
    background: rgba(245, 166, 35, 0.05);
    border-left: 3px solid var(--gold);
    padding: 2.5rem;
}

.case-roi-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 768px) {
    .case-roi-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.case-roi-text p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    font-weight: 600;
}

.case-roi-quote blockquote {
    font-size: 1rem;
    font-style: italic;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    padding-left: 1.5rem;
    border-left: 2px solid rgba(255,255,255,0.2);
    font-weight: 600;
}

/* Case Benefits */
.case-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .case-benefits {
        grid-template-columns: 1fr;
    }
}

.case-benefit {
    padding: 2rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
}

.case-benefit h4 {
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.case-benefit ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.case-benefit li {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    padding-left: 1.25rem;
    position: relative;
    font-weight: 600;
}

.case-benefit li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}
