:root {
    --na-blue: #0e2d63;
    --na-blue-2: #163f8b;
    --na-sky: #edf5ff;
    --na-border: #d9e5f4;
    --na-text: #12274d;
    --na-muted: #506580;
    --na-card: #ffffff;
    --na-shadow: 0 14px 34px rgba(18, 39, 77, 0.08);
    --na-radius: 24px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.na-body {
    margin: 0;
    font-family: "Avenir Next", Inter, "Segoe UI", Arial, sans-serif;
    color: var(--na-text);
    background:
        radial-gradient(circle at top left, rgba(237, 245, 255, 0.9), transparent 38%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.container {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
}

.na-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(217, 229, 244, 0.9);
    transition: box-shadow 0.2s ease, background 0.2s ease;
}

.na-header.is-scrolled {
    box-shadow: 0 10px 22px rgba(18, 39, 77, 0.08);
    background: rgba(255, 255, 255, 0.96);
}

.na-header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 84px;
}

.na-brand {
    flex: 0 0 auto;
}

.na-brand-image {
    height: 50px;
    width: auto;
    max-width: 100%;
}

.na-header-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    flex: 1 1 auto;
}

.na-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.na-nav-item {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.na-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 28px 10px;
    font-size: 0.98rem;
    color: #273b61;
    position: relative;
}

.na-nav-link.is-active::after {
    content: '';
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 0;
    height: 3px;
    border-radius: 999px;
    background: var(--na-blue);
}

.na-nav-caret {
    font-size: 0.8em;
    color: #5f7391;
}

.na-nav-dropdown {
    position: absolute;
    top: calc(100% - 6px);
    left: 0;
    min-width: 240px;
    padding: 10px;
    border: 1px solid rgba(180, 205, 229, 0.82);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 34px rgba(18, 39, 77, 0.12);
    display: none;
    z-index: 120;
}

.na-nav-item:hover .na-nav-dropdown,
.na-nav-item:focus-within .na-nav-dropdown {
    display: grid;
    gap: 4px;
}

.na-nav-dropdown-link {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    color: #1d4c7d;
    font-size: 0.94rem;
    font-weight: 700;
    white-space: nowrap;
}

.na-nav-dropdown-link:hover,
.na-nav-dropdown-link:focus-visible {
    background: #eef5ff;
}

.na-utility {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    font-size: 0.9rem;
}

.na-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #26395f;
}

.na-icon-link img,
.na-account-link img,
.na-account-toggle img {
    width: 16px;
    height: 16px;
}

.na-icon-link + .na-account-link,
.na-icon-link + .na-account-menu {
    position: relative;
    margin-left: 0;
    padding-left: 18px;
}

.na-icon-link + .na-account-link::before,
.na-icon-link + .na-account-menu::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 20px;
    background: #dbe4f0;
    transform: translateY(-50%);
}

.na-account-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 36px;
    padding: 0 10px;
    color: #26395f;
    font-weight: 700;
    font-size: 0.9rem;
}

.na-account-menu {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: -12px;
}

.na-account-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 36px;
    padding: 0 10px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #26395f;
    font: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.18s ease, background 0.18s ease;
}

.na-account-toggle:hover,
.na-account-menu.is-open .na-account-toggle,
.na-account-menu:focus-within .na-account-toggle {
    color: var(--na-blue);
    background: #f4f8fe;
}

.na-account-toggle-text {
    display: inline-flex;
    align-items: center;
    text-align: left;
}

.na-account-toggle-label {
    font-weight: 800;
    line-height: 1.1;
    white-space: nowrap;
}

.na-account-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: min(320px, 82vw);
    padding: 14px 12px 12px;
    border: 1px solid rgba(180, 205, 229, 0.82);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 34px rgba(18, 39, 77, 0.12);
    display: none;
    z-index: 120;
}

.na-account-menu.is-open .na-account-dropdown,
.na-account-menu:hover .na-account-dropdown,
.na-account-menu:focus-within .na-account-dropdown {
    display: grid;
    gap: 12px;
}

.na-play-as-form {
    display: grid;
    gap: 8px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e1eaf6;
}

.na-play-as-label {
    font-size: 0.82rem;
    font-weight: 900;
    color: #1d4c7d;
}

.na-play-as-control {
    position: relative;
}

.na-play-as-control::after {
    content: '';
    position: absolute;
    right: 1rem;
    top: 50%;
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--na-blue);
    border-bottom: 2px solid var(--na-blue);
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
}

.na-play-as-select {
    width: 100%;
    min-height: 44px;
    padding: 0.68rem 2.5rem 0.68rem 0.95rem;
    border: 1px solid rgba(180, 205, 229, 0.82);
    border-radius: 999px;
    background: #fff;
    color: #1d4c7d;
    font: inherit;
    font-weight: 700;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.na-account-dropdown-link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 12px;
    border-radius: 10px;
    color: #1d4c7d;
    font-weight: 800;
    font-size: 0.92rem;
}

.na-account-dropdown-link:hover {
    background: #eef5ff;
}

.na-account-dropdown-link + .na-account-dropdown-link {
    border-top: 1px solid #eef3fb;
}

