:root {
    --color-orange-light: #F9AB00;
    --color-orange: #E37400;
    --color-orange-dark: #C26300;
    --color-blue: #1A73E8;
    --color-blue-light: #8AB4F8;

    --color-bg: #040608;
    --color-bg-surface: #0a0e14;
    --color-bg-panel: rgba(16, 22, 30, 0.6);
    --color-text-main: #F3F4F6;
    --color-text-muted: #9CA3AF;
    --color-border: rgba(255, 255, 255, 0.1);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

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

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

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

a {
    text-decoration: none;
    color: inherit;
}

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

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

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

.mx-auto {
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: fit-content;
}

.text-gradient {
    background: linear-gradient(90deg, var(--color-orange-light), var(--color-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-blue {
    color: var(--color-blue-light);
}

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

.glass-panel {
    background: var(--color-bg-panel);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.accent-border {
    position: relative;
    overflow: hidden;
}

.accent-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-orange), var(--color-blue));
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(4, 6, 8, 0.8);
    backdrop-filter: blur(12px);
    z-index: 100;
    border-bottom: 1px solid var(--color-border);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    display: flex;
    flex-direction: column;
    line-height: 1;
    justify-content: center;
}

.logo-ga {
    color: var(--color-blue);
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

.logo-sub {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--color-text-main);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--color-orange);
    color: #fff;
    border: none;
    box-shadow: 0 4px 14px rgba(227, 116, 0, 0.4);
}

.btn-primary:hover {
    background: var(--color-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 116, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text-main);
    border: 1px solid var(--color-border);
}

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

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
}

.hero-bg-anim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--color-bg) 100%), linear-gradient(to bottom, transparent 60%, var(--color-bg) 100%);
    pointer-events: none;
}

#flowCanvas {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(26, 115, 232, 0.15);
    border: 1px solid rgba(26, 115, 232, 0.3);
    color: var(--color-blue-light);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
    max-width: 650px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    border-top: 1px solid var(--color-border);
    padding-top: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.stat-dot {
    width: 8px;
    height: 8px;
    background: var(--color-blue-light);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-blue-light);
}

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

.section-header {
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.tag-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.problem-box {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8), rgba(10, 10, 10, 0.9));
}

.problem-box h3,
.solution-box h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.number-list {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.num-tag {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-muted);
}

.highlight-callout {
    background: rgba(227, 116, 0, 0.1);
    border-left: 3px solid var(--color-orange);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin-top: 2rem;
}

.highlight-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-main);
    margin: 0;
}

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

.feature-card {
    background: var(--color-bg-surface);
    border: 1px solid var(--color-border);
    padding: 2rem;
    border-radius: 12px;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: rgba(227, 116, 0, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.line-bold::before {
    content: '';
    width: 30px;
    height: 6px;
    background: var(--color-orange);
    border-radius: 3px;
}

.line-thin::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--color-orange-light);
    border-radius: 1px;
}

.bg-red {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.2);
}

.bg-green {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.bg-gold {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.cross {
    color: #f44336;
    font-size: 1.5rem;
    font-weight: bold;
}

.check {
    color: #4CAF50;
    font-size: 1.5rem;
    font-weight: bold;
}

.dollar {
    color: #FFD700;
    font-size: 1.5rem;
    font-weight: bold;
}

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.insight-banner {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(90deg, rgba(26, 115, 232, 0.1), rgba(227, 116, 0, 0.1));
    border-left: 4px solid var(--color-orange);
}

.insight-banner p {
    font-size: 1.25rem;
}

.compare-block {
    margin: 2rem 0;
}

.instead-of {
    opacity: 0.6;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 2px solid var(--color-text-muted);
}

.you-can-see {
    padding-left: 1.5rem;
    border-left: 2px solid var(--color-blue);
}

.label {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.instead-of p {
    font-size: 1.25rem;
    font-style: italic;
}

.you-can-see ul {
    list-style: none;
}

.you-can-see li {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.you-can-see li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-blue);
    font-weight: bold;
}

.finale-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.1), rgba(26, 115, 232, 0.02));
    border: 1px solid rgba(26, 115, 232, 0.3);
    border-radius: 16px;
    overflow: hidden;
}

