:root {
    /* Brand Colors */
    --bg-color: #0A0A0B; /* Back to standard dark mode */
    --text-main: #FFFFFF;
    --text-muted: #A1A1AA;
    --text-dark: #71717A;
    --accent-blue: #007AFF;
    --accent-purple: #8A2BE2;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(10, 10, 11, 0.85);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 1.1rem;
}

/* Ambient Background Gradient */
.ambient-background {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 30%, rgba(138, 43, 226, 0.1), transparent 40%),
                radial-gradient(circle at 80% 80%, rgba(0, 122, 255, 0.08), transparent 40%);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px; /* Wider for 2-column layout */
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border-radius: 6px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--text-main);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--text-main);
    color: var(--bg-color);
}

.btn-primary:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    padding: 110px 0 0px;
    text-align: center;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #00C6FF, #0072FF, var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* High Impact Sections */
.impact-section {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 150px 0;
}

.massive-text {
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2.5px;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.supporting-text {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    color: var(--text-muted);
    max-width: 800px;
    line-height: 1.6;
}

.magazine-section {
    padding: 60px 0 80px;
}

.magazine-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.magazine-sidebar {
    position: sticky;
    top: 120px;
}

.magazine-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-main);
    line-height: 1.1;
}

.magazine-subtitle {
    color: var(--accent-purple);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: block;
}

.magazine-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.editorial-block {
    border-left: 1px solid var(--card-border);
    padding-left: 2.5rem;
}

.editorial-hook {
    font-size: 1.75rem;
    font-weight: 300;
    line-height: 1.4;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.editorial-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Blueprint Grid */
.blueprint-section {
    padding: 100px 0;
}

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

.blueprint-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    transition: transform 0.4s ease, background 0.4s ease;
}

.blueprint-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
}

.blueprint-step {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    display: block;
}

.blueprint-title {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.blueprint-desc {
    color: #AAAAAA;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* KinConnect Showcase */
.showcase-section {
    padding: 80px 0 120px;
    text-align: center;
}

.app-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 32px;
    padding: 5rem 3rem;
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    display: block;
    max-width: 600px;
    margin: 0 auto;
}

.app-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    background: #FF6B6B;
    filter: blur(100px);
    opacity: 0.1;
    transform: translate(-50%, -50%);
    transition: opacity 0.5s ease;
    z-index: 1;
}

.app-card-content {
    position: relative;
    z-index: 2;
}

.app-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,255,255,0.25);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.app-card:hover .app-card-glow {
    opacity: 0.25;
}

.app-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    overflow: hidden;
}

.app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

/* Call to Action */
.cta-section {
    padding: 100px 0;
    text-align: center;
    border-top: 1px solid var(--card-border);
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    border-top: 1px solid var(--card-border);
    padding: 4rem 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-address {
    margin-top: 0.5rem;
    font-size: 0.85rem !important;
    opacity: 0.5;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-main);
}

@media (max-width: 768px) {
    .magazine-grid { grid-template-columns: 1fr; gap: 2rem; }
    .magazine-sidebar { position: relative; top: 0; }
    .editorial-block { border-left: none; padding-left: 0; }
    
    /* Simplify nav on mobile to just the primary app button */
    .nav-links { display: flex; gap: 0.5rem; }
    .nav-links a[href="#vision"], .nav-links a[href^="mailto:"] { display: none !important; }
    .nav-links a { font-size: 0.85rem; padding: 0.4rem 0.8rem !important; }
    
    /* Adjust Hero for smaller screens */
    .hero { padding: 120px 0 40px; }
    .hero-title { font-size: 2.5rem; letter-spacing: -1px; }
    .hero-subtitle { font-size: 1.1rem; }
    
    /* Adjust App Cards for mobile */
    .app-title { font-size: 2.2rem; }
    .app-card { padding: 3rem 1.5rem; }
    .app-icon { width: 60px; height: 60px; }
    
    /* Adjust Blueprint Cards */
    .blueprint-card { padding: 2rem 1.5rem; }
    
    /* Center the footer */
    .footer-container { flex-direction: column; align-items: center; text-align: center; }
    .footer-links { flex-direction: column; gap: 1rem; }
}