.na-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    margin-left: 12px;
    padding: 0.65rem 1.15rem;
    border-radius: 8px;
    border: 1px solid transparent;
    background: #0e2d63;
    color: #fff;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 6px 12px rgba(14, 45, 99, 0.14);
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.na-login-btn:hover {
    transform: translateY(-1px);
}

.na-login-btn.is-alt {
    background: rgba(255, 255, 255, 0.78);
    color: #1d4c7d;
    border-color: #d6e3ef;
    box-shadow: none;
}

.na-nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--na-border);
    border-radius: 12px;
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.na-nav-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: var(--na-blue);
    border-radius: 999px;
}

.na-home {
    padding-bottom: 48px;
}

.portal-hero.na-hero {
    position: relative;
    overflow: hidden;
    margin-top: -2px;
    padding: 0;
}

.na-hero-shell {
    position: relative;
    min-height: 275px;
    height: 383px;
    overflow: hidden;
    background: #fff;
    border-radius: 0 0 10px 10px;
    border: 0.5px solid rgb(93, 88, 127);
}

.na-hero-plant {
    position: absolute;
    left: -88px;
     bottom: -64px;
    width: 230px;
    height: 305px;
    z-index: 4;
    pointer-events: none;
    opacity: 0.78;
    filter: blur(2px);
    overflow: hidden;
}

.na-hero-plant-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left bottom;
}

.na-hero-shell::after {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 58%;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(90deg, #ffffff 84%, #ffffff 70%, rgba(255, 255, 255, 0.9) 87%, rgba(255, 255, 255, 0) 100%);
}

.na-hero-copy {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    min-height: 275px;
    width: 50%;
    padding: 2em 2rem 2em 4.5rem;
}

.na-hero-copy-inner {
    width: min(100%, 540px);
}

.na-banner-title {
    margin: 10;
    color: #0f2b63;
    font-size: 2.80em;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.na-hero-text {
    margin: 1rem 0 0;
    max-width: 510px;
    color: #4e6489;
    font-size: 1.05rem;
    line-height: 1.55;
}

.na-hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1.35rem;
}

.na-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    min-height: 48px;
    padding: 0 1.5rem;
    border-radius: 12px;
    font-size: 0.98rem;
    font-weight: 700;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.na-btn-primary {
    background: #0f2b63;
    color: #fff;
    box-shadow: 0 10px 22px rgba(15, 43, 99, 0.14);
}

.na-btn-secondary {
    background: rgba(255, 255, 255, 0.96);
    color: #0f2b63;
    border: 1px solid #b7c6de;
}

.na-btn-icon {
    width: 18px;
    height: 18px;
    border: 2px solid currentColor;
    border-radius: 999px;
    position: relative;
    flex: 0 0 auto;
}

.na-btn-icon::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 3px;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid currentColor;
}

.na-hero-media {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 52%;
    z-index: 1;
}

.na-hero-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.na-section {
    padding-top: 26px;
}

.na-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    margin-bottom: 18px;
}

.na-section-header.is-centered {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.na-section-header h2 {
    margin: 0 0 8px;
    font-size: clamp(2rem, 4vw, 3rem);
}

.na-section-header p {
    margin: 0;
    color: var(--na-muted);
    font-size: 1.05rem;
}

.na-section-link {
    font-weight: 700;
    color: var(--na-blue-2);
}

.na-section-header.is-centered {
    padding-left: 0;
    min-height: 85px;
    justify-content: center;
}

.na-kids-preview-flyout {
    position: fixed;
    left: 20px;
    bottom: 8px;
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, 42px, 0) scale(0.92);
    transform-origin: bottom right;
    transition:
        opacity 260ms ease,
        transform 380ms cubic-bezier(0.2, 0.8, 0.2, 1),
        visibility 0s linear 380ms;
}

.na-kids-preview-flyout.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0) scale(1);
    transition:
        opacity 260ms ease,
        transform 380ms cubic-bezier(0.2, 0.8, 0.2, 1),
        visibility 0s linear 0s;
}

.na-kids-preview-flyout.is-closing {
    opacity: 0;
    visibility: visible;
    transform: translate3d(-110px, 120px, 0) scale(0.18) skewX(10deg);
    filter: saturate(0.96);
    transition:
        opacity 220ms ease,
        transform 520ms cubic-bezier(0.4, 0.05, 0.55, 0.95),
        visibility 0s linear 0s;
}

.na-kids-preview-close {
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 3;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 999px;
    background: #173b7a;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px rgba(16, 43, 96, 0.24);
    cursor: pointer;
}

.newimg {
    max-width: 360px;
    display: block;
}

.na-kids-preview-link {
    position: relative;
    z-index: 1;
    display: block;
}

.na-category-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.na-category-card,
.na-resource-card,
.na-popular-panel,
.na-newsletter-card {
    background: var(--na-card);
    border: 1px solid var(--na-border);
    border-radius: var(--na-radius);
    box-shadow: var(--na-shadow);
}

.na-category-card {
    padding: 28px 22px;
    display: grid;
    gap: 18px;
    min-height: 308px;
}

