/* npp- prefixes */

:root {
    --npp-c-dark: #041022;
    --npp-c-darker: #020812;
    --npp-c-card: #0a1a36;
    --npp-c-gold: #d4af37;
    --npp-c-gold-hover: #efc94c;
    --npp-c-text: #f4f4f5;
    --npp-c-text-mut: #a1a9b8;
    --npp-f-head: 'Playfair Display', serif;
    --npp-f-body: 'Lato', sans-serif;
    --npp-radius: 4px;
    --npp-trans: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--npp-f-body);
    background-color: var(--npp-c-dark);
    color: var(--npp-c-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.npp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.npp-head-bar {
    background-color: rgba(2, 8, 18, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.npp-head-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.npp-head-logo-box {
    display: flex;
    align-items: center;
    gap: 16px;
}

.npp-head-abbr {
    font-family: var(--npp-f-head);
    font-size: 28px;
    font-weight: 700;
    color: var(--npp-c-gold);
    letter-spacing: 2px;
}

.npp-head-titles {
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(212, 175, 55, 0.3);
    padding-left: 16px;
}

.npp-head-brand {
    font-family: var(--npp-f-head);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
}

.npp-head-sub {
    font-size: 12px;
    color: var(--npp-c-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.npp-head-badge {
    border: 1px solid var(--npp-c-gold);
    color: var(--npp-c-gold);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
}

/* Hero */
.npp-showcase-zone {
    padding: 120px 0;
    background: radial-gradient(circle at 50% 30%, #122a59 0%, var(--npp-c-dark) 70%);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.npp-showcase-content {
    max-width: 800px;
    margin: 0 auto;
}

.npp-showcase-kicker {
    display: inline-block;
    color: var(--npp-c-gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 24px;
    position: relative;
}

.npp-showcase-kicker::before,
.npp-showcase-kicker::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: var(--npp-c-gold);
}

.npp-showcase-kicker::before {
    left: -45px;
}

.npp-showcase-kicker::after {
    right: -45px;
}

.npp-showcase-heading {
    font-family: var(--npp-f-head);
    font-size: 64px;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 32px;
    font-weight: 400;
}

.npp-showcase-desc {
    font-size: 18px;
    color: var(--npp-c-text-mut);
    margin-bottom: 56px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.npp-showcase-metrics {
    display: flex;
    justify-content: center;
    gap: 48px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 32px 0;
}

.npp-metric-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.npp-metric-title {
    font-size: 12px;
    color: var(--npp-c-text-mut);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.npp-metric-val {
    font-family: var(--npp-f-head);
    font-size: 20px;
    color: var(--npp-c-gold);
}

/* Sections */
.npp-info-zone {
    padding: 100px 0;
}

.npp-bg-alt {
    background-color: var(--npp-c-card);
}

.npp-zone-header {
    text-align: center;
    margin-bottom: 64px;
}

.npp-zone-heading {
    font-family: var(--npp-f-head);
    font-size: 40px;
    color: #fff;
    margin-bottom: 24px;
    font-weight: 400;
}

.npp-zone-intro {
    font-size: 16px;
    color: var(--npp-c-text-mut);
    max-width: 700px;
    margin: 0 auto;
}

.npp-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.npp-grid-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 40px 32px;
    border-radius: var(--npp-radius);
    transition: var(--npp-trans);
}

.npp-grid-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
}

.npp-card-kicker {
    display: block;
    color: var(--npp-c-gold);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.npp-card-title {
    font-family: var(--npp-f-head);
    font-size: 24px;
    color: #fff;
    margin-bottom: 16px;
    font-weight: 400;
}

.npp-card-text {
    font-size: 15px;
    color: var(--npp-c-text-mut);
    margin-bottom: 24px;
    min-height: 48px;
}

.npp-card-list {
    list-style: none;
}

.npp-card-list li {
    font-size: 14px;
    color: #fff;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.npp-card-list li::before {
    content: '♦';
    color: var(--npp-c-gold);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 12px;
}

.npp-card-list li:last-child {
    margin-bottom: 0;
}

/* Footer */
.npp-foot-bar {
    background-color: var(--npp-c-darker);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.npp-foot-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.npp-foot-col {
    max-width: 400px;
}

.npp-foot-heading {
    font-family: var(--npp-f-head);
    font-size: 20px;
    color: var(--npp-c-gold);
    margin-bottom: 16px;
    font-weight: 400;
}

.npp-foot-desc {
    font-size: 14px;
    color: var(--npp-c-text-mut);
}

.npp-foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.npp-foot-contacts {
    display: flex;
    gap: 24px;
}

.npp-contact-item {
    font-size: 13px;
    color: var(--npp-c-text-mut);
}

.npp-foot-nav {
    display: flex;
    gap: 24px;
}

.npp-nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--npp-trans);
}

.npp-nav-link:hover {
    color: var(--npp-c-gold);
}

/* Media Queries */
@media (max-width: 992px) {
    .npp-showcase-heading { font-size: 48px; }
    .npp-grid-three { grid-template-columns: 1fr; }
    .npp-foot-top { grid-template-columns: 1fr; gap: 40px; }
    .npp-foot-bottom { flex-direction: column; gap: 24px; text-align: center; }
    .npp-foot-contacts { flex-direction: column; gap: 8px; }
}

@media (max-width: 768px) {
    .npp-showcase-heading { font-size: 36px; }
    .npp-showcase-metrics { flex-direction: column; gap: 24px; align-items: center; }
    .npp-head-titles { display: none; }
    .npp-zone-heading { font-size: 32px; }
}
