:root {
    --bg-darker: #050810;
    --bg-dark: #0B0F19;
    --bg-glass: rgba(11, 15, 25, 0.6);
    --border-glass: rgba(255, 255, 255, 0.1);

    --accent: #00E5FF;
    --accent-hover: #00B8CC;
    --accent-alt: #10B981;
    /* Emerald */

    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;

    --danger: #EF4444;
    --success: #10B981;
    --purple: #8B5CF6;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-hero: 'Cormorant Garamond', serif;

    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --shadow-glow: 0 0 20px rgba(0, 229, 255, 0.4);
    --shadow-glow-strong: 0 0 30px rgba(0, 229, 255, 0.6);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-sm {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.text-accent-alt {
    color: var(--accent-alt);
}

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

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

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

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

.font-bold {
    font-weight: 700;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mt-16 {
    margin-top: 4rem;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.bg-darker {
    background-color: var(--bg-darker);
}

.glass {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
}

.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.chip {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.chip-accent {
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent);
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.shadow-glow {
    box-shadow: var(--shadow-glow);
}

.shadow-glow-strong {
    box-shadow: var(--shadow-glow-strong);
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.pre-title {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

.highlight-font {
    font-family: var(--font-hero);
    font-style: italic;
    font-size: 5.5rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-huge {
    padding: 1.2rem 2.5rem;
    font-size: 1.25rem;
    border-radius: 12px;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--bg-darker);
    border: 2px solid var(--accent);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 229, 255, 0.2);
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-glass);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-outline:hover {
    background: rgba(0, 229, 255, 0.1);
    transform: translateY(-2px);
}


/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid var(--border-glass);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

/* Layouts */
.section {
    padding: 8rem 0;
    position: relative;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.map-visual {
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.3);
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--accent);
    animation: pulse 3s infinite;
}

.pin-icon {
    width: 80px;
    height: 80px;
    color: var(--accent);
    animation: float 4s ease-in-out infinite;
}

.stats-badge {
    position: absolute;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.badge-1 {
    top: 20%;
    right: -5%;
}

.badge-2 {
    bottom: 20%;
    left: -5%;
}

.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 6px;
}

.dot.green {
    background: var(--success);
    box-shadow: 0 0 10px var(--success);
}

/* Glow Orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    opacity: 0.5;
    pointer-events: none;
}

.orb-1 {
    top: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(0, 229, 255, 0.2);
}

.orb-2 {
    bottom: 10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: rgba(139, 92, 246, 0.15);
}

.orb-3 {
    top: 20%;
    left: 20%;
    width: 500px;
    height: 500px;
    background: rgba(16, 185, 129, 0.15);
}

/* Problem Section */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.problem-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.icon-wrapper.error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.icon-wrapper.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.highlight-card {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
}

/* Method Section */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 4rem auto 0;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 34px;
    width: 2px;
    background: var(--border-glass);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid var(--accent);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: var(--accent);
    font-family: var(--font-heading);
    z-index: 2;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

.timeline-content {
    margin-left: 3rem;
}

.feature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.result-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid rgba(255, 255, 255, 0.2);
}

.result-box.accent {
    border-left-color: var(--accent);
    background: rgba(0, 229, 255, 0.05);
}

.border-accent {
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.05);
}

/* Telemetry Section */
.terminal-window {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(11, 15, 25, 0.9);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.terminal-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal-dots {
    display: flex;
    gap: 6px;
}

.terminal-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dots span:nth-child(1) {
    background: #ef4444;
}

.terminal-dots span:nth-child(2) {
    background: #eab308;
}

.terminal-dots span:nth-child(3) {
    background: #10b981;
}

.terminal-title {
    margin-left: 15px;
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.terminal-body {
    padding: 2rem;
    font-family: 'Courier New', Courier, monospace;
    min-height: 250px;
    font-size: 1.1rem;
}

.typing-line {
    opacity: 0;
    margin-bottom: 0.8rem;
    height: 0;
    overflow: hidden;
    transition: opacity 0.3s;
}

.typing-line.visible {
    opacity: 1;
    height: auto;
}

.typing-line::after {
    content: '▋';
    animation: blink 1s infinite;
    display: inline-block;
    margin-left: 4px;
    opacity: 0;
}

.typing-line.active::after {
    opacity: 1;
}

.success-line {
    color: var(--success);
    font-weight: bold;
    margin-top: 1.5rem;
}

/* Manifesto */
.text-large {
    font-size: 1.25rem;
}

.manifesto-quote {
    font-family: var(--font-hero);
    font-size: 3.5rem;
    font-style: italic;
    font-weight: 600;
}

.manifesto-quote.highlight {
    color: var(--accent);
}

.manifesto-conclusion {
    padding: 2rem 4rem;
    border-color: rgba(0, 229, 255, 0.3);
}

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

.result-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.result-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.metric {
    display: flex;
    flex-direction: column;
    margin: 1.5rem 0;
}

.metric .value {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric .label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.pricing-card {
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    transform: scale(1.05);
    border-color: var(--accent);
    background: rgba(11, 15, 25, 0.8);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--bg-darker);
    padding: 4px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.plan-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    min-height: 45px;
}

.divider {
    height: 1px;
    background: var(--border-glass);
    margin: 1.5rem 0;
}

.plan-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.plan-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.plan-cta {
    margin-top: auto;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.2;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.5;
    }
}

@keyframes float {

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

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

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Reveal Animations */
.reveal-fadeup {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-fadeleft {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-faderight {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.is-revealed {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Animation Delays */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

.delay-6 {
    transition-delay: 0.6s;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .highlight-font {
        font-size: 4rem;
    }

    .hero-description {
        margin: 0 auto 2.5rem;
    }

    .map-visual {
        max-width: 400px;
        margin: 0 auto;
    }

    .problem-grid,
    .results-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 4rem auto 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 3rem;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }

    .timeline::before {
        left: 24px;
    }

    .timeline-marker {
        left: -10px;
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .timeline-content {
        margin-left: 1.5rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 5rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .highlight-font {
        font-size: 3rem;
    }

    .manifesto-quote {
        font-size: 2.5rem;
    }

    .btn-huge {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }
}

.social-links {
    margin-top: 10px;
}

.social-links a {
    margin: 0 10px;
    color: #00e5ff;
    text-decoration: none;
    font-weight: 500;
}

.social-links a:hover {
    text-decoration: underline;
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    font-size: 28px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-content {
    background: #0f172a;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.popup-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 20px;
    background: #00e5ff;
    color: black;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 22px;
    color: white;
}

.popup-content {
    position: relative;
}

.icon-wrapper {
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}