.na-category-icon-wrap {
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: linear-gradient(180deg, #f7fbff, #eef5ff);
}

.na-category-icon-wrap img {
    width: 78px;
    height: 78px;
    object-fit: contain;
}

.na-category-card h3 {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.35;
}

.na-category-card p {
    margin: 0;
    color: var(--na-muted);
    line-height: 1.55;
}

.na-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2552c7;
    font-weight: 800;
}

.na-popular-panel {
    padding: 18px 20px;
}

.na-popular-items {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.na-popular-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 12px;
    align-items: center;
}

.na-popular-thumb {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--na-border);
    background: #f5f8fe;
}

.na-popular-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.na-popular-text h3 {
    margin: 0 0 6px;
    font-size: 1rem;
    line-height: 1.35;
}

.na-popular-text p {
    margin: 0;
    color: var(--na-muted);
    font-size: 0.92rem;
}

.na-mission-band {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    background: linear-gradient(180deg, #f9fbff, #eef5ff);
    border: 1px solid var(--na-border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--na-shadow);
}

.na-mission-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    padding: 26px 28px;
    align-items: start;
}

.na-mission-item + .na-mission-item {
    border-left: 1px solid #d8e4f4;
}

.na-mission-item img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.na-mission-item h3 {
    margin: 0 0 8px;
    font-size: 1.1rem;
}

.na-mission-item p {
    margin: 0;
    color: var(--na-muted);
    line-height: 1.55;
}

.na-resource-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.na-resource-card {
    overflow: hidden;
}

.na-resource-media {
    position: relative;
    aspect-ratio: 1.28 / 1;
    overflow: hidden;
}

.na-resource-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.na-resource-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    min-height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 800;
}

