:root {
    --bg: #0f1215;
    --card-bg: #161a1e;
    --text: #ecf0f1;
    --muted: #95a5a6;
    --mint: #8CFA96;
    --blue: #00BCD4;
    --purple: #BB86FC;
}

/* --- RESET & BASE --- */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- HERO SECTION --- */
.hero {
    height: 35vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 20px;   
}

.brand-logo {
    width: 240px;
    max-width: 80%;
    height: auto;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 20px rgba(140, 250, 150, 0.2));
    animation: float 8s ease-in-out infinite; 
}

.tagline {
    font-size: 1rem;
    color: var(--muted);
    margin-top: 0;
}

/* --- LAYOUT UTILS --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text);
    letter-spacing: 2px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* --- PRODUCT CARDS --- */
.card {
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.app-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: filter 0.3s ease, transform 0.3s ease;
    animation: icon-pulse 4s ease-in-out infinite;
}

/* Theme Variations & Icon Glows */
.card.capsize { border-top: 4px solid var(--mint); }
.card.capsize h3 { color: var(--mint); }
.card.capsize .app-icon { filter: drop-shadow(0 0 5px rgba(140, 250, 150, 0.25)); }
.card.capsize:hover .app-icon { filter: drop-shadow(0 0 10px rgba(140, 250, 150, 0.6)); }

.card.smartclip { border-top: 4px solid var(--blue); }
.card.smartclip h3 { color: var(--blue); }
.card.smartclip .app-icon { filter: drop-shadow(0 0 5px rgba(0, 188, 212, 0.25)); }
.card.smartclip:hover .app-icon { filter: drop-shadow(0 0 10px rgba(0, 188, 212, 0.6)); }

.card.hexstack { border-top: 4px solid var(--purple); }
.card.hexstack h3 { color: var(--purple); }
.card.hexstack .app-icon { filter: drop-shadow(0 0 5px rgba(187, 134, 252, 0.25)); }
.card.hexstack:hover .app-icon { filter: drop-shadow(0 0 10px rgba(187, 134, 252, 0.6)); }

.card:hover .app-icon { 
    animation-play-state: paused;
    transform: scale(1.1); 
}

.card h3 { font-family: 'Orbitron', sans-serif; font-size: 1.4rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.9rem; margin-bottom: 25px; flex-grow: 1; }

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--muted);
    cursor: pointer;
}

.card.capsize .btn:hover { border-color: var(--mint); color: var(--mint); background: rgba(140, 250, 150, 0.1); }
.card.smartclip .btn:hover { border-color: var(--blue); color: var(--blue); background: rgba(0, 188, 212, 0.1); }
.card.hexstack .btn:hover { border-color: var(--purple); color: var(--purple); background: rgba(187, 134, 252, 0.1); }

/* --- PHILOSOPHY SECTION --- */
.philosophy-section {
    //background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0;
    margin-top: 40px;
}

.feature-item { text-align: center; padding: 20px; }
.feature-icon { font-size: 2.5rem; color: var(--text); margin-bottom: 20px; opacity: 0.8; }
.feature-item h4 { font-family: 'Orbitron', sans-serif; margin-bottom: 10px;}

.feature-item p { color: var(--muted); font-size: 0.95rem; max-width: 300px; margin: 0 auto; }

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.philosophy-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.03);
    text-align: center;
    transition: 0.3s;
}

.philosophy-card:hover { transform: translateY(-5px); border-color: rgba(140, 250, 150, 0.2); }
.philosophy-card i { color: var(--mint); font-size: 2.5rem; margin-bottom: 20px; }
.philosophy-card h4 { font-family: 'Orbitron', sans-serif; margin-bottom: 15px;  letter-spacing: 1.5px;}
.philosophy-card p { color: var(--muted); font-size: 0.9rem; }

/* --- PRICING SECTION --- */
.pricing-section {
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.price-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    display: flex;
    flex-direction: column;
}

.price-card.pro-tier {
    border: 2px solid var(--mint);
    background: radial-gradient(circle at top right, rgba(140, 250, 150, 0.05), transparent);
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.price-tag {
    position: absolute;
    top: -15px; left: 50%;
    transform: translateX(-50%);
    background: var(--mint);
    color: var(--bg);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
}

.price-header h3 { font-family: 'Orbitron', sans-serif; color: var(--muted); letter-spacing: 1px;}
.pro-tier .price-header h3 { color: var(--mint); }
.price-amount { font-size: 2.5rem; font-weight: 700; margin: 20px 0; font-family: 'Orbitron', sans-serif;}
.price-amount span { font-size: 0.9rem; font-weight: 600; letter-spacing: 1px;color: var(--muted); }

.price-features { list-style: none; margin-bottom: 30px; flex-grow: 1; }
.price-features li { margin-bottom: 15px; font-size: 0.85rem; display: flex; align-items: center; gap: 10px; }
.price-features li i { color: var(--mint); width: 20px; }
.price-features li.locked { opacity: 0.4; }

.pro-btn {
    background: var(--mint) !important;
    color: var(--bg) !important;
    border: none !important;
}

/* --- FAQ & FOOTER --- */
.faq-container { padding: 40px 0;
border-top: 1px solid rgba(255, 255, 255, 0.05);
margin-top: 40px;
}

.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.faq-item h4 { margin-bottom: 10px; font-size: 1.1rem; }
.faq-item p { color: var(--muted); font-size: 0.9rem; }

footer {
    text-align: center;
    padding: 60px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--muted);
    font-size: 0.8rem;
}

