/* Valkyrie Rater - Global Styles */
:root {
    --primary-bg: #0f172a;    /* Deep Charcoal/Navy */
    --secondary-bg: #1e293b;  /* Lighter Accent Blue */
    --viking-gold: #fbbf24;   /* Action Color */
    --steel-text: #f8fafc;    /* Off-White */
    --muted-text: #94a3b8;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    background-color: var(--primary-bg);
    color: var(--steel-text);
    font-family: var(--font-body);
    margin: 0;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo a {
    color: var(--steel-text);
    text-decoration: none;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 900;
}

.logo span {
    color: var(--viking-gold);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--muted-text);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--viking-gold);
}

.btn-login {
    background: var(--viking-gold);
    color: var(--primary-bg) !important;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
}

.btn-login:hover {
    background: #fff;
    transform: translateY(-2px);
}

/* Footer Styles */
.main-footer {
    background-color: #020617; /* Even darker than the body */
    padding: 4rem 0 1rem 0;
    border-top: 1px solid rgba(251, 191, 36, 0.2); /* Faint Viking Gold Border */
    margin-top: 5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 5%;
}

.footer-col {
    flex: 1;
    min-width: 200px;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: var(--viking-gold);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--muted-text);
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.brand-info .footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
}

.brand-info .tagline {
    margin: 1.5rem 0;
    color: var(--muted-text);
    font-size: 0.9rem;
    max-width: 250px;
}

.security-badges {
    display: flex;
    gap: 15px;
    color: var(--viking-gold);
    font-size: 0.8rem;
    font-weight: bold;
}

.gold-link {
    color: var(--viking-gold) !important;
    font-weight: bold;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
    margin-top: 2rem;
}

.bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 5%;
    font-size: 0.85rem;
    color: var(--muted-text);
}

.legal-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.legal-links a {
    color: var(--muted-text);
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 15px;
    font-size: 1.2rem;
}

.social-links a {
    color: var(--muted-text);
}

.social-links a:hover {
    color: var(--viking-gold);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .bottom-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
/* Hero Styles */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6rem 8% 4rem 8%;
    background: radial-gradient(circle at top right, rgba(251, 191, 36, 0.05), transparent);
    min-height: 80vh;
}

.hero-content { flex: 1; }

.badge {
    background: rgba(251, 191, 36, 0.1);
    color: var(--viking-gold);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    border: 1px solid var(--viking-gold);
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero p {
    font-size: 1.2rem;
    color: var(--muted-text);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.btn-primary {
    background: var(--viking-gold);
    color: var(--primary-bg);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(251, 191, 36, 0.2);
}

.btn-primary:hover {
    background: #fff;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 4rem;
}

.stat {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--muted-text);
}

.stat i { color: var(--viking-gold); margin-right: 8px; }

/* AI Features Grid */
.ai-features { padding: 5rem 8%; background: #0b1121; }

.section-title { text-align: center; margin-bottom: 4rem; }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--secondary-bg);
    padding: 3rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

.feature-card:hover {
    border-color: var(--viking-gold);
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--viking-gold);
    margin-bottom: 1.5rem;
}

/* Data & Table Sections */
.data-section { padding: 5rem 8%; background: #0f172a; }

.table-container { 
    overflow-x: auto; 
    border-radius: 15px; 
    border: 1px solid rgba(251, 191, 36, 0.3);
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--secondary-bg);
    text-align: left;
}

.comparison-table th, .comparison-table td {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.comparison-table th {
    background: rgba(251, 191, 36, 0.05);
    color: var(--viking-gold);
    text-transform: uppercase;
    font-size: 0.8rem;
}

.comparison-table td.highlight { background: rgba(251, 191, 36, 0.05); font-weight: bold; }
.gold-text { color: var(--viking-gold); font-weight: 800; }

/* Stats Grid */
.stats-grid-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem 8% 5rem 8%;
}

.chart-box, .diagram-box {
    background: var(--secondary-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
}

.bar-chart { margin: 2rem 0; }
.bar-group { margin-bottom: 1.5rem; }
.bar { height: 35px; border-radius: 5px; display: flex; align-items: center; padding-left: 15px; font-weight: bold; font-size: 0.8rem; transition: 1s ease-in-out; }

.label { display: block; margin-bottom: 5px; font-size: 0.8rem; color: var(--muted-text); }

/* Diagram Placeholder Styles */
.diagram-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
}

.node.central {
    background: var(--viking-gold);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 900;
    box-shadow: 0 0 20px var(--viking-gold);
}

.node-branch { display: flex; gap: 1rem; }
.node-branch span {
    background: rgba(255,255,255,0.05);
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 0.8rem;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

/* Pricing & Market Table */
.pricing-section { padding: 5rem 8%; background: #0b1121; }

.pricing-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.pricing-card.featured {
    background: var(--secondary-bg);
    border: 2px solid var(--viking-gold);
    border-radius: 15px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.1);
}

.card-header h3 { color: var(--viking-gold); margin-bottom: 1rem; }
.price { font-size: 3rem; font-weight: 900; color: #fff; }
.price span { font-size: 1rem; color: var(--muted-text); }

.card-body ul { list-style: none; padding: 2rem 0; }
.card-body li { margin-bottom: 1rem; font-size: 0.95rem; color: var(--steel-text); }
.card-body li i { color: var(--viking-gold); margin-right: 10px; }

/* Market Comparison Table */
.market-table-box {
    background: rgba(255,255,255,0.02);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
}

.market-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
}

.market-table th { text-align: left; color: var(--muted-text); padding: 1rem; font-size: 0.8rem; text-transform: uppercase; }
.market-table td { padding: 1.2rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.05); }

