/* Landing Page Redesign - Subscription Tiers Layout */

/* Base Styles */
.landing-content {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    background: linear-gradient(180deg, #0a0a1a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: -15%;
    left: -15%;
    width: 130%;
    height: 130%;
    z-index: 1;
    background-image: url('../images/Palaethos_CityGraphic.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    animation: parallaxPan 60s ease-in-out infinite;
    will-change: transform;
}

@keyframes parallaxPan {
    0% {
        transform: scale(1.1) translate(0%, 0%);
    }
    25% {
        transform: scale(1.15) translate(-3%, -2%);
    }
    50% {
        transform: scale(1.12) translate(2%, -3%);
    }
    75% {
        transform: scale(1.18) translate(1%, 2%);
    }
    100% {
        transform: scale(1.1) translate(0%, 0%);
    }
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}



.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 4rem 2rem;
}

.site-logo {
    max-width: 700px;
    width: 100%;
    height: auto;
    margin-bottom: 3rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-subheader {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 4rem;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

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

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 200px;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-button.primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #1a1a2e;
    border: 2px solid transparent;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #ffed4e 0%, #ffc947 100%);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.cta-button.accent {
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    color: #ffffff;
    border: 2px solid transparent;
}

.cta-button.accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
    background: linear-gradient(135deg, #a855f7 0%, #8b5cf6 100%);
}

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

/* Intro Section */
.intro-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem 0 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.intro-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.intro-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Features Grid Section */
.features-grid {
    padding: 1.5rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:nth-child(1) {
    border-left: 3px solid #3b82f6;
}

.feature-card:nth-child(2) {
    border-left: 3px solid #9333ea;
}

.feature-card:nth-child(3) {
    border-left: 3px solid #10b981;
}

.feature-card:nth-child(4) {
    border-left: 3px solid #f59e0b;
}

.feature-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.feature-icon .material-icons {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.feature-card:nth-child(1) .feature-icon .material-icons {
    color: #3b82f6;
}

.feature-card:nth-child(2) .feature-icon .material-icons {
    color: #9333ea;
}

.feature-card:nth-child(3) .feature-icon .material-icons {
    color: #10b981;
}

.feature-card:nth-child(4) .feature-icon .material-icons {
    color: #f59e0b;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    font-size: 0.85rem;
    margin: 0.5rem 0 0;
}

/* Development Cycle Section */
.development-cycle {
    padding: 1.2rem 0;
    background: url('../images/molecular back ground.png') center/cover;
    background-attachment: fixed;
    position: relative;
    text-align: center;
}

.development-cycle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.85);
    z-index: 1;
}

.development-cycle .container {
    position: relative;
    z-index: 2;
}

.development-cycle h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.development-cycle h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1.8rem;
    color: rgba(255, 255, 255, 0.8);
}

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

.cycle-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.cycle-card:nth-child(1) {
    border-top: 3px solid #3b82f6;
}

.cycle-card:nth-child(2) {
    border-top: 3px solid #10b981;
}

.cycle-card:nth-child(3) {
    border-top: 3px solid #9333ea;
}

.cycle-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

.cycle-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: #ffd700;
}

.cycle-card:nth-child(1) h4 {
    color: #3b82f6;
}

.cycle-card:nth-child(2) h4 {
    color: #10b981;
}

.cycle-card:nth-child(3) h4 {
    color: #9333ea;
}

.cycle-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0;
}

/* Subscription Tiers Section */
.subscription-tiers {
    padding: 0;
    background: linear-gradient(180deg, #16213e 0%, #0a0a1a 100%);
    text-align: center;
}

.subscription-tiers h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.tiers-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.tier-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    height: fit-content;
    box-sizing: border-box;
}

.tier-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.tier-card.citizen:hover {
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.3);
}

.tier-card.magistrate:hover {
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.2);
}

.tier-card.chancellor:hover {
    border-color: rgba(147, 51, 234, 0.6);
    box-shadow: 0 25px 50px rgba(147, 51, 234, 0.3);
}

.tier-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    border-radius: 20px 20px 0 0;
}

.tier-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.tier-card:hover .tier-image img {
    transform: scale(1.1);
}

.tier-content {
    padding: 1rem 1.5rem 1.5rem;
    text-align: center;
}

.tier-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.tier-level {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.tier-price {
    margin: 0.5rem 0;
}

.tier-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
}

