/*
    Drip Website Styles: Professional & Slick Blueprint
    Palette:
    --charcoal: #101014;
    --blue-accent: #00BFFF;
    --white-text: #F5F5F5;
    --glass-overlay: rgba(255, 255, 255, 0.05);
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

:root {
    --charcoal: #101014;
    --blue-accent: #00BFFF;
    --white-text: #F5F5F5;
    --glass-overlay: rgba(255, 255, 255, 0.05);
}

/* Global Reset and Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--charcoal);
    color: var(--white-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Aileron', sans-serif;
    text-transform: uppercase;
    color: var(--white-text);
    letter-spacing: 2px;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

a {
    color: var(--blue-accent);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--white-text);
}

/* Header and Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    border-bottom: 1px solid rgba(0, 191, 255, 0.1); /* Subtle Blue Line */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(16, 16, 20, 0.9); /* Slight transparency */
    backdrop-filter: blur(5px);
}

.logo {
    font-family: 'Aileron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white-text);
    letter-spacing: 4px;
    /* Optional: Small blue dot for slick look */
    &::after {
        content: '.';
        color: var(--blue-accent);
        font-size: 2rem;
        position: relative;
        left: -3px;
    }
}

nav a {
    margin-left: 2.5rem;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 0.2rem;
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--blue-accent);
}

.btn-login {
    border: 1px solid var(--blue-accent);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin-left: 3rem;
    transition: background-color 0.3s, color 0.3s;
}

.btn-login:hover {
    background-color: var(--blue-accent);
    color: var(--charcoal);
}

/* Sections */
.section-padded {
    padding: 8rem 5%;
}

/* I. Hero Section Styling */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    padding-top: 10rem;
}

.hero-content {
    max-width: 45%;
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(245, 245, 245, 0.7);
    margin-bottom: 2.5rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--blue-accent);
    color: var(--charcoal);
    padding: 1rem 3rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.5); /* Blue glow */
}

.cta-button:hover {
    background-color: #33ccff; 
    transform: translateY(-2px);
    color: var(--charcoal);
}

/* Visual Mockup - High-Gloss 3D Crosshair Placeholder */
.hero-visual {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.crosshair-mockup {
    width: 400px;
    height: 400px;
    border: 3px solid var(--blue-accent);
    border-radius: 50%;
    position: relative;
    opacity: 0.8;
    background: linear-gradient(45deg, rgba(0, 191, 255, 0.1), rgba(0, 191, 255, 0.02));
    animation: pulseGlow 4s infinite alternate;
}

.crosshair-mockup::before, .crosshair-mockup::after {
    content: '';
    position: absolute;
    background-color: var(--blue-accent);
    opacity: 0.8;
}

.crosshair-mockup::before { /* Vertical line */
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.crosshair-mockup::after { /* Horizontal line */
    height: 2px;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 10px var(--blue-accent), 0 0 20px var(--blue-accent) inset; }
    100% { box-shadow: 0 0 20px var(--blue-accent), 0 0 30px var(--blue-accent) inset; }
}


/* II. Feature Grid and Glassmorphism */
.feature-grid {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    padding-top: 2rem;
}

.glass-panel {
    background: var(--glass-overlay); /* Translucent dark panels */
    backdrop-filter: blur(15px); /* The Glassmorphism effect */
    border: 1px solid rgba(0, 191, 255, 0.3); /* Thin blue border */
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.glass-panel:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 191, 255, 0.2);
}

.feature-card {
    flex-basis: 30%;
    max-width: 350px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: rgba(245, 245, 245, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.icon-blue {
    font-size: 2.5rem;
    color: var(--blue-accent);
}

.data-line {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: rgba(0, 191, 255, 0.7);
    margin-top: 0.2rem;
}

/* III. Pricing Table Styling */
.pricing-table {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.pricing-card {
    flex-basis: 25%;
    max-width: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--blue-accent);
}

.price {
    font-family: 'Aileron', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--blue-accent);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.pricing-card p {
    color: rgba(245, 245, 245, 0.8);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-card li {
    padding: 0.5rem 0;
    color: var(--white-text);
    font-size: 0.95rem;
}

.pricing-card .icon-blue {
    font-size: 0.8rem;
    margin-right: 0.5rem;
}

.pricing-card.premium {
    border: 3px solid var(--blue-accent);
    box-shadow: 0 0 25px rgba(0, 191, 255, 0.4);
    transform: scale(1.05); /* Highlight the premium tier */
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 5%;
    border-top: 1px solid rgba(0, 191, 255, 0.1);
    font-size: 0.85rem;
    color: rgba(245, 245, 245, 0.6);
}

.footer-links {
    margin: 1rem 0;
}

.footer-links a {
    margin: 0 1rem;
    color: rgba(245, 245, 245, 0.6);
}

.footer-links a:hover {
    color: var(--blue-accent);
}

.system-log {
    margin-top: 1rem;
    font-family: 'Inter', monospace;
    color: rgba(0, 191, 255, 0.5);
    font-size: 0.75rem;
}