.na-resource-badge[data-theme="Education"] { background: #2f6fb2; }
.na-resource-badge[data-theme="Professional"] { background: #1f94ad; }
.na-resource-badge[data-theme="Students"] { background: #6f4bd6; }
.na-resource-badge[data-theme="Family"] { background: #e57a1a; }

.na-resource-body {
    padding: 18px 18px 20px;
}

.na-resource-body h3 {
    margin: 0 0 14px;
    font-size: 1.2rem;
    line-height: 1.4;
}

.na-resource-read {
    color: #2552c7;
    font-weight: 800;
}

.na-newsletter-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 22px;
    align-items: center;
    padding: 28px 30px;
    background: linear-gradient(180deg, #fbfdff, #eef5ff);
}

.na-newsletter-copy {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 16px;
    align-items: start;
}

.na-newsletter-copy img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.na-newsletter-copy h3 {
    margin: 0 0 6px;
    font-size: 1.55rem;
}

.na-newsletter-copy p {
    margin: 0;
    color: var(--na-muted);
    line-height: 1.55;
}

.na-newsletter-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
}

.na-newsletter-form input {
    min-height: 58px;
    padding: 0 18px;
    border-radius: 14px;
    border: 1px solid #c9d9ef;
    font: inherit;
}

.na-newsletter-message {
    margin-top: 10px;
    font-weight: 700;
    color: var(--na-muted);
}

.na-newsletter-message.is-success {
    color: #177141;
}

.na-newsletter-message.is-error {
    color: #a12a2a;
}

.na-footer {
    margin-top: 44px;
    padding: 44px 0 52px;
    background: linear-gradient(180deg, #0e2d63 0%, #0a2047 100%);
    color: #eaf1ff;
}

.na-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.1fr;
    gap: 28px;
}

.na-footer-brand-image {
    width: 260px;
    max-width: 100%;
    margin-bottom: 18px;
}

.na-footer-brand p,
.na-footer-column li,
.na-footer-copy {
    color: #d2def5;
    line-height: 1.8;
}

.na-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.na-socials a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    display: grid;
    place-items: center;
}

.na-footer-column h4 {
    margin: 0 0 16px;
    font-size: 1.1rem;
}

.na-footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.na-footer-column li {
    margin-bottom: 8px;
}

.na-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.na-contact-list img {
    width: 18px;
    height: 18px;
}

.na-contact-pin {
    display: inline-flex;
    width: 18px;
    justify-content: center;
}

.parent-lock-overlay {
    position: fixed;
    inset: 0;
    z-index: 240;
    background: rgba(15, 33, 69, 0.28);
    backdrop-filter: blur(12px);
}

.parent-lock-modal {
    position: fixed;
    inset: 0;
    z-index: 241;
    display: grid;
    place-items: center;
    padding: 24px;
}

.parent-lock-card {
    width: min(100%, 560px);
    padding: 32px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(205, 221, 244, 0.96);
    box-shadow: 0 28px 60px rgba(18, 39, 77, 0.18);
}

.parent-lock-kicker {
    display: inline-flex;
    margin-bottom: 10px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #d96c31;
}

.parent-lock-card h2 {
    margin: 0 0 12px;
    color: #12274d;
}

.parent-lock-card p {
    margin: 0 0 22px;
    color: var(--na-muted);
}

.parent-lock-form {
    display: grid;
    gap: 16px;
}

.parent-lock-field {
    display: grid;
    gap: 8px;
}

.parent-lock-field span {
    font-weight: 700;
    color: #173b7d;
}

.parent-lock-field input {
    min-height: 52px;
    padding: 0 16px;
    border-radius: 16px;
    border: 1px solid rgba(177, 201, 238, 0.95);
    background: #fff;
    font: inherit;
}

.parent-lock-error {
    padding: 12px 14px;
    border-radius: 16px;
    background: #fff0f0;
    border: 1px solid #f0b7b7;
    color: #aa3f3f;
    font-weight: 700;
}

.parent-lock-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.parent-lock-btn {
    border: 0;
    border-radius: 999px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #173b7d, #2a66bb);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

.parent-lock-link {
    color: #4f688e;
    font-weight: 700;
}

@media (max-width: 1180px) {
    .na-category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .na-popular-items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .na-mission-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .na-resource-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .na-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .newimg {
        max-width: min(240px, 70vw);
    }

    .na-kids-preview-flyout {
        left: 12px;
        bottom: 12px;
    }

    .na-section-header.is-centered {
        min-height: 0;
    }

    .na-header-inner {
        min-height: 72px;
        justify-content: space-between;
    }

    .na-nav-toggle {
        display: inline-flex;
    }

    .na-header-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid var(--na-border);
        box-shadow: 0 14px 22px rgba(18, 39, 77, 0.08);
        padding: 18px 20px 24px;
        display: none;
        flex-direction: column;
        align-items: stretch;
    }

    .na-header-links.is-open {
        display: flex;
    }

    .na-nav,
    .na-utility {
        flex-direction: column;
        align-items: stretch;
    }

    .na-nav-item {
        display: block;
    }

    .na-nav-dropdown {
        position: static;
        min-width: 0;
        margin: 0 0 8px;
        padding: 6px 0 0 18px;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        display: grid;
    }

    .na-nav-dropdown-link {
        padding: 8px 0;
        border-radius: 0;
    }

    .na-nav-link {
        padding: 12px 0;
    }

    .na-nav-link.is-active::after {
        display: none;
    }

    .na-login-btn,
    .na-account-toggle {
        justify-content: center;
    }

    .na-account-dropdown {
        position: static;
        width: 100%;
        margin-top: 10px;
    }

    .na-hero-shell {
        min-height: 275px;
        height: auto;
    }

    .parent-lock-card {
        padding: 24px;
        border-radius: 24px;
    }

    .parent-lock-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .parent-lock-btn,
    .parent-lock-link {
        text-align: center;
    }

    .na-hero-plant {
        left: -108px;
        width: 210px;
        height: 270px;
        opacity: 0.4;
    }

    .na-hero-shell::after {
        width: 100%;
        background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 42%, rgba(255, 255, 255, 0.3) 72%, rgba(255, 255, 255, 0) 100%);
    }

    .na-hero-copy {
        width: 100%;
        min-height: 275px;
        padding: 1.75rem 1.5rem;
        align-items: flex-start;
    }

    .na-hero-copy-inner {
        width: min(100%, 100%);
    }

    .na-banner-title {
        font-size: 2.25rem;
    }

    .na-hero-text {
        font-size: 1rem;
        max-width: 100%;
    }

    .na-hero-actions {
        flex-wrap: wrap;
    }

    .na-hero-media {
        width: 100%;
    }

    .na-newsletter-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 24px, 1240px);
    }

    .na-category-grid,
    .na-popular-items,
    .na-mission-band,
    .na-resource-grid,
    .na-footer-grid {
        grid-template-columns: 1fr;
    }

    .na-newsletter-form {
        grid-template-columns: 1fr;
    }

    .na-brand-image {
        width: 220px;
    }

    .na-home .home-hero-title {
        white-space: normal;
        font-size: clamp(2.45rem, 11vw, 3.5rem);
    }

    .na-home .hero-text {
        max-width: none;
    }
}

.na-categories-page {
    padding-bottom: 28px;
}

.na-catalog-hero {
    padding-top: 28px;
}

.na-catalog-hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 36px;
    align-items: center;
    padding: 34px 8px 18px;
}

.na-catalog-hero-copy h1 {
    margin: 0 0 14px;
    font-size: clamp(3rem, 4vw, 4.4rem);
    line-height: 0.98;
    color: var(--na-blue);
}

.na-catalog-hero-copy p {
    max-width: 700px;
    margin: 0 0 22px;
    font-size: 1.08rem;
    line-height: 1.5;
    color: var(--na-muted);
}

.na-catalog-hero-art {
    position: relative;
    min-height: 198px;
    border: 1px solid #d5e2f2;
    border-radius: 30px;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 42%, rgba(255, 255, 255, 0.95) 0 8%, transparent 8.5%),
        radial-gradient(circle at 36% 50%, rgba(178, 203, 236, 0.9) 0 12%, transparent 12.5%),
        radial-gradient(circle at 64% 46%, rgba(193, 214, 242, 0.78) 0 13%, transparent 13.5%),
        radial-gradient(circle at 80% 40%, rgba(186, 209, 240, 0.82) 0 10%, transparent 10.5%),
        linear-gradient(180deg, #eef5ff 0%, #dfeafb 100%);
    box-shadow: var(--na-shadow);
}

