/* Core Reset & Anti-Flicker Hardware Optimization Rules */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    /* Glowing Banker's Lamp glass shade gradient sweeping into rich Deep Forest/Hunter Green edges */
    background: radial-gradient(circle at top center, #0f6c43 0%, #074730 45%, #022316 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #000000;
    line-height: 1.6;
    min-height: 100vh;
}

/* Master Centered Page Framework - Zero Top Padding for Flush Banner Alignment */
.page-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 40px 20px; /* Zeroed top padding lets the header touch the screen edge */
}

/* Header Asset Containment Layouts */
.site-header {
    width: 100%;
    margin-bottom: 35px;
}

.header-link {
    display: block;
    width: 100%;
    text-decoration: none;
    /* Smooth transform scaling stabilized for high-performance desktop displays */
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.header-link:hover {
    transform: scale(1.002);
}

.hero-banner {
    display: block;
    width: 100%;
    height: auto;
    /* Strips default browser rounded corners on the very top edges so it fits flush */
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    box-shadow: 0 15px 35px rgba(1, 28, 17, 0.4); 
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-top: none;
    /* Eliminates visual shutter and layout micro-flickering during vertical scrolls */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Stark Pristine Black-on-White Content Card Canvas */
.vibe-card {
    background: #ffffff; /* Crisp Pure White background canvas body */
    border: 1px solid rgba(7, 71, 48, 0.1);
    padding: 55px 45px;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(2, 35, 22, 0.3);
}

/* Typography Accent Profiles & camelCase Preservation Settings */
h1 {
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: -0.01em;
    margin-bottom: 5px;
    color: #333333; /* Clean Professional Dark Gray Headline Text */
}

.tagline {
    font-size: 1.25rem;
    color: #074730; /* Polished Banker's Emerald tracking descriptor text */
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.intro-text {
    font-size: 1.15rem;
    color: #000000; /* Absolute rich black layout legibility */
    max-width: 850px;
    margin: 0 auto 25px auto;
    text-align: justify;
    text-justify: inter-word;
}

.bridge-text {
    font-size: 1.1rem;
    color: #475569;
    font-style: italic;
    margin-bottom: 35px;
    text-align: left;
}

/* Strategic Competencies Grid Lists */
.matrix-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
    text-align: left;
}

.matrix-item {
    background: #f8fafc; /* Fine soft grey panel framing */
    padding: 25px 30px;
    border-radius: 10px;
    border-left: 5px solid #074730; /* Clean Banker's Green accent anchor stripe */
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.matrix-item:hover {
    transform: translateX(4px);
    background: #f1f5f9;
}

.matrix-item h3 {
    font-size: 1.2rem;
    color: #333333; /* Clean Professional Dark Gray feature headers */
    margin-bottom: 8px;
    font-weight: 700;
}

.matrix-item p {
    font-size: 1rem;
    color: #1e293b; /* Dark charcoal detail paragraph font fill */
}

/* Platform Migrations Dashed Announcement Strip */
.status-box {
    background: #f0fdf4; /* Clean modern bright emerald/mint notification room */
    border: 1px dashed #047857;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 50px;
    text-align: left;
}

.status-box h4 {
    color: #065f46;
    font-size: 1.15rem;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.status-box p {
    font-size: 1rem;
    color: #111827;
}

/* Contact Network Fields Operational Layouts */
.contact-section {
    border-top: 1px solid rgba(7, 71, 48, 0.1);
    padding-top: 35px;
    text-align: left;
}

.contact-section h2 {
    font-size: 1.8rem;
    color: #333333; /* Unified Professional Dark Gray Contact section header */
    margin-bottom: 10px;
}

.contact-intro {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 25px;
}

.contact-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    font-size: 1rem;
    border: 1px solid #e2e8f0;
}

.contact-strip p {
    color: #111827;
}

.contact-strip strong {
    color: #074730; /* Clear banker's shade identifier markers */
}

.contact-strip a {
    color: #0a7e50; /* Smooth green connection anchors */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.contact-strip a:hover {
    color: #065f46;
    text-decoration: underline;
}

.site-footer {
    text-align: center;
    padding: 35px 20px 10px 20px;
    font-size: 0.85rem;
    color: #a3c7be; /* Fades cleanly into the deep green environment footer background */
    font-weight: 500;
}

/* Viewport Responsiveness Grid Breakpoint Adapters */
@media (max-width: 768px) {
    .vibe-card { padding: 35px 20px; }
    h1 { font-size: 2.3rem; }
    .contact-strip { grid-template-columns: 1fr; }
}