/* Vespara Product Page Styles */
/* Celestial Luxury - Deep Purple/Lavender Palette */

:root {
    /* Vespara Night Palette */
    --vespara-void: #1A1523;        /* Main Scaffold Background (Deep Grape/Slate) */
    --vespara-tile: #2D2638;        /* Card/Tile Surfaces (Lighter Plum) */
    --vespara-starlight: #E0D8EA;   /* Primary Text & Active Icons (Pale Lavender) */
    --vespara-moonlight: #9D85B1;   /* Secondary Text & Subtitles (Muted Purple) */
    --vespara-glow: rgba(191, 166, 216, 0.2); /* Glassmorphism & Borders */
    --vespara-glow-solid: #BFA6D8;
    
    /* TAGS Consent Colors */
    --consent-green: #4CAF50;
    --consent-yellow: #FFC107;
    --consent-red: #D32F2F;
    
    /* Heat Colors */
    --heat-mild: #FFB6C1;
    --heat-medium: #FF6B35;
    --heat-hot: #FF4444;
    --heat-nuclear: #9C27B0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, var(--vespara-void) 0%, #120f18 100%);
    color: var(--vespara-starlight);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Cinzel', serif;
    letter-spacing: 1.2px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(26, 21, 35, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--vespara-glow);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--vespara-starlight);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.nav-logo:hover {
    opacity: 1;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--vespara-moonlight);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--vespara-glow-solid);
}

.nav-cta {
    background: linear-gradient(135deg, var(--vespara-moonlight) 0%, var(--vespara-glow-solid) 100%) !important;
    color: var(--vespara-void) !important;
    padding: 10px 24px;
    border-radius: 24px;
    font-weight: 600;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 40px 80px;
    position: relative;
    overflow: hidden;
}

.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--vespara-glow-solid);
    top: -150px;
    right: -150px;
}

.shape-2 {
    width: 350px;
    height: 350px;
    background: var(--vespara-moonlight);
    bottom: 10%;
    left: -100px;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--vespara-starlight);
    top: 40%;
    right: 15%;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--vespara-glow);
    border: 1px solid var(--vespara-glow-solid);
    border-radius: 30px;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--vespara-glow-solid);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 100px;
    font-weight: 600;
    color: var(--vespara-starlight);
    margin-bottom: 12px;
    letter-spacing: 12px;
    text-transform: uppercase;
}

.hero-tagline {
    font-size: 24px;
    color: var(--vespara-moonlight);
    margin-bottom: 24px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--vespara-starlight);
    margin-bottom: 16px;
    opacity: 0.9;
}

.hero-subtext {
    font-size: 15px;
    color: var(--vespara-glow-solid);
    margin-bottom: 40px;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--vespara-moonlight) 0%, var(--vespara-glow-solid) 100%);
    color: var(--vespara-void);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(191, 166, 216, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--vespara-starlight);
    border: 2px solid var(--vespara-glow);
}

.btn-secondary:hover {
    background: var(--vespara-glow);
}

/* Section Titles */
.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--vespara-starlight);
    text-transform: uppercase;
    letter-spacing: 4px;
}

.section-subtitle {
    text-align: center;
    color: var(--vespara-moonlight);
    font-size: 16px;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Vision Section */
.vision {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.vision-card {
    background: var(--vespara-tile);
    border: 1px solid var(--vespara-glow);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.vision-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.vision-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.vision-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--vespara-starlight);
}

.vision-card p {
    color: var(--vespara-moonlight);
    font-size: 14px;
    line-height: 1.6;
}

/* Hub Section (Bento Grid) */
.hub-section {
    padding: 100px 40px;
    background: linear-gradient(180deg, transparent 0%, rgba(45, 38, 56, 0.3) 50%, transparent 100%);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.bento-grid-9 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
}

.bento-tile {
    background: var(--vespara-tile);
    border: 1px solid var(--vespara-glow);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.bento-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(191, 166, 216, 0.15);
    border-color: var(--vespara-glow-solid);
}

.tile-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.bento-tile h3 {
    font-size: 20px;
    color: var(--vespara-starlight);
    margin-bottom: 4px;
    letter-spacing: 2px;
}

.tile-subtitle {
    font-size: 13px;
    color: var(--vespara-glow-solid);
    margin-bottom: 12px;
    font-weight: 500;
}

.tile-desc {
    font-size: 13px;
    color: var(--vespara-moonlight);
    line-height: 1.5;
}

/* Interview Section */
.interview-section {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.interview-phases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 60px;
}

.phase-card {
    background: var(--vespara-tile);
    border: 1px solid var(--vespara-glow);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s;
}

.phase-card:hover {
    border-color: var(--vespara-glow-solid);
    transform: translateY(-2px);
}

.phase-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vespara-moonlight) 0%, var(--vespara-glow-solid) 100%);
    color: var(--vespara-void);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    margin: 0 auto 12px;
}

