/* =================================================================
   NAMEONE STUDIOS - PITCH DECK SITE
   Theme: GOLD (Pitch/Sales)
   
   Brand Color System:
   - Gold = Pitch/Sales Site (pitchdeck.nameonestudios.com)
   - Green = Public Website (nameonestudios.com)
   - Blue = Internal Tools (ccw.nameonestudios.com)
   ================================================================= */

:root {
    /* Gold Theme */
    --gold-primary: #d4af37;
    --gold-light: #f4d03f;
    --gold-dark: #b8960c;
    --gold-accent: #ffd700;
    --gold-muted: #c9a227;
    
    /* Dark Background */
    --bg-primary: #0a0a0a;
    --bg-secondary: #141414;
    --bg-card: #1a1a1a;
    --bg-elevated: #222222;
    
    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #707070;
    
    /* Borders */
    --border-subtle: #2a2a2a;
    --border-gold: rgba(212, 175, 55, 0.3);
    
    /* Shadows */
    --shadow-gold: 0 0 40px rgba(212, 175, 55, 0.15);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* =================================================================
   BASE STYLES
   ================================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Ambient glow effect */
.ambient-glow {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* =================================================================
   TYPOGRAPHY
   ================================================================= */

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.gold-text {
    color: var(--gold-primary);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* =================================================================
   NAVIGATION
   ================================================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-gold);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    text-decoration: none;
}

.logo-name {
    color: var(--text-primary);
}

.logo-one {
    color: var(--gold-primary);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.logo-studios {
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 0.9em;
    color: var(--gold-primary);
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* =================================================================
   HERO SECTION
   ================================================================= */

.hero {
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--border-gold);
}

/* =================================================================
   MODEL SECTION
   ================================================================= */

.model-section {
    padding: 100px 0;
    background: var(--bg-secondary);
    position: relative;
    z-index: 1;
}

.model-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.model-box {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 2rem;
    width: 320px;
    transition: all 0.3s ease;
}

.model-box:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.model-box h3 {
    font-size: 1.1rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.model-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.model-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: var(--bg-secondary);
    border-radius: 8px;
    font-size: 0.95rem;
}

.item-icon {
    font-size: 1.2rem;
}

.customer-box {
    border-color: var(--border-gold);
}

.model-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gold-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.arrow-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary), var(--gold-dark));
    position: relative;
}

.arrow-line::after {
    content: '→';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-primary);
    font-size: 1.2rem;
}

.model-note {
    text-align: center;
    padding: 1rem 2rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    max-width: 500px;
    margin: 2rem auto 0;
    color: var(--text-secondary);
}

.model-note strong {
    color: var(--gold-primary);
}

/* =================================================================
   VERTICALS SECTION
   ================================================================= */

.verticals-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.verticals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.vertical-card {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vertical-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary), var(--gold-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vertical-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.vertical-card:hover::before {
    opacity: 1;
}

.vertical-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.vertical-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.vertical-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.vertical-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.vertical-tags span {
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 100px;
    font-size: 0.75rem;
    color: var(--gold-primary);
    font-weight: 500;
}

.card-cta {
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.vertical-card:hover .card-cta {
    color: var(--gold-light);
}

/* =================================================================
   TECHNOLOGY SECTION
   ================================================================= */

.technology-section {
    padding: 100px 0;
    background: var(--bg-secondary);
    position: relative;
    z-index: 1;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.tech-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.tech-card:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.tech-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.2);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.tech-card h3 {
    color: var(--gold-primary);
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

.tech-name {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1rem !important;
}

.tech-card > p:last-of-type {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.patent-badge {
    display: inline-block;
    margin-top: 1rem;
    padding: 6px 12px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--gold-muted);
    font-weight: 500;
}

/* =================================================================
   PROOF SECTION
   ================================================================= */

.proof-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

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

.proof-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.proof-card:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.proof-metric {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.proof-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.proof-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.proof-link {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.proof-link-OLD:hover {
    color: var(--gold-light);
}

/* =================================================================
   CTA SECTION
   ================================================================= */

.cta-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: var(--text-primary);
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
    color: var(--bg-primary);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--gold-primary);
    border: 1px solid var(--gold-primary);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

/* =================================================================
   FOOTER
   ================================================================= */

.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: 60px 0 30px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.footer-location {
    font-size: 0.9rem;
}

.footer-links h4 {
    color: var(--gold-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.confidential {
    color: var(--gold-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* =================================================================
   RESPONSIVE
   ================================================================= */

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-divider {
        width: 50px;
        height: 1px;
    }
    
    .model-diagram {
        flex-direction: column;
    }
    
    .model-arrow {
        transform: rotate(90deg);
    }
    
    .model-box {
        width: 100%;
        max-width: 400px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.logo-studios {
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 0.85em;
    margin-left: 2px;
}