.pulse-ring {
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(227, 116, 0, 0.2);
    border-radius: 50%;
    z-index: 0;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(227, 116, 0, 0.7);
    }

    70% {
        transform: scale(2);
        box-shadow: 0 0 0 30px rgba(227, 116, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(227, 116, 0, 0);
    }
}

.conclusion {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    line-height: 1.4;
    padding: 2rem;
}

.footer {
    padding: 6rem 0 2rem;
    background: #020304;
    border-top: 1px solid var(--color-border);
}

.footer h2 {
    font-size: 2.5rem;
}

.vision {
    font-size: 2rem;
    background: linear-gradient(90deg, var(--color-blue-light), var(--color-orange-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 2rem 0 3rem;
}

.footer-bottom {
    margin-top: 6rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

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

.footer-legal a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

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

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

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

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

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

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

    .section {
        padding: 5rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .hero {
        padding-top: 8rem;
    }

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

    .hero-subtitle {
        font-size: 1.15rem;
        margin-bottom: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        padding-top: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .navbar {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .navbar .btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .section-header h2 {
        font-size: 2.4rem;
    }

    .glass-panel {
        padding: 1.5rem;
    }

    .problem-box h3,
    .solution-box h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .highlight-callout {
        padding: 1.25rem;
        margin-top: 1.5rem;
    }

    .highlight-text {
        font-size: 1.1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .insight-banner p {
        font-size: 1.1rem;
    }

    .instead-of p {
        font-size: 1.1rem;
    }

    .you-can-see li {
        font-size: 1rem;
    }

    .conclusion {
        font-size: 1.25rem;
        padding: 1.5rem;
    }

    .finale-card {
        min-height: 250px;
    }

    .footer {
        padding: 5rem 0 2rem;
    }

    .footer h2 {
        font-size: 2rem;
    }

    .vision {
        font-size: 1.5rem;
        margin: 1.5rem 0 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        margin-top: 4rem;
    }

    .footer-legal {
        justify-content: center;
    }
}

/* Auth & Pricing Page Styles */
.auth-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem 0;
}

.auth-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.auth-logo {
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease forwards;
}

.auth-logo .logo-icon {
    width: 44px;
    height: 44px;
}

.auth-logo .logo-text {
    font-size: 2rem;
}

.auth-logo .logo-ga {
    font-size: 1.05rem;
    margin-top: 0.28rem;
}

.auth-box {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    padding: 3rem;
    transition: all 0.4s ease;
}

.auth-box h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.auth-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    background: #fff;
    color: #3c4043;
    border: 1px solid #dadce0;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-google:hover {
    background: #f8f9fa;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-google.loading {
    color: transparent;
    pointer-events: none;
    position: relative;
}

.btn-google.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid #dadce0;
    border-top-color: #1A73E8;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.google-icon {
    width: 24px;
    height: 24px;
}

.auth-footer {
    margin-top: 2rem;
    font-size: 0.85rem;
}

.pricing-container {
    width: 100%;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    padding: 3rem;
}

.plan-header {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.plan-header h3 {
    font-size: 1.8rem;
    color: var(--color-blue);
    margin-bottom: 1rem;
}

.pricing-card.accent-border h3 {
    color: var(--color-orange);
}

.price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.amount {
    font-size: 4rem;
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1;
}

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

.trial-tag {
    display: inline-block;
    background: rgba(76, 175, 80, 0.15);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.plan-features .check {
    color: #4CAF50;
    font-weight: bold;
}

.plan-disclaimer {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin-top: 1rem;
    margin-bottom: 0;
}

.w-100 {
    width: 100%;
}

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

.mt-auto {
    margin-top: auto;
}

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

.pricing-footer {
    width: 100%;
    margin-top: 4rem;
    color: var(--color-text-muted);
}

.benefits-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    border-top: 1px solid var(--color-border);
    padding-top: 2rem;
    font-size: 0.95rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefit-item .icon {
    font-size: 1.2rem;
}

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

    .auth-box {
        padding: 2rem 1.5rem;
    }

    .pricing-card {
        padding: 2rem;
    }
}

.indie-disclaimer {
    margin-top: 5rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    max-width: 400px;
    line-height: 1.5;
}

.indie-disclaimer strong {
    color: var(--color-text-main);
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
}