.phase-card h4 {
    font-size: 14px;
    color: var(--vespara-starlight);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.phase-card p {
    font-size: 12px;
    color: var(--vespara-moonlight);
    line-height: 1.4;
}

/* Heat Levels */
.heat-levels {
    background: var(--vespara-tile);
    border: 1px solid var(--vespara-glow);
    border-radius: 20px;
    padding: 40px;
}

.heat-levels h3 {
    text-align: center;
    margin-bottom: 24px;
    font-size: 24px;
    color: var(--vespara-starlight);
}

.heat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.heat-item {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    background: rgba(26, 21, 35, 0.5);
    border: 1px solid var(--vespara-glow);
}

.heat-emoji {
    font-size: 32px;
    display: block;
    margin-bottom: 8px;
}

.heat-name {
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
    color: var(--vespara-starlight);
}

.heat-desc {
    font-size: 12px;
    color: var(--vespara-moonlight);
}

/* TAGS Section */
.tags-section {
    padding: 100px 40px;
    background: linear-gradient(180deg, transparent 0%, rgba(45, 38, 56, 0.3) 50%, transparent 100%);
}

/* Access Gate */
.access-gate {
    max-width: 500px;
    margin: 0 auto;
    transition: all 0.3s;
}

.gate-content {
    background: var(--vespara-tile);
    border: 1px solid var(--vespara-glow);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
}

.gate-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.gate-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--vespara-starlight);
}

.gate-content > p {
    color: var(--vespara-moonlight);
    margin-bottom: 24px;
}

.access-form {
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    color: var(--vespara-moonlight);
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 14px 18px;
    background: rgba(26, 21, 35, 0.8);
    border: 1px solid var(--vespara-glow);
    border-radius: 12px;
    color: var(--vespara-starlight);
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--vespara-glow-solid);
}

.checkbox-group {
    margin-top: 24px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--vespara-glow-solid);
}

.label-text {
    font-size: 14px;
    color: var(--vespara-moonlight);
}

.btn-unlock {
    width: 100%;
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.gate-disclaimer {
    font-size: 12px;
    color: var(--vespara-moonlight);
    margin-top: 20px;
    text-align: center;
}

.gate-disclaimer a {
    color: var(--vespara-glow-solid);
}

/* Hidden state */
.hidden {
    display: none !important;
}

/* TAGS Content */
.tags-content {
    max-width: 1000px;
    margin: 0 auto;
    transition: all 0.3s;
}

/* Consent Meter */
.consent-meter {
    background: var(--vespara-tile);
    border: 1px solid var(--vespara-glow);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 48px;
}

.consent-meter h3 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--vespara-starlight);
}

.consent-intro {
    text-align: center;
    color: var(--vespara-moonlight);
    margin-bottom: 32px;
}

.consent-levels {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.consent-level {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 12px;
    background: rgba(26, 21, 35, 0.5);
    border: 1px solid var(--vespara-glow);
    transition: border-color 0.3s;
}

.consent-level:hover {
    border-color: var(--vespara-glow-solid);
}

.consent-green:hover { border-color: var(--consent-green); }
.consent-yellow:hover { border-color: var(--consent-yellow); }
.consent-red:hover { border-color: var(--consent-red); }

.consent-indicator {
    font-size: 28px;
}

.consent-info h4 {
    font-size: 16px;
    color: var(--vespara-starlight);
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.consent-info p {
    font-size: 14px;
    color: var(--vespara-moonlight);
}

.consent-info em {
    color: var(--vespara-glow-solid);
}

/* Games Showcase */
.games-showcase h3 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 32px;
    color: var(--vespara-starlight);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.game-card {
    background: var(--vespara-tile);
    border: 1px solid var(--vespara-glow);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s;
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(191, 166, 216, 0.15);
    border-color: var(--vespara-glow-solid);
}

.game-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.game-card h4 {
    font-size: 16px;
    color: var(--vespara-starlight);
    margin-bottom: 8px;
    font-family: 'Cinzel', serif;
}

.game-card p {
    font-size: 13px;
    color: var(--vespara-moonlight);
    line-height: 1.5;
}

/* Features Section */
.features-section {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--vespara-tile);
    border: 1px solid var(--vespara-glow);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(191, 166, 216, 0.15);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.feature-card h4 {
    font-size: 18px;
    color: var(--vespara-starlight);
    margin-bottom: 12px;
    font-family: 'Cinzel', serif;
}

.feature-card p {
    font-size: 14px;
    color: var(--vespara-moonlight);
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 40px;
    background: linear-gradient(180deg, rgba(45, 38, 56, 0.2) 0%, rgba(26, 21, 35, 0.8) 50%, rgba(45, 38, 56, 0.2) 100%);
}

.pricing-manifesto {
    max-width: 900px;
    margin: 0 auto;
}

.manifesto-content {
    text-align: center;
    margin-bottom: 48px;
}

.manifesto-lead {
    font-size: 24px;
    color: var(--vespara-starlight);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.5;
}

.manifesto-content p {
    font-size: 16px;
    color: var(--vespara-moonlight);
    line-height: 1.7;
    margin-bottom: 16px;
}

.pricing-hero {
    text-align: center;
    padding: 48px;
    background: var(--vespara-tile);
    border: 2px solid var(--vespara-glow-solid);
    border-radius: 24px;
    margin-bottom: 48px;
    box-shadow: 0 20px 60px rgba(191, 166, 216, 0.2);
}

.price-display {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}

.price-currency {
    font-size: 36px;
    color: var(--vespara-glow-solid);
    font-weight: 600;
    margin-top: 16px;
}

.price-amount {
    font-size: 120px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: var(--vespara-starlight);
    line-height: 1;
}

.price-period {
    font-size: 24px;
    color: var(--vespara-moonlight);
    align-self: flex-end;
    margin-bottom: 24px;
}

.price-tagline {
    font-size: 28px;
    font-family: 'Cinzel', serif;
    color: var(--vespara-glow-solid);
    margin-top: 8px;
    letter-spacing: 4px;
}

.pricing-philosophy {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.philosophy-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--vespara-tile);
    border: 1px solid var(--vespara-glow);
    border-radius: 16px;
    transition: all 0.3s;
}

.philosophy-item:hover {
    border-color: var(--vespara-glow-solid);
    transform: translateX(8px);
}

.philosophy-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.philosophy-text h4 {
    font-size: 18px;
    color: var(--vespara-starlight);
    margin-bottom: 8px;
    font-family: 'Cinzel', serif;
}

.philosophy-text p {
    font-size: 14px;
    color: var(--vespara-moonlight);
    line-height: 1.6;
}

.philosophy-text em {
    color: var(--vespara-glow-solid);
    font-style: normal;
}

.what-you-wont-find,
.what-you-will-find {
    margin-bottom: 40px;
}

.what-you-wont-find h3,
.what-you-will-find h3 {
    text-align: center;
    font-size: 20px;
    color: var(--vespara-starlight);
    margin-bottom: 24px;
    letter-spacing: 2px;
}

.wont-find-grid,
.will-find-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.wont-find-item,
.will-find-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(26, 21, 35, 0.6);
    border: 1px solid var(--vespara-glow);
    border-radius: 30px;
    font-size: 14px;
}

