/* DEAN_ITC GLOBAL STYLES */
:root {
    --bg-color: #050505;
    --card-bg: #111111;
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --accent-cyan: #00e5ff;
    --accent-hover: #00b2cc;
    --font-body: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-tech: 'Courier New', Courier, monospace;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    
    margin: 0 auto;
    padding: 20px;
}

/* --- LAYOUT UTILITIES --- */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
}

/* --- TYPOGRAPHY (Works for Privacy Policy too) --- */
h1 {
    font-family: var(--font-tech);
    color: var(--accent-cyan);
    border-bottom: 2px solid var(--accent-cyan);
    padding-bottom: 15px;
    margin-bottom: 25px;
    font-size: 2rem;
    letter-spacing: -1px;
    text-transform: uppercase;
}

h2 {
    color: #ffffff;
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
}

p {
    margin-bottom: 15px;
    color: var(--text-muted);
}

strong {
    color: #ffffff;
}

ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
    color: var(--text-muted);
}

/* Highlight class used in Privacy Policy */
.highlight {
    color: var(--accent-cyan);
    font-weight: bold;
    font-family: var(--font-tech);
}

a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px var(--accent-cyan);
}

/* --- LANDING PAGE SPECIFIC --- */
.hero {
    text-align: center;
    padding: 60px 0;
    border-bottom: 1px solid #222;
}

.app-icon {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 2px solid #333;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.1);
}

.tagline {
    font-family: var(--font-tech);
    color: var(--accent-cyan);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.sub-tagline {
    font-size: 0.9rem;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.btn {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    padding: 12px 30px;
    font-family: var(--font-tech);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    cursor: pointer;
}

.btn:hover {
    background: var(--accent-cyan);
    color: #000;
    box-shadow: 0 0 15px var(--accent-cyan);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.card {
    background: var(--card-bg);
    padding: 20px;
    border: 1px solid #222;
    border-radius: 8px;
}

.card h3 {
    color: #fff;
    margin-bottom: 10px;
    font-family: var(--font-tech);
}

footer {
    margin-top: auto;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #222;
    font-size: 0.8rem;
    color: #666;
}