.valkyrie-row { background: rgba(251, 191, 36, 0.1); }
.valkyrie-row td { border-bottom: none; }

.savings-alert {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(34, 197, 94, 0.1);
    color: #4ade80;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

/* Mobile Adjust */
@media (max-width: 992px) {
    .pricing-container { grid-template-columns: 1fr; }
}
/* About Page Specifics */
.about-hero {
    padding: 8rem 8% 4rem 8%;
    text-align: center;
    background: linear-gradient(to bottom, #0f172a, #0b1121);
}

.about-hero h1 { font-size: 3.5rem; margin-top: 1rem; }
.lead-text { font-size: 1.3rem; color: var(--muted-text); max-width: 800px; margin: 2rem auto; }

.mission-section { padding: 5rem 8%; }
.mission-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text h2 { color: var(--viking-gold); margin-bottom: 2rem; font-size: 2rem; }
.mission-text p { margin-bottom: 1.5rem; color: var(--steel-text); font-size: 1.1rem; }

.quote-box {
    border-left: 4px solid var(--viking-gold);
    padding: 2rem;
    background: rgba(251, 191, 36, 0.05);
    margin-top: 3rem;
}

.quote-box p { font-style: italic; font-size: 1.2rem; color: #fff; }
.quote-box cite { color: var(--viking-gold); font-weight: 700; display: block; margin-top: 1rem; }
.quote-box cite span { font-weight: 300; font-size: 0.8rem; color: var(--muted-text); }

.mission-stats { display: flex; flex-direction: column; gap: 2rem; }
.m-stat {
    background: var(--secondary-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
}
.m-stat h4 { font-size: 2.5rem; color: var(--viking-gold); margin-bottom: 0.5rem; }
.m-stat p { font-size: 0.9rem; color: var(--muted-text); }

.pillars { padding: 5rem 8%; background: #020617; text-align: center; }
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.pillar-card {
    padding: 3rem 2rem;
    background: var(--primary-bg);
    border-radius: 15px;
    transition: 0.3s;
}

.pillar-card:hover { transform: translateY(-5px); border: 1px solid var(--viking-gold); }
.pillar-card i { font-size: 3rem; color: var(--viking-gold); margin-bottom: 1.5rem; }
/* Contact Page Styling */
.contact-hero { padding: 8rem 8% 3rem 8%; text-align: center; }
.contact-container { padding: 2rem 8% 6rem 8%; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info-box {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.info-item { display: flex; gap: 1.5rem; align-items: flex-start; }
.info-item i { font-size: 1.8rem; color: var(--viking-gold); margin-top: 5px; }
.info-item h4 { color: #fff; margin-bottom: 0.3rem; }
.info-item p { color: var(--muted-text); font-size: 0.95rem; }

.contact-form-box {
    background: var(--secondary-bg);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
}

.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-size: 0.9rem; color: var(--viking-gold); font-weight: 600; }

.v-form input, .v-form select, .v-form textarea {
    width: 100%;
    padding: 0.8rem;
    background: var(--primary-bg);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 5px;
    font-family: var(--font-body);
}

.v-form input:focus { border-color: var(--viking-gold); outline: none; }

.alert { padding: 1rem; border-radius: 5px; margin-bottom: 2rem; text-align: center; font-weight: bold; }
.alert.success { background: rgba(34, 197, 94, 0.2); color: #4ade80; border: 1px solid #4ade80; }
.alert.error { background: rgba(239, 68, 68, 0.2); color: #f87171; border: 1px solid #f87171; }

.w-100 { width: 100%; cursor: pointer; border: none; }
/* Auth Container - Split Screen */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #020617;
}

.auth-split {
    display: flex;
    width: 100%;
    max-width: 1400px;
    height: 800px;
    background: var(--secondary-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 50px 100px rgba(0,0,0,0.5);
}

.auth-info {
    flex: 1;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(251, 191, 36, 0.1);
}

.auth-info h1 { font-size: 3rem; margin-bottom: 2rem; }
.auth-features { list-style: none; padding: 0; margin-bottom: 3rem; }
.auth-features li { margin-bottom: 1.5rem; color: var(--muted-text); font-size: 1.1rem; }
.auth-features i { color: var(--viking-gold); margin-right: 15px; }

.auth-form-side {
    flex: 1;
    padding: 4rem;
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-wrapper { width: 100%; max-width: 400px; }
.form-header { margin-bottom: 2.5rem; }
.form-header h2 { font-size: 2rem; color: #fff; }
.form-header p { color: var(--muted-text); }

.input-icon { position: relative; }
.input-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--viking-gold);
}
.input-icon input { padding-left: 45px !important; }

.auth-link { text-align: center; margin-top: 1.5rem; color: var(--muted-text); font-size: 0.9rem; }
.auth-link a { color: var(--viking-gold); text-decoration: none; font-weight: bold; }

/* Responsive View */
@media (max-width: 992px) {
    .auth-info { display: none; }
    .auth-split { height: auto; margin: 2rem; }
}