@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&display=swap');

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

:root {
    --bg: #f0f9ff;
    --white: #fff;
    --dark: #0c1a2e;
    --teal: #0891b2;
    --teal-light: #22d3ee;
    --teal-pale: #ecfeff;
    --border: #a5f3fc;
    --text: #0c1a2e;
    --text-light: #1e4a6a;
    --amber: #d97706;
    --green: #16a34a;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.8;
}

/* HEADER */
.header {
    background: var(--dark);
    padding: 14px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.h-logo {
    font-size: 1em;
    font-weight: 800;
    color: var(--teal-light);
}
.h-tag {
    background: rgba(34,211,238,0.1);
    border: 1px solid rgba(34,211,238,0.2);
    color: var(--teal-light);
    font-size: 0.7em;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, #0c2a3a 50%, var(--teal) 100%);
    padding: 80px 40px;
    border-bottom: 3px solid var(--teal-light);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '🧭';
    position: absolute;
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16em;
    opacity: 0.04;
}
.hero-inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}
.h-kicker {
    font-size: 0.7em;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal-light);
    margin-bottom: 14px;
}
.hero h1 {
    font-size: 2.4em;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
}
.hero h1 em { color: #a5f3fc; font-style: normal; }
.hero-sub {
    color: rgba(255,255,255,0.45);
    font-size: 1em;
    max-width: 500px;
    margin: 0 auto 28px;
}
.nav-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.np {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.75);
    font-size: 0.82em;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
}
@media (max-width: 768px) {
    .hero h1 { font-size: 1.9em; }
    .hero { padding: 56px 20px; }
}

/* ANCHOR ROW */
.anchor-row {
    background: var(--teal-pale);
    border-left: 5px solid var(--teal);
    padding: 24px 40px;
    border-top: 2px solid var(--border);
    border-bottom: 2px solid var(--border);
}
.ar-inner {
    max-width: 1060px;
    margin: 0 auto;
}
.ar-label {
    font-size: 0.68em;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 8px;
}
.anchor-row p {
    font-size: 1.08em;
    color: var(--text);
    line-height: 1.85;
}

/* MAIN */
.main {
    max-width: 1060px;
    margin: 0 auto;
    padding: 52px 24px 80px;
}

/* NAV GRID */
.nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}
.ng-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
}
.ngc-icon { font-size: 2em; margin-bottom: 10px; }
.ngc-title {
    font-weight: 800;
    color: var(--dark);
    font-size: 0.95em;
    margin-bottom: 6px;
}
.ngc-desc {
    font-size: 0.9em;
    color: var(--text-light);
    line-height: 1.65;
}

/* PANEL */
.panel {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 38px;
    margin-bottom: 22px;
}
.panel h2 {
    font-size: 1.4em;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 14px;
}
.panel h3 {
    font-size: 1.05em;
    font-weight: 700;
    color: var(--teal);
    margin: 20px 0 8px;
}
.panel p {
    font-size: 1.02em;
    color: var(--text-light);
    margin-bottom: 14px;
    text-align: justify;
    line-height: 1.78;
}
.panel p.last-para {
    font-style: italic;
    border-left: 3px solid var(--amber);
    padding: 14px 16px;
    background: #fffbeb;
    border-radius: 0 6px 6px 0;
    color: var(--text);
}
@media (max-width: 768px) {
    .panel { padding: 22px; }
}

/* LINK */
a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid rgba(8,145,178,0.25);
}
a:hover { border-color: var(--teal); }

/* FOOTER */
footer {
    background: var(--dark);
    border-top: 3px solid var(--teal-light);
    padding: 26px 24px;
    text-align: center;
}
footer p {
    color: #1e3a5f;
    font-size: 0.88em;
}