/* --- MODALS --- */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.modal-overlay.active { opacity: 1; visibility: visible; }

.modal-content {
    background: var(--card-bg);
    border-radius: 16px;
    width: 90%;
    max-width: 480px;
    padding: 30px;
    position: relative;
    transform: translateY(20px);
    transition: 0.3s;
}

.modal-overlay.active .modal-content { transform: translateY(0); }

.feature-preview {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
}

.placeholder-screen {
    width: 100%; height: 200px;
    background: rgba(0,0,0,0.3);
    border: 1px dashed var(--muted);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--muted); margin-bottom: 20px;
}

.feature-preview img {
    max-width: 100%;
    max-height: 200px;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
}

.modal-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.modal-icon { width: 40px; height: 40px; }
.modal-header h2 { font-family: 'Orbitron', sans-serif; font-size: 1.4rem; }

.feature-list { list-style: none; margin-bottom: 25px; }
.feature-list li { font-size: 0.85rem; margin-bottom: 12px; color: var(--muted); display: flex; gap: 10px; }
.feature-list li i { color: var(--mint); margin-top: 3px; }

.modal-close {
    position: absolute;
    top: 15px; right: 20px;
    background: none; border: none;
    color: var(--muted); font-size: 2rem;
    cursor: pointer; line-height: 1;
}

/* --- ANIMATIONS --- */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

@keyframes icon-pulse {
    0% { transform: scale(1); opacity: 0.95; }
    50% { transform: scale(1.03); opacity: 1; }
    100% { transform: scale(1); opacity: 0.95; }
}

@media (max-width: 768px) {
    .pricing-grid { max-width: 100%; }
    .price-card.pro-tier { transform: scale(1); margin: 20px 0; }
    .hero { height: 30vh; }
}

