/* --- VARIABLES --- */
:root {
    --bg-color: #FFFFFF;
    --text-main: #37474F;      
    --accent-teal: #7FB095;    
    --accent-dark: #263238;    
    
    /* Collection Specific Colors */
    --collection-bronze: #A67C52; 
    --collection-green: #1B443C;

    /* Card Backgrounds */
    --card-bg: #ECEFF1;        
    --card-bg-light: #F5F7F8;
    
    --font-stack: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* --- RESET & GLOBAL --- */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-stack);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a { text-decoration: none; color: inherit; }

/* --- NAVIGATION --- */
.nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}
.back-link {
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}
.back-link:hover { color: var(--accent-teal); }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.03em; text-transform: uppercase; }
p { font-weight: 400; color: #546E7A; }

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #ECEFF1;
    padding-bottom: 20px;
    display: inline-block;
}

/* --- HERO SECTION --- */
.hero-section {
    text-align: center;
    padding: 40px 0 60px 0;
}

.logo-container img.main-logo {
    width: 480px;
    max-width: 85vw;
    height: auto;
    margin-bottom: 50px;
}

.headline {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-main);
}

.sub-headline {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

/* --- DEFINITION BLOCK --- */
.definition-block {
    text-align: left;
    max-width: 480px;
    margin: 0 auto 60px auto;
    padding: 30px;
    background-color: var(--card-bg);
    border-left: 4px solid var(--accent-teal);
    border-radius: 0 8px 8px 0;
}

.word-title { font-size: 2rem; font-weight: 800; margin-right: 15px; letter-spacing: -0.02em; }
.phonetic { font-family: monospace; color: var(--accent-teal); font-weight: 600; }
.word-meta { display: block; font-size: 0.85rem; color: #90A4AE; font-style: italic; margin-bottom: 20px; }
.def-item { margin-bottom: 15px; color: #455A64; }
.def-number { font-weight: 700; color: var(--accent-teal); margin-right: 8px; }

/* --- BUTTONS --- */
.cta-button {
    display: inline-block;
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
}
.cta-button.primary { background-color: var(--text-main); color: white; }
.cta-button.primary:hover { background-color: var(--accent-teal); transform: translateY(-2px); }

/* --- DIVIDER --- */
.divider {
    border: 0;
    height: 1px;
    background: transparent; 
    margin: 80px 0;          
}

/* --- DIVISIONS GRID --- */
.divisions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.card {
    background: var(--card-bg);
    padding: 50px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.card:hover {
    border-color: var(--accent-teal);
    background: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card-icon {
    width: 280px;
    height: 280px;
    background-color: #FFFFFF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;      
}

.card h3 { margin-bottom: 10px; font-size: 1.25rem; }
.card-desc { font-size: 0.95rem; margin-bottom: 20px; }

.status-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-teal);
    border: 1px solid var(--accent-teal);
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    background-color: rgba(255,255,255,0.5);
}

.launch-tag {
    background-color: var(--accent-teal);
    color: white;
    border: none;
}

/* --- GUARDIAN SPECIFIC STYLES --- */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 80px;
}
.tech-item {
    background: var(--card-bg-light);
    padding: 30px;
    border-radius: 8px;
    border-left: 3px solid var(--accent-teal);
}
.tech-item h4 { margin-bottom: 10px; color: var(--text-main); }
.tech-item p { font-size: 0.9rem; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 80px;
}

.price-card {
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.2s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.price-card:hover { transform: translateY(-5px); border-color: var(--accent-teal); }
.price-card.featured { border: 2px solid var(--accent-teal); background: #F9FBFB; }

.price-card.high-risk {
    background: var(--text-main);
    color: white;
    border: none;
}
.price-card.high-risk h3, .price-card.high-risk .price, .price-card.high-risk p { color: white; }
.price-card.high-risk ul li { border-bottom: 1px solid rgba(255,255,255,0.2); }

.plan-name { font-size: 1.2rem; font-weight: 800; margin-bottom: 10px; display: block; }
.price { font-size: 2.5rem; font-weight: 300; margin-bottom: 20px; display: block; }
.price span { font-size: 1rem; color: #90A4AE; }
.price-card.high-risk .price span { color: #CFD8DC; }

.features-list { list-style: none; text-align: left; margin: 20px 0 30px 0; flex-grow: 1; }
.features-list li {
    padding: 10px 0;
    border-bottom: 1px solid #ECEFF1;
    font-size: 0.9rem;
}
.features-list li:last-child { border-bottom: none; }

.roadmap-list { list-style: none; max-width: 800px; margin: 0 auto 60px auto; }
.roadmap-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #ECEFF1;
}
.roadmap-title { font-weight: 700; }
.roadmap-status { font-size: 0.8rem; background: #ECEFF1; padding: 5px 10px; border-radius: 4px; }
.roadmap-desc { font-size: 0.9rem; color: #546E7A; flex-grow: 1; margin: 0 20px; }

/* Business Quotes */
.business-section {
    background-color: #37474F;
    color: white;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    max-width: 800px;
    margin: 60px auto 0 auto;
}
.business-section h3 { margin-bottom: 10px; color: white; }
.business-section p { color: #CFD8DC; margin-bottom: 20px; }
.business-btn {
    background-color: white;
    color: #37474F;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
}
.business-btn:hover { background-color: #ECEFF1; }

.tax-note {
    display: block;
    font-size: 0.9rem;
    color: #7FB095;
    font-weight: 700;
    margin-top: 5px;
}

/* --- MEDIA & PURPOSE SPECIFIC STYLES --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.stat-card {
    background: #FFFFFF;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border-top: 4px solid var(--accent-teal);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}

.stat-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--accent-teal);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.stat-desc {
    font-size: 0.95rem;
    color: #546E7A;
}

.stat-card.primary-stat {
    border-top: none;
    background: var(--text-main);
    color: white;
}
.stat-card.primary-stat .stat-number { color: white; }
.stat-card.primary-stat .stat-title { color: var(--accent-teal); }
.stat-card.primary-stat .stat-desc { color: #CFD8DC; }

.rules-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto 60px auto;
    text-align: left;
}
.rules-list li {
    padding: 15px 20px;
    border-left: 3px solid var(--accent-teal);
    background: var(--card-bg-light);
    margin-bottom: 15px;
    border-radius: 0 8px 8px 0;
}
.rules-list li strong {
    color: var(--text-main);
    display: block;
    margin-bottom: 5px;
}

/* --- CANARY STYLES --- */
.canary-box {
    background-color: #F5F7F8;
    border: 2px solid #37474F;
    padding: 40px;
    font-family: monospace;
    margin: 40px auto;
    max-width: 800px;
    text-align: left;
}
.canary-date {
    display: block;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--accent-teal);
}

/* --- FORMALOO CONTAINER --- */
.formaloo-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    min-height: 200px;
}

/* --- FOOTER --- */
footer {
    text-align: center;
    padding: 60px 0;
    font-size: 0.85rem;
    color: #90A4AE;
    border-top: 1px solid #ECEFF1;
    margin-top: 40px;
}
footer p { margin-bottom: 8px; color: #90A4AE; }
footer a { color: #90A4AE; text-decoration: none; margin: 0 5px; }
footer a:hover { color: var(--accent-teal); }

/* --- RESPONSIVE MOBILE FIXES --- */
@media (max-width: 600px) {
    .headline { font-size: 2.2rem; }
    .roadmap-item { flex-direction: column; align-items: flex-start; gap: 10px; }
    .roadmap-desc { margin: 0; }
    .card-icon { width: 100%; height: auto; aspect-ratio: 1/1; }
}
