:root {
    --bg: #0f172a;
    --card-bg: #1e293b;
    --accent: #eab308;
    --text: #f8fafc;
    --text-dim: #94a3b8;
    --white: #ffffff;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, .logo {
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
}

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

/* Header & Nav */
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
}

.hero-content .accent {
    color: var(--accent);
}

.hero-content p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-dim);
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent);
    color: #000;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
    transition: transform 0.3s, background-color 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background-color: #facc15;
}

.btn-secondary {
    display: inline-block;
    border: 2px solid var(--text);
    color: var(--text);
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
    margin-left: 20px;
    transition: background 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background-color: var(--text);
    color: var(--bg);
}

/* Pillars */
.pillar {
    padding: 100px 0;
}

.pillar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.label {
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.pillar-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.pillar-text p {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 30px;
}

.pillar-text ul {
    list-style: none;
}

.pillar-text li {
    margin-bottom: 15px;
    font-weight: 600;
}

.pillar-image {
    height: 500px;
    background-color: var(--card-bg);
    border-radius: 12px;
    background-size: cover;
    background-position: center;
}

.physical-bg {
    background-image: url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?auto=format&fit=crop&w=800&q=80');
}

.mental-bg {
    background-image: url('https://images.unsplash.com/photo-1506126613408-eca07ce68773?auto=format&fit=crop&w=800&q=80');
}

.reverse .pillar-grid {
    direction: rtl;
}

.reverse .pillar-text {
    direction: ltr;
}

/* About */
.about {
    padding: 100px 0;
    background-color: #0a0f1d;
}

.about-card {
    background-color: var(--card-bg);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.founder-img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--accent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.about-card h2 {
    margin-bottom: 30px;
}

.about-card p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 1.2rem;
    color: var(--text-dim);
}

/* Newsletter */
.newsletter {
    padding: 120px 0;
    text-align: center;
}

.newsletter h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.newsletter form {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.newsletter input {
    padding: 16px 20px;
    width: 300px;
    border-radius: 4px;
    border: none;
    background: var(--card-bg);
    color: white;
}

/* Footer */
footer {
    padding: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    color: var(--text-dim);
}

.footer-note {
    margin-top: 10px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 3rem; }
    .pillar-grid { grid-template-columns: 1fr; gap: 40px; }
    .nav-links { display: none; }
    .hero-btns { display: flex; flex-direction: column; gap: 15px; }
    .btn-secondary { margin-left: 0; }
}

/* Guides Section */
.guides-section {
    padding: 100px 0;
    background: #1a1a1a;
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: white;
}

.section-header p {
    color: #ccc;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.guide-card {
    background: #252525;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
    border: 1px solid #333;
}

.guide-card:hover {
    transform: translateY(-10px);
    border-color: #ff3e3e;
}

.guide-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.guide-card h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
}

.guide-card p {
    color: #bbb;
}

.status-tag {
    display: inline-block;
    margin-top: 20px;
    padding: 6px 15px;
    background: #ff3e3e;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: white;
    letter-spacing: 1px;
}

.status-tag.soon {
    background: #444;
}

.guide-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.beehiiv-form-container {
    width: 100%;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    background-color: #0f172a; /* Force matching background */
}

.beehiiv-embed {
    width: 100% !important;
    max-width: 480px !important; /* Slightly narrower to prevent edge-peeking */
    height: 220px !important;
    border: none !important;
}
