:root {
    --lux-bg: #0b132b; /* Deep royal blue */
    --lux-surface: #131e3d;
    --lux-text: #e8eaf6;
    --lux-muted: #94a3b8;
    --lux-gold: #d4af37; /* Metallic gold */
    --lux-gold-light: #f3e5ab;
    --lux-border: #283759;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background-color: var(--lux-bg); color: var(--lux-text);
    font-family: 'Optima', 'Didot', 'Times New Roman', serif;
    background-image: radial-gradient(circle at 50% 0%, #1a2a50 0%, #0b132b 70%);
    background-attachment: fixed;
}
h1, h2, h3, .lux-sans { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; }
a { text-decoration: none; color: inherit; }

/* Luxury Nav */
.lux-nav-container { padding: 30px 50px; border-bottom: 1px solid rgba(212, 175, 55, 0.2);}
.lux-nav {
    max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center;
}
.lux-brand { font-size: 28px; font-weight: normal; color: var(--lux-gold-light); letter-spacing: 3px; display: flex; align-items: center; gap: 10px;}
.lux-brand::before { content: ''; width: 30px; height: 30px; background: linear-gradient(135deg, var(--lux-gold-light), var(--lux-gold)); mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 2L2 22h20L12 2z"/></svg>') center/contain; -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 2L2 22h20L12 2z"/></svg>') center/contain;}

.lux-links { display: flex; gap: 40px; }
.lux-links a { font-size: 13px; text-transform: uppercase; letter-spacing: 2px; color: var(--lux-muted); transition: color 0.4s;}
.lux-links a:hover, .lux-links a.active { color: var(--lux-gold); }

.btn-lux {
    background: linear-gradient(135deg, var(--lux-gold), #aa801d); color: #000;
    padding: 12px 30px; font-size: 12px; font-weight: bold; text-transform: uppercase; letter-spacing: 2px;
    border-radius: 2px; transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(212,175,55,0.2);
}
.btn-lux:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(212,175,55,0.4); }

.btn-lux-outline {
    background: transparent; color: var(--lux-gold); border: 1px solid var(--lux-gold);
    padding: 12px 30px; font-size: 12px; font-weight: bold; text-transform: uppercase; letter-spacing: 2px;
    border-radius: 2px; transition: all 0.3s;
}
.btn-lux-outline:hover { background: rgba(212,175,55,0.1); }

/* Hero */
.lux-hero { text-align: center; padding: 120px 20px 80px 20px;}
.lux-hero h1 { font-size: 56px; font-weight: 300; color: #fff; margin-bottom: 20px; font-family: 'Optima', serif; letter-spacing: 1px;}
.lux-hero p { font-size: 18px; color: var(--lux-muted); max-width: 700px; margin: 0 auto 50px auto; font-family: 'Helvetica Neue', sans-serif; line-height: 1.6;}

/* Trust Badges */
.lux-trust { display: flex; justify-content: center; gap: 40px; margin-bottom: 80px; flex-wrap: wrap;}
.badge { display: flex; align-items: center; gap: 10px; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: var(--lux-gold-light);}
.badge::before { content: '❖'; font-size: 18px;}

/* Value Props */
.lux-grid { max-width: 1200px; margin: 0 auto 100px auto; padding: 0 20px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;}
.lux-card { background: var(--lux-surface); padding: 50px 40px; border: 1px solid var(--lux-border); border-top: 3px solid var(--lux-gold); transition: transform 0.4s; text-align: center;}
.lux-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.3);}
.lc-icon { font-size: 36px; margin-bottom: 25px; color: var(--lux-gold);}
.lux-card h3 { font-size: 22px; margin-bottom: 15px; font-weight: normal; color: #fff;}
.lux-card p { font-size: 14px; color: var(--lux-muted); line-height: 1.8; font-family: 'Helvetica Neue', sans-serif;}

/* Stats Display */
.lux-stats { max-width: 1000px; margin: 0 auto 100px auto; display: flex; border: 1px solid var(--lux-gold); background: rgba(19, 30, 61, 0.5);}
.ls-box { flex: 1; text-align: center; padding: 40px; border-right: 1px solid rgba(212,175,55,0.2);}
.ls-box:last-child { border-right: none; }
.ls-num { font-size: 48px; color: var(--lux-gold-light); margin-bottom: 10px;}
.ls-lbl { font-size: 12px; font-family: 'Helvetica Neue', sans-serif; text-transform: uppercase; letter-spacing: 2px; color: var(--lux-muted);}

/* Network Table */
.lux-network { max-width: 1000px; margin: 0 auto 100px auto; padding: 0 20px;}
.lux-network h2 { text-align: center; font-size: 32px; font-weight: normal; color: #fff; margin-bottom: 40px;}
.net-table { width: 100%; border-collapse: collapse; font-family: 'Helvetica Neue', sans-serif;}
.net-table th { padding: 20px; border-bottom: 1px solid var(--lux-gold); color: var(--lux-gold-light); text-transform: uppercase; font-size: 12px; letter-spacing: 2px; text-align: left;}
.net-table td { padding: 20px; border-bottom: 1px solid var(--lux-border); font-size: 15px; color: #fff;}

/* FAQ */
.lux-faq { max-width: 800px; margin: 0 auto 100px auto; padding: 0 20px;}
.lux-faq h2 { text-align: center; font-size: 32px; font-weight: normal; color: #fff; margin-bottom: 40px;}
.fq-item { margin-bottom: 30px; }
.fq-q { font-size: 18px; color: var(--lux-gold-light); margin-bottom: 15px;}
.fq-a { font-size: 15px; color: var(--lux-muted); line-height: 1.6; font-family: 'Helvetica Neue', sans-serif;}

footer { text-align: center; padding: 50px; border-top: 1px solid rgba(212, 175, 55, 0.2); font-family: 'Helvetica Neue', sans-serif; font-size: 12px; color: var(--lux-muted); letter-spacing: 2px; text-transform: uppercase;}

@media (max-width: 900px) {
    .lux-nav { flex-direction: column; gap: 20px; }
    .lux-links { display: none; }
    .lux-grid { grid-template-columns: 1fr; }
    .lux-stats { flex-direction: column; }
    .ls-box { border-right: none; border-bottom: 1px solid rgba(212,175,55,0.2); }
}