/* ==========================================================================
   GLOBAL SETTINGS & UTILITIES
   ========================================================================== */
html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(to bottom, #000000 0%, #000000 25%, #161a22 50%, #161a22 100%);
    background-attachment: scroll;
    
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
}

/* Bulletproof Font Fix: Overrides hidden browser styles for standard components */
a, button, input, select, textarea {
    font-family: inherit;
}

/* ==========================================================================
   HERO / TEXT HEADERS
   ========================================================================== */
.branding {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
}

.top-logo {
    width: 200px;
    height: auto;
}

.header-text {
    text-align: center;
    margin-top: 20px;
    padding: 0 20px; 
    box-sizing: border-box;
}

.header-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.header-text h3 {
    font-weight: 500;
    font-size: 1.1rem;
    color: rgb(200, 200, 200);
    margin-top: 0;
}

/* ==========================================================================
   VIDEO CONTAINER
   ========================================================================== */
.video-container {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 30px;
    padding: 0 20px;
    box-sizing: border-box;
}

.video {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 750px;
    height: auto;
    aspect-ratio: 16 / 9;
    background-color: #161b26;
    border-radius: 24px;
    border: 1px solid rgb(0, 157, 255);
    box-shadow: 0 0 25px rgba(0, 157, 255, 0.35);
}

/* ==========================================================================
   MAIN CTA HERO BUTTON
   ========================================================================== */
.button-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.cta-button {
    display: inline-block;
    background-color: transparent;
    color: rgb(0, 157, 255);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 34px;
    border-radius: 50px;
    border: 2px solid rgb(0, 157, 255);
    box-shadow: 0 0 15px rgba(0, 157, 255, 0.15);
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: rgb(0, 157, 255);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 157, 255, 0.45);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* ==========================================================================
   PRICING WRAPPER & RESPONSIVE GRID
   ========================================================================== */
.pricing-section {
    width: 100%;
    /* Stripped out the individual background block so the body's global gradient shows through flawlessly */
    background: transparent; 
    padding: 60px 20px 100px 20px;
    box-sizing: border-box;
    text-align: center;
}

.pricing-section h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.pricing-section h3 {
    font-weight: 500;
    font-size: 1.1rem;
    color: rgb(200, 200, 200);
    margin-top: 0;
    margin-bottom: 60px; /* Essential padding space above cards */
}

.pricing-flex-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 24px;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    flex-wrap: wrap; /* Triggers the layout to go mobile-vertical on mobile displays */
}

/* ==========================================================================
   MACOS PREMIUM GLASS CARDS
   ========================================================================== */
.basic-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-radius: 24px;
    padding: 35px;
    box-sizing: border-box;
    text-align: left;
    
    /* Auto Scaling Properties */
    flex: 1 1 300px;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-price {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.card-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #a0aec0;
}

/* ==========================================================================
   CARD INTERNAL UI COMPONENTS
   ========================================================================== */
.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.card-features li {
    font-size: 1rem;
    color: #cbd5e1;
    margin-bottom: 14px;
    padding-left: 20px;
    position: relative;
}

.card-features li::before {
    content: "•";
    color: rgb(0, 157, 255);
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -1px;
}

.card-action-btn {
    display: block;
    text-align: center;
    background-color: transparent;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.card-action-btn:hover {
    border-color: rgb(0, 157, 255);
    background-color: rgba(0, 157, 255, 0.08);
}

.best-value-badge {
    position: absolute;
    top: -14px;
    left: 25px;
    background-color: rgb(0, 157, 255);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 14px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 157, 255, 0.4);
    z-index: 10;
}

/* ==========================================================================
   SITE FOOTER
   ========================================================================== */
.site-footer {
    width: 100%;
    background-color: #161a22;
    padding: 40px 20px;
    box-sizing: border-box;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.site-footer p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0 0 10px 0;
}

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

.footer-links a {
    font-size: 0.85rem;
    color: #8a99ad;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: rgb(0, 157, 255);
}

.footer-divider {
    font-size: 0.85rem;
    color: #334155;
}