/* ==========================================================================
   🏛 SHABLON 1: LUXURY GOLD & OBSIDIAN (MINIMAL LUXURY CSS FRAMEWORK)
   ========================================================================== */
:root {
    --bg-obsidian: #0B0B0B;
    --bg-graphite: #141414;
    --bg-panel: #1C1C1C;
    --luxury-gold: #D4AF37;
    --luxury-gold-bright: #F9E498;
    --luxury-gold-dark: #AA8413;
    --text-white: #FFFFFF;
    --text-platinum: #F5F5F7;
    --text-muted: #A0A5B0;
    
    --font-serif: 'Playfair Display', serif;
    --font-accent: 'Cinzel', serif;
    --font-sans: 'Inter', sans-serif;
    
    --border-gold-subtle: 1px solid rgba(212, 175, 55, 0.18);
    --gold-glow-mesh: 0 0 30px rgba(212, 175, 55, 0.15);
    --transition-premium: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Core Structural Resets */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-obsidian);
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--bg-obsidian);
    color: var(--text-platinum);
    font-family: var(--font-sans);
    line-height: 1.75;
    overflow-x: hidden;
    position: relative;
}

/* Scannable Structural Layouts */
.section-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 5;
}
.narrow-container {
    max-width: 880px;
}

/* Navigation Header Architecture */
.luxury-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: rgba(11, 11, 11, 0.96);
    backdrop-filter: blur(15px);
    border-bottom: var(--border-gold-subtle);
    z-index: 1000;
}
.header-inner {
    max-width: 1440px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}
.logo-anchor {
    display: flex;
    align-items: center;
    height: 52px;
    text-decoration: none;
}
.brand-logo {
    height: 100%;
    width: auto;
}
.luxury-desktop-nav {
    display: flex;
    gap: 2.25rem;
}
.luxury-desktop-nav a {
    color: var(--text-white);
    text-decoration: none;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-premium);
}
.luxury-desktop-nav a:hover {
    color: var(--luxury-gold);
    text-shadow: var(--gold-glow-mesh);
}

/* Mobile Toggle Hamburger UI */
.luxury-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1500;
}
.toggle-bar {
    width: 100%;
    height: 1px;
    background-color: var(--luxury-gold);
    transition: var(--transition-premium);
}
.luxury-menu-toggle[aria-expanded="true"] .toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.luxury-menu-toggle[aria-expanded="true"] .toggle-bar:nth-child(2) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Layout Link Panel Overlay */
.luxury-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-obsidian);
    z-index: 990;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.luxury-mobile-overlay.active {
    transform: translateY(0);
}
.luxury-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
    text-align: center;
}
.luxury-mobile-nav a {
    color: var(--text-white);
    font-family: var(--font-accent);
    font-size: 1.4rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Hero Section Layout */
.luxury-hero {
    padding-top: 170px;
    padding-bottom: 120px;
    background-size: 55% auto;
    background-position: right center;
    background-repeat: no-repeat;
    position: relative;
}
.hero-inner {
    display: flex;
    justify-content: flex-start;
}
.hero-text-block {
    max-width: 780px;
}
.hero-badge {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    color: var(--luxury-gold);
    letter-spacing: 4px;
    display: block;
    margin-bottom: 1.5rem;
}
h1 {
    font-family: var(--font-serif);
    font-size: 3.4rem;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.15;
    margin-bottom: 2.25rem;
    letter-spacing: -0.5px;
}
.hero-text-block p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}
.hero-text-block strong {
    color: var(--luxury-gold);
}
.hero-actions-rack {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
}

/* Production-Ready Premium Buttons */
.luxury-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.5rem;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-premium);
    cursor: pointer;
}
.btn-gold {
    background-color: var(--luxury-gold);
    color: var(--bg-obsidian);
    border: 1px solid var(--luxury-gold);
}
.btn-gold:hover {
    background-color: var(--luxury-gold-bright);
    box-shadow: var(--gold-mesh-glow);
    transform: translateY(-2px);
}
.btn-outline {
    background-color: transparent;
    color: var(--luxury-gold);
    border: 1px solid rgba(212, 175, 55, 0.4);
}
.btn-outline:hover {
    background-color: rgba(212, 175, 55, 0.05);
    border-color: var(--luxury-gold);
    transform: translateY(-2px);
}

/* Base Structural Sections colors */
.obsidian-section {
    padding: 110px 0;
}
.graphite-section {
    padding: 110px 0;
    background-color: var(--bg-graphite);
    border-top: var(--border-gold-subtle);
    border-bottom: var(--border-gold-subtle);
}

/* Elegant Segmented Headers */
.luxury-title-wrap {
    margin-bottom: 3.5rem;
}
.title-meta-num {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    color: var(--luxury-gold-dark);
    display: block;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}
