@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;600;700&family=Share+Tech+Mono&display=swap');

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

:root {
    --bg: #06080d;
    --surface: #0d1117;
    --border: #1a2332;
    --text: #c9d1d9;
    --text-dim: #4a5568;
    --accent: #00ffd5;
    --accent-glow: rgba(0, 255, 213, 0.15);
    --accent-dim: rgba(0, 255, 213, 0.6);
    --grid-color: rgba(0, 255, 213, 0.04);
}

body {
    font-family: 'Share Tech Mono', monospace;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 2rem 0;
    position: relative;
}

/* Grid background */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 48px 48px;
    z-index: 0;
}

/* Scanlines */
body::after {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.015) 2px,
        rgba(0, 0, 0, 0.015) 4px
    );
    pointer-events: none;
    z-index: 9999;
}

.container {
    max-width: 700px;
    width: 90%;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

/* Back link */
.back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    transition: all 0.3s;
    letter-spacing: 0.05em;
}
.back:hover {
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-glow);
}

/* Page header */
.page-header {
    text-align: center;
    margin-bottom: 1rem;
}
.page-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px var(--accent-glow);
}
.page-header h1 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-dim), transparent);
    margin: 2rem auto;
    width: 60%;
    opacity: 0.3;
}

/* Content */
.content {
    text-align: center;
}
.content > p {
    color: var(--text);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* Highlight cards */
.highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.highlight-card {
    background: var(--surface);
    border-radius: 4px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.35s ease;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.highlight-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.35s ease;
}
.highlight-card:hover::before {
    transform: scaleX(1);
}
.highlight-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--accent-glow);
}
.highlight-card i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 0.8rem;
    text-shadow: 0 0 10px var(--accent-glow);
}
.highlight-card h3 {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.8rem;
    color: #fff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.highlight-card p {
    font-size: 0.78rem;
    color: var(--text-dim);
    line-height: 1.5;
}

/* Story section */
.story {
    background: var(--surface);
    border-radius: 4px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: left;
    border: 1px solid var(--border);
    border-left: 2px solid var(--accent);
}
.story p {
    color: var(--text);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}
.story p:first-child {
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Chakra Petch', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.story p:last-child { margin-bottom: 0; }

/* Skool link */
.skool-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: var(--surface);
    border: 1px solid var(--accent);
    border-radius: 4px;
    color: var(--accent);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Share Tech Mono', monospace;
    transition: all 0.35s ease;
    letter-spacing: 0.05em;
}
.skool-link:hover {
    background: var(--accent);
    color: var(--bg);
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--accent-glow);
}

/* Contact icons */
.contact-links {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}
.contact-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 4px;
    background: var(--surface);
    color: var(--text-dim);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.35s ease;
    border: 1px solid var(--border);
}
.contact-links a:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
}

/* Mobile */
@media (max-width: 500px) {
    .page-header h1 { font-size: 1.5rem; }
    .highlights { grid-template-columns: 1fr; }
    .highlight-card { padding: 1.2rem; }
}