/* --- COMPARISON TABLE --- */
.comparison-wrapper {
    max-width: 800px;
    margin: -20px auto 0; /* Space it away from the cards */
    padding: 0 10px;
    animation: fadeUp 0.8s ease-out forwards;
    opacity: 0; /* Animated in via CSS */
position: relative; /* Ensures it stays visible */
    z-index: 5; /* Ensures it sits above any card shadows */
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.comparison-title {
border-top: 1px solid rgba(255, 255, 255, 0.05);
margin-top: 20px;
    padding: 60px 0;
    

    text-align: center;
    font-family: 'Orbitron', sans-serif;
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: -25px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.comparison-table {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    

}

.c-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr; /* Feature gets 2x space */
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    align-items: center;
}

.c-row:last-child {
    border-bottom: none;
}

/* Header Styling */
.c-header {
    background: rgba(255, 255, 255, 0.03);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: var(--text);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Cell Styling */
.c-cell {
    font-size: 0.85rem;
    color: var(--muted);
    text-align: center;
}

.feature-label {
    text-align: left;
    color: var(--text);
    font-weight: 500;
}

/* Icons */
.check-icon { color: var(--mint); font-size: 1rem; }
.cross-icon { color: rgba(255, 255, 255, 0.1); font-size: 1rem; }

/* Pro Column Highlighting */
.pro-col {
    color: var(--mint);
    font-weight: bold;
    position: relative;
}

/* Optional: Slight highlight background for the Pro column */
.c-row .pro-col::after {
    content: '';
    position: absolute;
    top: -15px; bottom: -15px; left: 0; right: 0;
    background: rgba(140, 250, 150, 0.02);
    z-index: 0;
    pointer-events: none;
}

.highlight-text {
    color: var(--mint);
    text-shadow: 0 0 10px rgba(140, 250, 150, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .c-row {
        padding: 12px 10px;
        font-size: 0.75rem;
    }
    .feature-label { font-size: 0.75rem; }
}

/* --- APP DIVIDERS IN COMPARISON TABLE --- */

.app-divider {
    grid-column: 1 / -1; /* Spans all 3 columns */
    background: rgba(255, 255, 255, 0.02);
    padding: 15px 20px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-top: 5px;
}

/* Specific styling for each app section */

.capsize-div {
    color: var(--mint);
    border-left: 4px solid var(--mint);
    background: linear-gradient(90deg, rgba(140, 250, 150, 0.05), transparent);
}

.smartclip-div {
    color: var(--blue);
    border-left: 4px solid var(--blue);
    background: linear-gradient(90deg, rgba(0, 188, 212, 0.05), transparent);
}

.hexstack-div {
    color: var(--purple);
    border-left: 4px solid var(--purple);
    background: linear-gradient(90deg, rgba(187, 134, 252, 0.05), transparent);
}

.global-div {
    color: var(--muted);
    border-left: 4px solid var(--muted);
}

.single-buy-link {
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.card.capsize .single-buy-link:hover { background: rgba(140, 250, 150, 0.1); border-color: var(--mint); }
.card.smartclip .single-buy-link:hover { background: rgba(0, 188, 212, 0.1); border-color: var(--blue); }
.card.hexstack .single-buy-link:hover { background: rgba(187, 134, 252, 0.1); border-color: var(--purple); }

/* --- A-LA-CARTE HORIZONTAL ROW --- */
.a-la-carte-container {
    text-align: center;
    margin-top: 60px;
    padding: 10px 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.a-la-carte-container h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    letter-spacing: .5px;
    margin-bottom: 5px;
}

.a-la-carte-container p {
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 25px;
}

.a-la-carte-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.single-tool-btn {
    padding: 6px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: 0.3s;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 8px;
    margin-top: -5px;
}

.price-badge {
    font-size: 0.7rem;
    //background: rgba(0, 0, 0, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
    opacity: 1;
}

/* App Theme Colors */
.capsize-link { color: var(--mint); }
.capsize-link:hover { background: rgba(140, 250, 150, 0.1); border-color: var(--mint); }

.smartclip-link { color: var(--blue); }
.smartclip-link:hover { background: rgba(0, 188, 212, 0.1); border-color: var(--blue); }

.hexstack-link { color: var(--purple); }
.hexstack-link:hover { background: rgba(187, 134, 252, 0.1); border-color: var(--purple); }

@media (max-width: 600px) {
    .a-la-carte-row { flex-direction: column; align-items: stretch; }
}

.launch-banner-small {
    background: rgba(140, 250, 150, 0.05); /* Uses the mint theme color */
    border: 1px solid rgba(140, 250, 150, 0.3); /* Defined by the mint variable */
    border-radius: 8px; /* Matches the utility card radius */
    padding: 10px 15px;
    margin: 0 auto 30px; /* Centers the banner and adds bottom spacing */
    max-width: 800px; /* Constrains width so it sits centered in the container */
    text-align: center;
    font-size: 0.85rem;
    animation: glow-pulse 3s infinite alternate; /* Reuses your existing pulse logic */
}

.launch-banner-small i { 
    color: var(--mint); 
    margin-right: 8px; 
}

.launch-banner-small strong { 
    color: var(--mint); 
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

<div class="progress-container">
    <div class="progress-label">
        <span>Founder Licenses Claimed</span>
        <span id="license-count">64/100</span>
    </div>
    <div class="progress-track">
        <div id="progress-fill" class="progress-fill" style="width: 64%;"></div>
    </div>
    <p class="progress-urgency">Only 36 licenses left at the $29 early adopter price.</p>
</div>

@keyframes glow-pulse {
    from { box-shadow: 0 0 2px rgba(140, 250, 150, 0.1); }
    to { box-shadow: 0 0 10px rgba(140, 250, 150, 0.2); }
}

/* --- [REFINED] SPECIAL OFFER BADGE --- */
.special-offer-badge {
    display: inline-block;
    background: var(--purple);
    color: var(--bg);
    font-size: 0.6rem;
    font-weight: 900;
    padding: 2px 8px;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 8px;
    letter-spacing: 0.5px;
    font-family: 'Orbitron', sans-serif;
}

/* Remove the old ribbon style entirely */
.launch-active::after { display: none !important; }

/* --- LAUNCH PROGRESS BAR --- */
.progress-container {
    max-width: 500px;
    margin: 15px auto 0 auto;
    text-align: left;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.75rem;
    font-family: 'Orbitron', sans-serif; /* Matches suite branding */
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

#license-count {
    color: var(--mint); /* Reuses your mint theme color */
    font-weight: 900;
}

.progress-track {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05); /* Subtle dark track */
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--mint), var(--blue)); /* Transitions between app themes */
    box-shadow: 0 0 10px rgba(140, 250, 150, 0.4);
    transition: width 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Matches main.js reveal logic */
}

.progress-urgency {
    font-size: 0.7rem;
    color: var(--muted);
    margin-top: 8px;
    text-align: center;
    font-style: italic;
}

/* --- [BRANDING] MINT CORE WHITE THEME --- */

/* Force the "Mint Core" title in the pricing card to White */
.price-card:first-child .price-header h3 {
    color: #ffffff !important;
}

/* Force the "Mint Core" column header in the table to White */
.c-header .c-cell:nth-child(2) {
    color: #ffffff !important;
}

/* Force all feature labels/icons in the Core column to White */
.c-row .c-cell:nth-child(2) {
    color: #ffffff !important;
}

/* Ensure checkmarks in the Core column are White */
.c-row .c-cell:nth-child(2) i.fa-check.check-icon {
    color: #ffffff !important;
}

/* Keep X marks in the Core column visible but subtle white */
.c-row .c-cell:nth-child(2) i.fa-xmark.cross-icon {
    color: rgba(255, 255, 255, 0.3) !important;
}