h2 {
    font-family: var(--font-serif);
    font-size: 2.3rem;
    font-weight: 400;
    color: var(--text-white);
    letter-spacing: -0.5px;
}
.gold-accent-bar {
    width: 50px;
    height: 1px;
    background-color: var(--luxury-gold);
    margin-top: 1.25rem;
}
.centered-line { margin: 0 auto; }
.center-aligned { text-align: center; }

.luxury-lead-text {
    font-size: 1.15rem;
    color: var(--text-platinum);
    margin-bottom: 3.5rem;
}
.luxury-body-paragraph {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Asymmetric Fluid Split System Grid */
.asymmetric-split-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: start;
}
.flex-row-reverse {
    grid-template-columns: 0.85fr 1.15fr;
}
.data-cards-rack {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

/* Absolute VIP Premium Cards Plaques */
.luxury-premium-card {
    background: var(--bg-panel);
    border: var(--border-gold-subtle);
    padding: 3.5rem;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    transition: var(--transition-premium);
}
.luxury-premium-card:hover {
    border-color: var(--luxury-gold);
    box-shadow: 0 40px 70px rgba(212, 175, 55, 0.05);
    transform: translateY(-4px);
}
.card-inner-gold-line {
    position: absolute;
    top: 0;
    left: 40px;
    width: 40px;
    height: 1px;
    background-color: var(--luxury-gold-dark);
}
.card-inner-gold-line.bg-gold { background-color: var(--luxury-gold); }
.card-inner-gold-line.status-green { background-color: #10B981; }
.card-inner-gold-line.status-orange { background-color: #F59E0B; }
.card-inner-gold-line.status-red { background-color: #EF4444; }

.luxury-premium-card h3 {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 400;
    color: var(--text-white);
    margin-bottom: 2rem;
}
.luxury-premium-card p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

/* Gold Frame Structured Tables */
.gold-table-frame {
    border: var(--border-gold-subtle);
    background: var(--bg-panel);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.luxury-gold-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
.luxury-gold-table th, .luxury-gold-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.06);
}
.luxury-gold-table th {
    font-family: var(--font-accent);
    background-color: rgba(11, 11, 11, 0.4);
    color: var(--luxury-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.luxury-gold-table td {
    font-size: 0.95rem;
    color: var(--text-platinum);
}
.pure-gold-text {
    color: var(--luxury-gold);
    font-weight: 600;
}
.gold-status-tag {
    font-family: var(--font-accent);
    color: var(--text-white);
    background: rgba(212, 175, 55, 0.15);
    padding: 0.2rem 0.6rem;
    border: 1px solid var(--luxury-gold);
}

/* Ratings matrix table custom styles */
.structured-ratings td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.gold-mono-score {
    font-family: var(--font-accent);
    font-weight: 700;
    color: var(--text-white);
}
.gold-mono-score.premium-rank {
    color: var(--luxury-gold);
    text-shadow: var(--gold-glow-mesh);
}

/* Premium Web Studio Figure Case */
.luxury-studio-figure {
    width: 100%;
}
.figure-gold-case {
    border: var(--border-gold-subtle);
    padding: 12px;
    background-color: var(--bg-graphite);
    display: inline-block;
    width: 100%;
}
.luxury-studio-figure img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    display: block;
    filter: contrast(1.05) brightness(0.9);
    transition: var(--transition-premium);
}
.luxury-studio-figure:hover img {
    filter: contrast(1.1) brightness(1);
}
.full-width-figure img { max-height: 540px; }
figcaption {
    margin-top: 1.25rem;
    font-family: var(--font-serif);
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}
.fig-badge {
    color: var(--luxury-gold);
    font-family: var(--font-accent);
    font-style: normal;
    font-weight: 600;
    font-size: 0.75rem;
}

/* Elegant Sequenced Lists Layout */
.luxury-sequenced-list {
    list-style: none;
}
.luxury-sequenced-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.75rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.1);
}
.luxury-sequenced-list li:last-child { border-bottom: none; }
.list-counter-luxury {
    font-family: var(--font-accent);
    font-weight: 700;
    color: var(--luxury-gold);
    font-size: 1rem;
    min-width: 25px;
}
.list-text-prose {
    font-size: 1.05rem;
    color: var(--text-platinum);
}
.luxury-sub-steps-list {
    padding-left: 1.25rem;
}
.luxury-sub-steps-list li {
    margin-bottom: 0.85rem;
    color: var(--text-muted);
}

/* Warnings & Alert Blocks */
.luxury-notice-container {
    margin-top: 3rem;
    background: rgba(212, 175, 55, 0.02);
    border: var(--border-gold-subtle);
    padding: 2rem 2.5rem;
    border-left: 3px solid var(--luxury-gold);
}
.notice-gold-tag {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    color: var(--luxury-gold);
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.luxury-notice-container p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Luxury Bullet Lists Indicators */
.luxury-gold-bullet-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.85rem;
    color: var(--text-muted);
    list-style: none;
}
.luxury-gold-bullet-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--luxury-gold);
    font-size: 0.8rem;
}

