/* style.css */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #0B0E14;
    color: #F8F9FA;
    line-height: 1.6;
}
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Didot, 'Hoefler Text', Garamond, 'Times New Roman', serif;
    margin-top: 0;
    font-weight: 400;
}
a { text-decoration: none; color: inherit; }
ul { margin: 0; padding-left: 1.5rem; }

/* Wrapper */
.nrmnd-layout-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
.nrmnd-topbar-area {
    background-color: rgba(11, 14, 20, 0.95);
    border-bottom: 1px solid #232B3E;
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
}
.nrmnd-brand-block { display: flex; align-items: center; gap: 1.5rem; }
.nrmnd-brand-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #D4AF37;
    letter-spacing: 2px;
    font-family: 'Playfair Display', serif;
}
.nrmnd-brand-text { display: flex; flex-direction: column; }
.nrmnd-brand-name { font-size: 1.2rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.nrmnd-brand-subtitle { font-size: 0.85rem; color: #8F9BAF; }
.nrmnd-header-badge {
    border: 1px solid #D4AF37;
    color: #D4AF37;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero */
.nrmnd-hero-showcase {
    padding: 8rem 2rem;
    text-align: center;
    background: radial-gradient(circle at center, #151B27 0%, #0B0E14 100%);
    position: relative;
    overflow: hidden;
}
.nrmnd-hero-showcase::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    pointer-events: none;
}
.nrmnd-hero-content-wrap { max-width: 900px; margin: 0 auto; position: relative; z-index: 2; }
.nrmnd-hero-label {
    display: inline-block;
    color: #D4AF37;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #D4AF37;
    padding-bottom: 0.3rem;
}
.nrmnd-hero-headline {
    font-size: 4rem;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}
.nrmnd-hero-desc {
    font-size: 1.2rem;
    color: #A9B4C8;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-inline: auto;
}
.nrmnd-hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.nrmnd-metric-box {
    background-color: rgba(23, 30, 43, 0.6);
    border: 1px solid #232B3E;
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.nrmnd-metric-box:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
}
.nrmnd-metric-title { font-size: 1.1rem; color: #D4AF37; margin-bottom: 0.5rem; font-family: 'Playfair Display', serif; }
.nrmnd-metric-text { font-size: 0.9rem; color: #A9B4C8; }

/* Sections */
.nrmnd-content-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.nrmnd-content-section.nrmnd-alt-bg {
    background-color: #0E121A;
    max-width: 100%;
}
.nrmnd-section-header { text-align: center; margin-bottom: 4rem; }
.nrmnd-section-headline { font-size: 2.5rem; color: #D4AF37; margin-bottom: 1rem; }
.nrmnd-section-intro { font-size: 1.1rem; color: #A9B4C8; max-width: 600px; margin: 0 auto; }

/* Cards Grid */
.nrmnd-cards-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.nrmnd-info-card {
    background-color: #121721;
    border: 1px solid #232B3E;
    padding: 2.5rem;
    border-radius: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.nrmnd-info-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    background-color: #151B27;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.05);
}
.nrmnd-card-kicker {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #D4AF37;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}
.nrmnd-card-title {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
}
.nrmnd-card-desc {
    font-size: 0.95rem;
    color: #A9B4C8;
    margin-bottom: 1.5rem;
}
.nrmnd-card-bullets {
    color: #8F9BAF;
    font-size: 0.9rem;
}
.nrmnd-card-bullets li {
    margin-bottom: 0.5rem;
}

/* Footer */
.nrmnd-site-footer {
    background-color: #07090D;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid #1A2130;
    margin-top: auto;
}
.nrmnd-footer-slogan {
    text-align: center;
    font-size: 2rem;
    color: #D4AF37;
    font-family: 'Playfair Display', serif;
    margin-bottom: 3rem;
}
.nrmnd-footer-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}
.nrmnd-footer-segment h4 {
    color: #FFFFFF;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}
.nrmnd-footer-segment p, .nrmnd-footer-segment a {
    color: #8F9BAF;
    font-size: 0.9rem;
    line-height: 1.8;
}
.nrmnd-footer-segment a:hover { color: #D4AF37; }
.nrmnd-footer-nav {
    list-style: none;
    padding: 0;
}
.nrmnd-footer-nav li { margin-bottom: 0.8rem; }
.nrmnd-footer-base {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #1A2130;
    color: #5C6A82;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 992px) {
    .nrmnd-hero-headline { font-size: 3rem; }
    .nrmnd-hero-metrics, .nrmnd-cards-layout { grid-template-columns: repeat(2, 1fr); }
    .nrmnd-footer-layout { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nrmnd-hero-metrics, .nrmnd-cards-layout { grid-template-columns: 1fr; }
    .nrmnd-footer-layout { grid-template-columns: 1fr; }
    .nrmnd-topbar-area { flex-direction: column; gap: 1rem; }
    .nrmnd-hero-showcase { padding: 4rem 1.5rem; }
}
