:root {
    /* Ultra-Modern Sophisticated Palette */
    --bg-dark: oklch(10% 0.01 260);
    --bg-main: oklch(14% 0.015 260);
    --accent: oklch(70% 0.16 260);
    --accent-glow: oklch(70% 0.16 260 / 0.3);
    --text-pure: oklch(98% 0.005 260);
    --text-soft: oklch(88% 0.01 260);
    --text-muted: oklch(65% 0.01 260);
    --border-soft: oklch(100% 0 0 / 0.06);
    --glass: oklch(100% 0 0 / 0.03);
    
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-pure);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.spread {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Glassmorphism Refined */
.glass {
    background: var(--glass);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid var(--border-soft);
    border-radius: 40px;
}

/* Navigation - Stealth Style */
.stealth-nav {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 3rem 0;
}

.brand-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brand-text span {
    color: var(--accent);
}

.actions {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.stealth-link {
    text-decoration: none;
    color: var(--text-soft);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--ease) 0.3s;
}

.stealth-link:hover { color: var(--accent); }

.btn-executive {
    padding: 0.9rem 2rem;
    background: var(--text-pure);
    color: var(--bg-dark);
    text-decoration: none;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--ease) 0.4s;
    border: 1px solid transparent;
}

.btn-executive:hover {
    background: transparent;
    color: var(--text-pure);
    border-color: var(--text-pure);
    transform: translateY(-2px);
}

.btn-executive.large {
    padding: 1.5rem 3.5rem;
    font-size: 1.2rem;
}

/* Editorial Hero */
.editorial-hero {
    padding-top: 15rem;
    padding-bottom: 10rem;
    text-align: center;
}

.hero-top {
    margin-bottom: 5rem;
}

.kicker {
    display: inline-block;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.editorial-hero h1 {
    font-size: clamp(3rem, 8vw, 6.5rem);
    max-width: 1000px;
    margin: 0 auto;
}

.editorial-hero h1 span {
    opacity: 0.4;
}

.hero-visual-center {
    position: relative;
    max-width: 1100px;
    margin: 0 auto 5rem;
}

.hero-main-img {
    width: 100%;
    border-radius: 60px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.6);
    filter: brightness(0.9);
}

.status-pill {
    position: absolute;
    padding: 1.2rem 2.5rem;
    background: var(--text-pure);
    color: var(--bg-dark);
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.top-left { top: 10%; left: -5%; }
.bottom-right { bottom: 10%; right: -5%; }

.hero-subtext p {
    font-size: 1.5rem;
    color: var(--text-soft);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* Showcase Grid */
.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding-bottom: 10rem;
}

.card-modern {
    padding: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    transition: var(--ease) 0.5s;
    overflow: hidden;
}

.card-modern:hover {
    background: oklch(100% 0 0 / 0.05);
    transform: translateY(-10px);
}

.card-modern.wide {
    grid-column: span 2;
}

.category {
    display: block;
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.card-modern h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.card-modern h2 span { opacity: 0.4; }

.card-modern p {
    font-size: 1.1rem;
    color: var(--text-soft);
    max-width: 350px;
}

.card-icon {
    font-size: 6rem;
    opacity: 0.8;
}

/* Executive Tiers */
.tiers-executive {
    padding-bottom: 15rem;
}

.tiers-header {
    margin-bottom: 6rem;
}

.tiers-header h2 { font-size: 3.5rem; margin-bottom: 1rem; }
.tiers-header p { color: var(--text-muted); font-size: 1.2rem; }

.tiers-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tier-minimal {
    padding: 3rem 4rem;
    background: oklch(100% 0 0 / 0.02);
    border: 1px solid var(--border-soft);
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--ease) 0.4s;
    position: relative;
}

.tier-minimal:hover {
    background: oklch(100% 0 0 / 0.04);
    border-color: var(--accent);
}

.tier-minimal.highlight {
    background: var(--text-pure);
    color: var(--bg-dark);
}

.tier-minimal.highlight .tier-price { color: var(--bg-dark); }
.tier-minimal.highlight p { color: oklch(14% 0.015 260 / 0.7); }

.badge-featured {
    position: absolute;
    top: -12px;
    right: 40px;
    background: var(--accent);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
}

.tier-info h3 { font-size: 2rem; margin-bottom: 0.5rem; }
.tier-info p { color: var(--text-soft); font-size: 1.1rem; }

.tier-price {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Outfit';
}

.tier-price span { font-size: 1.2rem; font-weight: 400; opacity: 0.6; }

/* Final Statement */
.final-statement {
    padding-bottom: 10rem;
}

.statement-card {
    padding: 8rem;
    text-align: center;
}

.statement-card h2 {
    font-size: 4.5rem;
    margin-bottom: 2rem;
}

.statement-card h2 span { opacity: 0.4; }

.statement-card p {
    font-size: 1.4rem;
    color: var(--text-soft);
    margin-bottom: 4rem;
    font-weight: 300;
}

/* Minimal Footer */
.minimal-footer {
    padding: 4rem 0;
    border-top: 1px solid var(--border-soft);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-center a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 2rem;
}

/* Animations */
@keyframes revealUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-up { opacity: 0; animation: revealUp 1.2s var(--ease) forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

/* Responsive */
@media (max-width: 1024px) {
    .container { padding: 0 2rem; }
    .hero-lifestyle-img { border-radius: 30px; }
    .showcase-grid { grid-template-columns: 1fr; }
    .card-modern.wide { grid-column: span 1; }
    .tier-minimal { flex-direction: column; text-align: center; gap: 2rem; }
    .editorial-hero h1 { font-size: 4rem; }
}