/* Pro & Cons Specialized Icon Checkers */
.luxury-checked-list li, .luxury-crossed-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 1.25rem;
    color: var(--text-platinum);
    list-style: none;
}
.luxury-checked-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: 700;
}
.luxury-crossed-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #EF4444;
    font-weight: 700;
}

/* Alert Box Elements styling */
.alert-panel-box {
    border: 1px solid rgba(239, 68, 68, 0.2);
    background: rgba(239, 68, 68, 0.01);
}
.alert-panel-box h2 {
    color: #F87171;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.text-center-wrapper { text-align: center; }
.final-verdict-card { text-align: left; }

/* Interactive Accordion Matrix Drawer */
.luxury-accordion-rack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}
.accordion-node {
    background-color: var(--bg-panel);
    border: var(--border-gold-subtle);
}
.accordion-node-trigger {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.75rem 2.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}
.accordion-node-trigger h3 {
    font-family: var(--font-serif);
    color: var(--text-white);
    font-size: 1.15rem;
    font-weight: 400;
}
.gold-cross-indicator {
    position: relative;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}
.gold-cross-indicator::before, .gold-cross-indicator::after {
    content: '';
    position: absolute;
    background-color: var(--luxury-gold);
    transition: var(--transition-premium);
}
.gold-cross-indicator::before {
    top: 6px;
    left: 0;
    width: 100%;
    height: 1px;
}
.gold-cross-indicator::after {
    top: 0;
    left: 6px;
    width: 1px;
    height: 100%;
}
.accordion-node-trigger[aria-expanded="true"] .gold-cross-indicator::after {
    transform: rotate(90deg);
    opacity: 0;
}
.accordion-node-body {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-premium);
}
.accordion-node-body p {
    padding: 0 2.25rem 2rem 2.25rem;
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 0.98rem;
}

/* Studio Closing Footer System */
.luxury-footer {
    background-color: #050505;
    padding: 70px 0;
    border-top: var(--border-gold-subtle);
}
.footer-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}
.footer-studio-logo {
    height: 55px;
}
.footer-regulatory-zone {
    text-align: center;
    max-width: 860px;
}
.regulatory-disclaimer {
    font-size: 0.8rem;
    color: #6B7280;
    margin-bottom: 1.5rem;
}
.regulatory-copyright {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    color: var(--luxury-gold-dark);
    letter-spacing: 1px;
}

/* Native Fade In Scroll Animations Logic */
.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1), transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE LAYOUT BREAKPOINTS
   ========================================================================== */
@media (max-width: 1440px) {
    .section-container { max-width: 1140px; }
}

@media (max-width: 1280px) {
    h1 { font-size: 3rem; }
    .luxury-hero { background-size: 50% auto; }
}

@media (max-width: 1024px) {
    .luxury-desktop-nav { display: none; }
    .luxury-menu-toggle { display: flex; }
    .asymmetric-split-grid { grid-template-columns: 1fr !important; gap: 3rem; }
    .grid-figure-block { order: -1; }
    .luxury-hero { background-image: linear-gradient(to bottom, rgba(11, 11, 11, 0.96) 60%, rgba(11, 11, 11, 0.5) 100%), url('appcr2.jpeg'); background-size: cover; background-position: center; padding-top: 150px; }
    .hero-text-block { max-width: 100%; text-align: center; }
    .hero-text-block p { text-align: center; }
    .hero-actions-rack { justify-content: center; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.85rem; }
    .obsidian-section, .graphite-section { padding: 70px 0; }
    .luxury-premium-card { padding: 2.5rem; }
    .luxury-gold-table th, .luxury-gold-table td { padding: 1rem; font-size: 0.9rem; }
    .data-cards-rack { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.95rem; }
    .hero-actions-rack { flex-direction: column; width: 100%; gap: 1rem; }
    .luxury-btn { width: 100%; }
    .section-container { padding: 0 1.25rem; }
    .accordion-node-trigger { padding: 1.5rem 1.25rem; }
    .accordion-node-body p { padding: 0 1.25rem 1.5rem 1.25rem; }
}

@media (max-width: 390px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
}

@media (max-width: 375px) {
    .luxury-gold-table th, .luxury-gold-table td { padding: 0.85rem 0.5rem; font-size: 0.85rem; }
}