.tier-card.citizen .tier-price .price {
    color: #3b82f6;
}

.tier-card.magistrate .tier-price .price {
    color: #ffd700;
}

.tier-card.chancellor .tier-price .price {
    color: #9333ea;
}

.tier-price .period {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 0.5rem;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 1rem;
    text-align: left;
}

.tier-features li {
    padding: 0.25rem 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.3;
}

.tier-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

.tier-card.citizen .tier-features li::before {
    color: #3b82f6;
}

.tier-card.magistrate .tier-features li::before {
    color: #ffd700;
}

.tier-card.chancellor .tier-features li::before {
    color: #9333ea;
}

.tier-button {
    display: block;
    width: calc(100% - 2rem);
    margin: 0 1rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #1a1a2e;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    box-sizing: border-box;
}

.tier-button:hover {
    background: linear-gradient(135deg, #ffb347 0%, #ffd700 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.citizen-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #ffffff;
}

.citizen-btn:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.magistrate-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #1a1a2e;
}

.chancellor-btn {
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    color: #ffffff;
}

.chancellor-btn:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%);
    box-shadow: 0 6px 20px rgba(147, 51, 234, 0.4);
}

/* Destiny Promo Section */
.destiny-promo {
    padding: 6rem 0;
    background: url('../images/molecular back ground.png') center/cover;
    background-attachment: fixed;
    position: relative;
    text-align: center;
}

.destiny-promo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.destiny-promo .container {
    position: relative;
    z-index: 2;
}

.destiny-promo h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.destiny-promo p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.destiny-question {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffd700;
    margin: 2rem auto 3rem;
    max-width: 700px;
}

.destiny-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.destiny-button {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 200px;
}

.destiny-button.primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #1a1a2e;
}

.destiny-button.primary:hover {
    background: linear-gradient(135deg, #ffb347 0%, #ffd700 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.destiny-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
}

.destiny-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Site Footer */
.site-footer {
    background: linear-gradient(180deg, #0a0a1a 0%, #000000 100%);
    padding: 1rem 0 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section .social-links {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffd700;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-text-logo {
    height: 60px;
    width: auto;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    font-size: 1.1rem;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1.5rem;
    padding-top: 1rem;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-section .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section .social-links a:hover {
    background: #ffd700;
    color: #1a1a2e;
    transform: translateY(-2px);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tiers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .tier-content {
        padding: 1.5rem;
    }
    
    .tier-features li {
        font-size: 0.9rem;
    }
    
    .tier-button {
        font-size: 0.95rem;
        padding: 0.7rem 0.8rem;
    }
}

@media (max-width: 768px) {
    .hero-background {
        animation: none;
        transform: scale(1.1);
        background-size: cover;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .site-logo {
        max-width: 90%;
        margin-bottom: 2rem;
    }
    
    .hero-subheader {
        font-size: 1.4rem;
        margin-bottom: 3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-button {
        min-width: 250px;
        padding: 14px 24px;
        font-size: 1.1rem;
    }

    .intro-content h2 {
        font-size: 2rem;
    }
    
    .intro-content p {
        font-size: 1rem;
    }
    
    .intro-section {
        padding: 1.5rem 0 1rem;
    }
    
    .features-grid {
        padding: 1rem 0;
    }
    
    .feature-cards {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 0.75rem;
    }
    
    .cycle-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .development-cycle {
        padding: 1rem 0;
    }
    
    .development-cycle h2 {
        font-size: 1.8rem;
    }
    
    .development-cycle h3 {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .cycle-card {
        padding: 1.2rem;
    }
    
    .tiers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tier-image {
        height: 250px;
    }
    
    .destiny-promo h2 {
        font-size: 2.5rem;
    }
    
    .destiny-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .destiny-button {
        width: 100%;
        text-align: center;
    }
    
    .footer-section .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .tier-button {
        font-size: 0.9rem;
        padding: 0.6rem 0.5rem;
        width: calc(100% - 1rem);
        margin: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .intro-content h2 {
        font-size: 2rem;
    }
    
    .tier-content {
        padding: 1.5rem;
    }
    
    .tier-content h3 {
        font-size: 1.5rem;
    }
    
    .tier-price .price {
        font-size: 2rem;
    }
    
    .subscription-tiers h2 {
        font-size: 2.5rem;
    }
    
    .destiny-promo h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
} 