.wont-find-item {
    color: #D32F2F;
    border-color: rgba(211, 47, 47, 0.3);
}

.wont-icon {
    font-size: 16px;
}

.will-find-item {
    color: var(--consent-green);
    border-color: rgba(76, 175, 80, 0.3);
}

.will-icon {
    font-size: 16px;
}

.pricing-close {
    text-align: center;
    font-size: 20px;
    color: var(--vespara-starlight);
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--vespara-glow);
}

/* Tech Section */
.tech-section {
    padding: 80px 40px;
    background: linear-gradient(180deg, transparent 0%, rgba(45, 38, 56, 0.3) 50%, transparent 100%);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.tech-card {
    background: var(--vespara-tile);
    border: 1px solid var(--vespara-glow);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
}

.tech-card h4 {
    font-size: 14px;
    color: var(--vespara-moonlight);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tech-card p {
    font-size: 18px;
    color: var(--vespara-starlight);
    font-weight: 600;
}

.tech-detail {
    font-size: 12px !important;
    color: var(--vespara-moonlight) !important;
    margin-top: 4px;
    font-weight: 400 !important;
}

/* Footer */
.footer {
    padding: 60px 40px 40px;
    border-top: 1px solid var(--vespara-glow);
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: start;
}

.footer-brand h3 {
    font-size: 24px;
    color: var(--vespara-starlight);
    margin-bottom: 8px;
    letter-spacing: 4px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--vespara-moonlight);
}

.footer-tagline {
    margin-top: 8px;
    font-style: italic;
    color: var(--vespara-glow-solid) !important;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.footer-links a {
    color: var(--vespara-moonlight);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--vespara-glow-solid);
}

.footer-copyright {
    text-align: right;
}

.footer-copyright p {
    font-size: 14px;
    color: var(--vespara-moonlight);
}

.age-notice {
    margin-top: 8px;
    color: var(--consent-red) !important;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 900px) {
    .navbar {
        padding: 16px 24px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 60px;
        letter-spacing: 6px;
    }
    
    .bento-grid,
    .bento-grid-9 {
        grid-template-columns: 1fr;
    }
    
    .heat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    .price-amount {
        font-size: 80px;
    }
    
    .philosophy-item {
        flex-direction: column;
        text-align: center;
    }
    
    .philosophy-item:hover {
        transform: translateY(-4px);
    }
    
    .wont-find-item,
    .will-find-item {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 100px 24px 60px;
    }
    
    .hero-title {
        font-size: 42px;
        letter-spacing: 4px;
    }
    
    .hero-tagline {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .heat-grid {
        grid-template-columns: 1fr;
    }
    
    .interview-phases {
        grid-template-columns: 1fr;
    }
    
    .gate-content {
        padding: 32px 24px;
    }
}