.na-catalog-hero-blur {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 54%, rgba(255, 255, 255, 0.8), transparent 18%),
        radial-gradient(circle at 72% 42%, rgba(255, 224, 120, 0.16), transparent 10%),
        radial-gradient(circle at 48% 58%, rgba(152, 192, 242, 0.45), transparent 16%);
    filter: blur(12px);
}

.na-catalog-hero-star {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 4.5rem;
    color: #f3b42a;
    transform: translate(-50%, -50%);
    text-shadow: 0 8px 18px rgba(243, 180, 42, 0.25);
}

.na-catalog-hero-art[data-theme="blue"] .na-catalog-hero-badge,
.na-catalog-hero-art[data-theme="purple"] .na-catalog-hero-badge,
.na-catalog-hero-art[data-theme="green"] .na-catalog-hero-badge,
.na-catalog-hero-art[data-theme="orange"] .na-catalog-hero-badge,
.na-catalog-hero-art[data-theme="pink"] .na-catalog-hero-badge,
.na-catalog-hero-art[data-theme="teal"] .na-catalog-hero-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 104px;
    height: 96px;
    border-radius: 26px;
    transform: translate(-50%, -50%);
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.55);
}

.na-catalog-hero-art[data-theme="blue"] .na-catalog-hero-badge { background: #56b4f3; }
.na-catalog-hero-art[data-theme="purple"] .na-catalog-hero-badge { background: #7550e5; }
.na-catalog-hero-art[data-theme="green"] .na-catalog-hero-badge { background: #31aa50; }
.na-catalog-hero-art[data-theme="orange"] .na-catalog-hero-badge { background: #ff8610; }
.na-catalog-hero-art[data-theme="pink"] .na-catalog-hero-badge { background: #e13d9a; }
.na-catalog-hero-art[data-theme="teal"] .na-catalog-hero-badge { background: #289abc; }

.na-section-header.is-centered {
    justify-content: center;
    text-align: center;
}

.na-section-header h2,
.na-category-subsection h2,
.na-start-panel h2 {
    margin: 0;
    color: var(--na-blue);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.06;
}

.na-section-header p,
.na-category-subsection p,
.na-start-panel p {
    margin: 10px 0 0;
    color: var(--na-muted);
    font-size: 1.05rem;
}

.na-catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px;
    margin-top: 28px;
}

.na-catalog-card {
    background: var(--na-card);
    border: 1px solid #d6e3f3;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--na-shadow);
}

.na-catalog-card-top {
    height: 78px;
}

.na-catalog-card[data-theme="blue"] .na-catalog-card-top { background: #43a8ec; }
.na-catalog-card[data-theme="purple"] .na-catalog-card-top { background: #724be1; }
.na-catalog-card[data-theme="green"] .na-catalog-card-top { background: #31a84a; }
.na-catalog-card[data-theme="orange"] .na-catalog-card-top { background: #ff8109; }
.na-catalog-card[data-theme="pink"] .na-catalog-card-top { background: #e13c99; }
.na-catalog-card[data-theme="teal"] .na-catalog-card-top { background: #2b9abd; }

.na-catalog-card-body {
    position: relative;
    padding: 28px 28px 30px;
    min-height: 246px;
    display: grid;
    align-content: start;
}

.na-catalog-card-icon,
.na-category-overview-icon,
.na-category-tool-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    flex: 0 0 auto;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.42);
}

.na-catalog-card-icon {
    position: absolute;
    top: -28px;
    left: 28px;
}

.na-catalog-card-icon[data-theme="blue"],
.na-category-overview-icon[data-theme="blue"],
.na-category-tool-icon[data-theme="blue"] { background: #56b4f3; }
.na-catalog-card-icon[data-theme="purple"],
.na-category-overview-icon[data-theme="purple"],
.na-category-tool-icon[data-theme="purple"] { background: #7550e5; }
.na-catalog-card-icon[data-theme="green"],
.na-category-overview-icon[data-theme="green"],
.na-category-tool-icon[data-theme="green"] { background: #31aa50; }
.na-catalog-card-icon[data-theme="orange"],
.na-category-overview-icon[data-theme="orange"],
.na-category-tool-icon[data-theme="orange"] { background: #ff8610; }
.na-catalog-card-icon[data-theme="pink"],
.na-category-overview-icon[data-theme="pink"],
.na-category-tool-icon[data-theme="pink"] { background: #e13d9a; }
.na-catalog-card-icon[data-theme="teal"],
.na-category-overview-icon[data-theme="teal"],
.na-category-tool-icon[data-theme="teal"] { background: #289abc; }

.na-catalog-card-copy h3 {
    margin: 8px 0 10px;
    font-size: 2rem;
    line-height: 1.04;
    color: var(--na-blue);
}

.na-catalog-card-copy p {
    margin: 0;
    color: var(--na-muted);
    font-size: 1.02rem;
    line-height: 1.45;
}

.na-catalog-card-btn {
    justify-self: start;
    margin-top: 26px;
}

.na-start-panel {
    margin-top: 14px;
    padding: 34px 36px 38px;
    border-radius: 28px;
    border: 1px solid #d6e3f3;
    background: #edf5ff;
    box-shadow: var(--na-shadow);
}

.na-start-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.na-start-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 10px 28px;
    border-radius: 999px;
    border: 1px solid #c7d8ee;
    background: #ffffff;
    color: var(--na-blue);
    font-weight: 700;
}

.na-start-chip.is-static {
    cursor: default;
}

.na-featured-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.na-featured-mini-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-height: 148px;
    padding: 22px 20px;
    border-radius: 22px;
    border: 1px solid #d6e3f3;
    background: #fff;
    box-shadow: var(--na-shadow);
}

.na-featured-mini-card h3 {
    margin: 2px 0 8px;
    font-size: 1.1rem;
    line-height: 1.2;
    color: var(--na-blue);
}

.na-featured-mini-card p {
    margin: 0;
    color: var(--na-muted);
}

.na-featured-mini-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: #edf5ff;
    color: #f3b42a;
    font-size: 1.6rem;
    flex: 0 0 auto;
}

.na-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
    color: #607492;
    font-size: 0.95rem;
}

.na-breadcrumbs a {
    color: #607492;
}

.na-category-detail-grid {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.na-filter-panel,
.na-category-overview-card,
.na-category-tool-card,
.na-category-cta-panel {
    border-radius: 24px;
    border: 1px solid #d6e3f3;
    background: #fff;
    box-shadow: var(--na-shadow);
}

.na-filter-panel {
    padding: 30px 28px;
}

.na-filter-panel h2 {
    margin: 0 0 24px;
    font-size: 1.6rem;
    color: var(--na-blue);
}

.na-filter-chip {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 52px;
    margin-bottom: 12px;
    padding: 0 18px;
    border-radius: 14px;
    border: 1px solid #c7d8ee;
    background: #fff;
    color: var(--na-blue);
    font-size: 1rem;
    text-align: left;
}

.na-filter-chip.is-active {
    background: #dfeafb;
}

.na-filter-apply {
    width: 100%;
    margin-top: 6px;
}

.na-category-main {
    display: grid;
    gap: 28px;
}

.na-category-overview-card {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    padding: 34px 40px;
}

.na-category-overview-copy h2 {
    margin: 0 0 10px;
    font-size: clamp(2rem, 3vw, 3rem);
    color: var(--na-blue);
}

.na-category-overview-copy p {
    margin: 0 0 20px;
    color: var(--na-muted);
    font-size: 1.05rem;
    line-height: 1.45;
}

.na-category-subsection {
    display: grid;
    gap: 20px;
}

.na-category-tools-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.na-category-tool-card {
    padding: 22px 20px 20px;
    display: grid;
    gap: 18px;
}

.na-category-tool-card h3 {
    margin: 0 0 10px;
    font-size: 1.05rem;
    line-height: 1.2;
    color: var(--na-blue);
}

.na-category-tool-card p {
    margin: 0 0 12px;
    color: var(--na-muted);
    line-height: 1.45;
}

.na-category-tool-card a {
    color: var(--na-blue-2);
    font-weight: 700;
}

.na-category-cta-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 34px 40px;
}

.na-category-cta-panel h2 {
    margin: 0 0 8px;
    font-size: clamp(1.9rem, 2.8vw, 2.8rem);
    color: var(--na-blue);
}

.na-category-cta-panel p {
    margin: 0;
    color: var(--na-muted);
    font-size: 1.05rem;
}

.na-not-found {
    padding: 70px 0 100px;
}

.na-not-found-card {
    max-width: 760px;
    margin: 0 auto;
    padding: 48px;
    text-align: center;
    border-radius: 32px;
    border: 1px solid #d6e3f3;
    background: #fff;
    box-shadow: var(--na-shadow);
}

.na-not-found-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 84px;
    min-height: 40px;
    padding: 0 18px;
    border-radius: 999px;
    background: #edf5ff;
    color: var(--na-blue);
    font-weight: 800;
    letter-spacing: 0.05em;
}

.na-not-found-card h1 {
    margin: 18px 0 12px;
    font-size: clamp(2.4rem, 4vw, 4rem);
    line-height: 1.02;
    color: var(--na-blue);
}

.na-not-found-card p {
    margin: 0 0 26px;
    color: var(--na-muted);
    font-size: 1.08rem;
}

.na-info-hero {
    padding-top: 28px;
}

.na-info-hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 32px;
    align-items: start;
}

.na-info-hero-copy h1 {
    margin: 16px 0 14px;
    font-size: clamp(2.9rem, 4.3vw, 4.5rem);
    line-height: 1;
    color: var(--na-blue);
}

.na-info-hero-copy p {
    margin: 0;
    max-width: 760px;
    color: var(--na-muted);
    font-size: 1.08rem;
    line-height: 1.55;
}

.na-info-hero-card,
.na-info-card,
.na-contact-card {
    background: #fff;
    border: 1px solid #d6e3f3;
    border-radius: 26px;
    box-shadow: var(--na-shadow);
}

.na-info-hero-card {
    padding: 30px 32px;
}

.na-info-hero-card h2,
.na-contact-card h2,
.na-info-card h3 {
    margin: 0 0 12px;
    color: var(--na-blue);
}

.na-info-list {
    margin: 0;
    padding-left: 18px;
    color: var(--na-muted);
    line-height: 1.6;
}

.na-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.na-info-card {
    padding: 26px 24px;
}

.na-info-card p {
    margin: 0;
    color: var(--na-muted);
    line-height: 1.55;
}

.na-faq-list {
    display: grid;
    gap: 16px;
}

.na-faq-item {
    border: 1px solid #d6e3f3;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--na-shadow);
    overflow: hidden;
}

.na-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 24px;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--na-blue);
}

.na-faq-item summary::-webkit-details-marker {
    display: none;
}

.na-faq-item div {
    padding: 0 24px 22px;
}

.na-faq-item p {
    margin: 0;
    color: var(--na-muted);
    line-height: 1.55;
}

.na-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 28px;
}

.na-contact-card {
    padding: 30px 32px;
}

.na-contact-intro {
    margin: 0 0 22px;
    color: var(--na-muted);
}

.na-contact-sidebar {
    display: grid;
    gap: 18px;
    align-content: start;
}

.na-contact-form {
    display: grid;
    gap: 18px;
}

.na-policy-card {
    background: #fff;
    border: 1px solid #d6e3f3;
    border-radius: 26px;
    box-shadow: var(--na-shadow);
    padding: 34px 36px;
}

.na-policy-header {
    padding-bottom: 22px;
    margin-bottom: 26px;
    border-bottom: 1px solid #dbe8f6;
}

.na-policy-header h2 {
    margin: 0 0 12px;
    color: var(--na-blue);
    font-size: 2.1rem;
}

.na-policy-header p,
.na-policy-section p {
    margin: 0;
    color: var(--na-muted);
    line-height: 1.7;
}

.na-policy-section + .na-policy-section {
    margin-top: 28px;
}

.na-policy-section h3 {
    margin: 0 0 12px;
    color: var(--na-blue);
    font-size: 1.45rem;
}

.na-policy-section h4 {
    margin: 18px 0 8px;
    color: var(--na-blue);
    font-size: 1.05rem;
}

.na-policy-list {
    margin: 10px 0 0;
    padding-left: 22px;
    color: var(--na-muted);
    line-height: 1.7;
}

.na-policy-list li + li {
    margin-top: 6px;
}

.na-form-row {
    display: grid;
    gap: 8px;
}

.na-form-row label {
    color: var(--na-blue);
    font-weight: 700;
}

.na-form-row input,
.na-form-row select,
.na-form-row textarea {
    width: 100%;
    min-height: 54px;
    padding: 14px 16px;
    border: 1px solid #c9d9ed;
    border-radius: 16px;
    background: #fff;
    color: var(--na-text);
    font: inherit;
}

.na-form-row textarea {
    min-height: 180px;
    resize: vertical;
}

.na-contact-message {
    min-height: 22px;
    margin-top: 4px;
    color: var(--na-muted);
    font-weight: 700;
}

.na-contact-message.is-success {
    color: #16703e;
}

.na-contact-message.is-error {
    color: #a12b39;
}

.na-tools-page,
.na-resources-page {
    padding-bottom: 28px;
}

.na-utility-hero-art .na-catalog-hero-blur,
.na-library-hero-art .na-catalog-hero-blur {
    background:
        radial-gradient(circle at 20% 54%, rgba(255, 255, 255, 0.86), transparent 16%),
        radial-gradient(circle at 40% 62%, rgba(88, 180, 243, 0.4), transparent 18%),
        radial-gradient(circle at 70% 44%, rgba(192, 211, 241, 0.5), transparent 16%);
    filter: blur(18px);
}

.na-utility-art-piece,
.na-library-art-piece {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    font-weight: 900;
    line-height: 1;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.na-utility-art-piece.is-orange,
.na-library-art-piece.is-gold {
    background: #ffd166;
    color: #173469;
}

.na-utility-art-piece.is-teal {
    background: #289abc;
    color: #ffffff;
}

.na-utility-art-piece.is-pink,
.na-library-art-piece.is-pink {
    background: #e13d9a;
    color: #ffffff;
}

.na-library-art-piece.is-blue {
    background: #56b4f3;
    color: #173469;
}

.na-utility-art-piece.is-orange {
    top: 38px;
    left: 116px;
    width: 54px;
    height: 54px;
    font-size: 2rem;
}

.na-utility-art-piece.is-teal {
    top: 64px;
    left: 176px;
    width: 110px;
    height: 88px;
    font-size: 3rem;
}

.na-utility-art-piece.is-pink {
    top: 76px;
    left: 310px;
    width: 50px;
    height: 74px;
    font-size: 2rem;
}

.na-library-art-piece.is-gold {
    top: 48px;
    left: 92px;
    width: 58px;
    height: 50px;
    font-size: 1.85rem;
}

.na-library-art-piece.is-blue {
    top: 74px;
    left: 180px;
    width: 98px;
    height: 98px;
    font-size: 3rem;
    border-radius: 999px;
}

.na-library-art-piece.is-pink {
    top: 92px;
    left: 312px;
    width: 54px;
    height: 68px;
    font-size: 1.9rem;
}

.na-search-panel {
    padding: 28px 34px 30px;
    border: 1px solid #d6e3f3;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--na-shadow);
}

.na-search-panel h2 {
    margin: 0 0 18px;
    font-size: clamp(2rem, 2.8vw, 3rem);
    color: var(--na-blue);
}

.na-search-panel-form {
    display: grid;
    grid-template-columns: minmax(0, 2.4fr) repeat(4, minmax(0, 1fr)) auto;
    gap: 14px;
    align-items: center;
}

.na-search-input,
.na-search-select {
    width: 100%;
    min-height: 56px;
    padding: 0 20px;
    border: 1px solid #c9d9ed;
    border-radius: 999px;
    background: #edf5ff;
    color: var(--na-text);
    font: inherit;
}

.na-search-select {
    background: #ffffff;
    appearance: none;
}

.na-search-button {
    min-height: 56px;
    padding-inline: 28px;
}

.na-tool-grid,
.na-resource-type-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px 28px;
}

.na-tool-card,
.na-resource-type-card,
.na-featured-tool-card,
.na-resource-feature-card {
    border: 1px solid #d6e3f3;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--na-shadow);
}

.na-tool-card,
.na-resource-type-card {
    min-height: 208px;
    padding: 26px 26px 24px;
}

.na-tool-card h3,
.na-resource-type-card h3 {
    margin: 16px 0 12px;
    font-size: 1.18rem;
    line-height: 1.18;
    color: var(--na-blue);
}

.na-tool-card p,
.na-resource-type-card p,
.na-featured-tool-card p,
.na-resource-feature-card p {
    margin: 0;
    color: var(--na-muted);
    line-height: 1.45;
}

.na-tool-card a,
.na-resource-type-card a,
.na-featured-tool-card a,
.na-resource-feature-card a {
    display: inline-block;
    margin-top: 20px;
    color: var(--na-blue-2);
    font-weight: 700;
}

.na-tool-card-icon,
.na-featured-tool-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    border-radius: 18px;
    color: #ffffff;
    font-size: 2rem;
    line-height: 1;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.na-theme-pink { background: #e13d9a; }
.na-theme-orange { background: #ff8610; }
.na-theme-green { background: #31aa50; }
.na-theme-gold { background: #f3bb35; color: #173469; }
.na-theme-blue { background: #56b4f3; }
.na-theme-purple { background: #7550e5; }
.na-theme-teal { background: #289abc; }

.na-featured-tools-grid,
.na-resource-featured-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.na-featured-tool-card,
.na-resource-feature-card {
    min-height: 190px;
    padding: 24px 24px 22px;
}

.na-featured-tool-card h3,
.na-resource-feature-card h3 {
    margin: 16px 0 10px;
    font-size: 1.15rem;
    line-height: 1.15;
    color: var(--na-blue);
}

.na-resource-feature-card {
    position: relative;
}

.na-resource-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--na-blue);
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 700;
}

.na-chip-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 34px 36px;
    border: 1px solid #d6e3f3;
    border-radius: 28px;
    background: #edf5ff;
    box-shadow: var(--na-shadow);
}

.na-chip-panel.is-column {
    display: grid;
    gap: 20px;
    align-items: start;
}

.na-chip-panel h2 {
    margin: 0 0 8px;
    font-size: clamp(2rem, 2.8vw, 3rem);
    color: var(--na-blue);
}

.na-chip-panel p {
    margin: 0;
    color: var(--na-muted);
    font-size: 1.05rem;
}

.na-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.na-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid #c9d9ed;
    background: #ffffff;
    color: var(--na-blue);
    font-weight: 600;
}

@media (max-width: 1080px) {
    .na-catalog-grid,
    .na-featured-mini-grid,
    .na-category-tools-grid,
    .na-tool-grid,
    .na-resource-type-grid,
    .na-featured-tools-grid,
    .na-resource-featured-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .na-catalog-hero-shell,
    .na-category-detail-grid,
    .na-info-hero-shell,
    .na-contact-grid,
    .na-search-panel-form {
        grid-template-columns: 1fr;
    }

    .na-category-cta-panel,
    .na-chip-panel {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 720px) {
    .na-catalog-grid,
    .na-featured-mini-grid,
    .na-category-tools-grid,
    .na-info-grid,
    .na-tool-grid,
    .na-resource-type-grid,
    .na-featured-tools-grid,
    .na-resource-featured-grid {
        grid-template-columns: 1fr;
    }

    .na-catalog-hero-shell {
        gap: 22px;
        padding-top: 18px;
    }

    .na-catalog-hero-copy h1 {
        font-size: clamp(2.4rem, 10vw, 3.3rem);
    }

    .na-catalog-card-body,
    .na-filter-panel,
    .na-start-panel,
    .na-search-panel,
    .na-chip-panel,
    .na-category-overview-card,
    .na-category-cta-panel,
    .na-not-found-card {
        padding: 24px;
    }

    .na-category-overview-card,
    .na-chip-panel {
        grid-template-columns: 1fr;
    }

    .na-search-button {
        width: 100%;
    }
}
