:root {
--hdr-height: 72px;
--hdr-top-height: 36px;
--hdr-total: calc(var(--hdr-top-height) + var(--hdr-height));
--hdr-bg: #ffffff;
--hdr-bg-glass: rgba(255, 255, 255, 0.92);
--hdr-ink: #0c1a2e;
--hdr-ink-2: #1e293b;
--hdr-ink-3: #475569;
--hdr-muted: #64748b;
--hdr-brand: #0b57d0;
--hdr-brand-hover: #1a66e0;
--hdr-brand-ghost: rgba(11, 87, 208, 0.07);
--hdr-cyan: #06b6d4;
--hdr-border: #e8ecf2;
--hdr-border-soft: rgba(0, 0, 0, 0.06);
--hdr-radius: 12px;
--hdr-ease: cubic-bezier(0.22, 1, 0.36, 1);
--hdr-dur: 0.28s;
--hdr-font: 'Inter', 'Segoe UI', system-ui, sans-serif;
--hdr-font-display: 'Sora', 'Segoe UI', system-ui, sans-serif;
--hdr-shadow: 0 4px 24px -4px rgba(12, 26, 46, 0.08);
--hdr-shadow-mega: 0 20px 48px -8px rgba(12, 26, 46, 0.13);
--hdr-container: 1340px;
} .nw-topbar {
position: relative;
z-index: 1001;
height: var(--hdr-top-height);
background: var(--hdr-ink);
color: rgba(255, 255, 255, 0.78);
font-family: var(--hdr-font);
font-size: 0.74rem;
font-weight: 500;
letter-spacing: 0.01em;
overflow: hidden;
transition: height var(--hdr-dur) var(--hdr-ease),
opacity var(--hdr-dur) var(--hdr-ease);
}
.nw-topbar__inner {
display: flex;
align-items: center;
justify-content: space-between;
height: 100%;
max-width: var(--hdr-container);
margin: 0 auto;
padding: 0 clamp(16px, 2.5vw, 28px);
gap: 16px;
}
.nw-topbar__left,
.nw-topbar__right {
display: flex;
align-items: center;
gap: 18px;
}
.nw-topbar__item {
display: inline-flex;
align-items: center;
gap: 6px;
color: rgba(255, 255, 255, 0.72);
text-decoration: none;
transition: color var(--hdr-dur) var(--hdr-ease);
white-space: nowrap;
}
.nw-topbar__item:hover {
color: #fff;
}
.nw-topbar__item svg {
width: 13px;
height: 13px;
opacity: 0.6;
flex-shrink: 0;
}
.nw-topbar__sep {
width: 1px;
height: 12px;
background: rgba(255, 255, 255, 0.15);
} body.header-scrolled .nw-topbar {
height: 0;
opacity: 0;
pointer-events: none;
} #masthead.site-header {
position: sticky;
top: 0;
z-index: 999;
background: var(--hdr-bg);
border-bottom: 1px solid var(--hdr-border);
box-shadow: none;
transition: background-color 0.4s var(--hdr-ease),
box-shadow 0.4s var(--hdr-ease),
border-color 0.4s var(--hdr-ease);
font-family: var(--hdr-font);
}
body.header-scrolled #masthead.site-header {
background: var(--hdr-bg-glass);
backdrop-filter: saturate(180%) blur(16px);
-webkit-backdrop-filter: saturate(180%) blur(16px);
box-shadow: var(--hdr-shadow);
border-color: transparent;
} #masthead .nw-header {
width: 100%;
max-width: var(--hdr-container);
margin: 0 auto;
padding: 0 clamp(16px, 2.5vw, 28px);
}
#masthead .nw-header__inner {
min-height: var(--hdr-height);
display: flex;
align-items: center;
justify-content: space-between;
gap: 28px;
} #masthead .nw-header__brand {
display: flex;
align-items: center;
flex: 0 0 auto;
gap: 14px;
text-decoration: none;
}
#masthead .nw-header__brand .custom-logo-link {
display: inline-flex;
align-items: center;
}
#masthead .nw-header__brand img {
width: auto;
max-height: 38px;
transition: opacity var(--hdr-dur) var(--hdr-ease);
}
#masthead .nw-header__brand:hover img {
opacity: 0.85;
}
#masthead .nw-header__title {
color: var(--hdr-ink);
text-decoration: none;
font-family: var(--hdr-font-display);
font-weight: 800;
font-size: 1.1rem;
letter-spacing: -0.02em;
} #masthead .nw-header__nav {
flex: 1 1 auto;
min-width: 0;
display: flex;
align-items: center;
justify-content: flex-end;
}
#masthead .nw-menu,
#masthead .nw-menu ul {
margin: 0;
padding: 0;
list-style: none;
}
#masthead .nw-menu {
display: flex;
align-items: center;
gap: 2px;
justify-content: center; } #masthead .nw-menu > li {
position: relative;
} #masthead .nw-menu > li.menu-item-has-children {
padding-bottom: 18px;
margin-bottom: -18px;
}
#masthead .nw-menu > li > a {
display: inline-flex;
align-items: center;
gap: 5px;
color: var(--hdr-ink-2);
text-decoration: none;
font-family: var(--hdr-font);
font-size: 0.88rem;
line-height: 1;
font-weight: 600;
padding: 10px 14px;
border-radius: 10px;
white-space: nowrap;
position: relative;
transition: color var(--hdr-dur) var(--hdr-ease),
background-color var(--hdr-dur) var(--hdr-ease);
} #masthead .nw-menu > li > a::after {
content: '';
position: absolute;
bottom: 2px;
left: 14px;
right: 14px;
height: 2px;
background: var(--hdr-brand);
border-radius: 2px;
transform: scaleX(0);
transform-origin: center;
transition: transform 0.35s var(--hdr-ease);
}
#masthead .nw-menu > li > a:hover::after,
#masthead .nw-menu > li.current-menu-item > a::after,
#masthead .nw-menu > li.current-menu-ancestor > a::after {
transform: scaleX(1);
} html.translated-ltr #masthead .nw-header__inner {
gap: 12px;
}
html.translated-ltr #masthead .nw-menu > li > a {
padding: 10px 8px;
font-size: 0.83rem;
letter-spacing: -0.01em;
}
html.translated-ltr #masthead .nw-menu > li > a::after {
left: 8px;
right: 8px;
} @media (min-width: 1081px) and (max-width: 1280px) {
#masthead .nw-header__inner {
gap: 12px;
}
#masthead .nw-menu > li > a {
padding: 10px 10px;
font-size: 0.84rem;
letter-spacing: -0.01em;
}
#masthead .nw-menu > li > a::after {
left: 10px;
right: 10px;
}
}
#masthead .nw-menu > li > a:hover {
color: var(--hdr-brand);
background: transparent;
}
#masthead .nw-menu > li.current-menu-item > a,
#masthead .nw-menu > li.current-menu-ancestor > a {
color: var(--hdr-brand);
} #masthead .sf-with-ul::after,
#masthead .nw-menu .sf-with-ul::after,
#masthead .nw-menu a.sf-with-ul::after,
#masthead .sf-arrows .sf-with-ul::after,
#masthead .sf-arrows ul .sf-with-ul::after,
#masthead .nw-menu .caret,
#masthead .nw-menu .sf-sub-indicator,
#masthead .nw-menu > li > a > .caret,
#masthead .nw-menu > li > a > .sub-arrow,
#masthead .nw-menu > li > a > i,
#masthead .nw-menu > li > a > svg,
#masthead .nw-menu > li > button,
#masthead .nw-menu .dropdown-toggle,
#masthead .nw-menu > li.menu-item-has-children > a > span.caret {
display: none !important;
width: 0 !important;
height: 0 !important;
border: none !important;
content: none !important;
visibility: hidden !important;
font-size: 0 !important;
line-height: 0 !important;
overflow: hidden !important;
} #masthead .nw-menu > li.menu-item-has-children > a {
padding-right: 20px;
}
#masthead .nw-menu > li.menu-item-has-children > a::before {
content: '' !important;
display: block !important;
position: absolute;
right: 6px;
top: 50%;
width: 7px;
height: 7px;
transform: translateY(-50%);
background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='7' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
opacity: 0.5;
transition: transform 0.25s var(--hdr-ease), opacity 0.25s;
}
#masthead .nw-menu > li.menu-item-has-children:hover > a::before {
transform: translateY(-50%) rotate(180deg);
opacity: 0.8;
} @media (min-width: 1081px) { #masthead .nw-menu > li.menu-item-has-children {
position: static;
}
#masthead .nw-menu > li > .sub-menu {
position: absolute;
left: 0;
right: 0;
top: 100%;
transform: none;
width: 100%;
display: none;
grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
gap: 0;
padding: 0;
border-radius: 0 0 14px 14px;
background: var(--hdr-bg);
border: none;
border-top: 1px solid var(--hdr-border);
box-shadow: var(--hdr-shadow-mega);
opacity: 0;
overflow: hidden;
transition: opacity 0.15s ease;
pointer-events: none;
}
#masthead .nw-menu > li:hover > .sub-menu,
#masthead .nw-menu > li:focus-within > .sub-menu {
display: grid;
opacity: 1;
pointer-events: auto;
} #masthead .nw-menu > li > .sub-menu > li {
padding: 24px 24px 20px;
border-right: 1px solid var(--hdr-border);
transition: background-color var(--hdr-dur) var(--hdr-ease);
}
#masthead .nw-menu > li > .sub-menu > li:last-child {
border-right: none;
}
#masthead .nw-menu > li > .sub-menu > li:hover {
background: #f8fafc;
} #masthead .nw-mega-preview-pane {
position: absolute;
right: 0;
left: auto;
top: 0;
bottom: 0;
width: 360px; background: var(--hdr-bg);
box-shadow: -15px 0 40px rgba(0,0,0,0.08); border-left: 1px solid var(--hdr-border);
border-right: none;
padding: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
overflow: hidden;
z-index: 10; opacity: 0;
visibility: hidden;
transform: translateX(20px);
transition: opacity 0.3s var(--hdr-ease), transform 0.3s var(--hdr-ease), visibility 0.3s;
pointer-events: none;
will-change: transform, opacity; } #masthead .nw-mega-preview-pane.is-left {
right: auto;
left: 0;
border-left: none;
border-right: 1px solid var(--hdr-border);
box-shadow: 15px 0 40px rgba(0,0,0,0.08); transform: translateX(-20px); }
#masthead .nw-mega-preview-pane.is-visible {
opacity: 1;
visibility: visible;
transform: translateX(0);
pointer-events: auto;
}
.nw-mega-preview-img-wrapper {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
background: #f1f5f9; overflow: hidden;
} @keyframes nwShimmer {
0% { transform: translateX(-100%); }
100% { transform: translateX(100%); }
}
.nw-mega-preview-img-wrapper::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.6) 50%, transparent 100%);
animation: nwShimmer 1.5s infinite linear;
z-index: 0;
}
.nw-mega-preview-img-wrapper img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0;
transform: scale(1.05);
transition: opacity 0.4s var(--hdr-ease), transform 0.4s var(--hdr-ease);
will-change: transform, opacity; z-index: 1;
}
.nw-mega-preview-img-wrapper img.active {
opacity: 1;
transform: scale(1);
} .nw-mega-preview-img-wrapper::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.1) 60%, transparent 100%);
pointer-events: none;
}
.nw-mega-preview-title {
position: absolute;
bottom: 24px;
left: 24px;
right: 24px;
color: #fff;
font-family: var(--hdr-font-display);
font-size: 1.1rem;
font-weight: 700;
letter-spacing: -0.01em;
z-index: 2;
text-shadow: 0 2px 4px rgba(0,0,0,0.5);
opacity: 0;
transform: translateY(10px);
transition: opacity 0.3s ease, transform 0.3s ease;
}
.nw-mega-preview-title.active {
opacity: 1;
transform: translateY(0);
} #masthead .nw-menu > li > .sub-menu > li > a {
display: flex;
align-items: center;
gap: 8px;
margin-bottom: 14px;
padding-bottom: 10px;
border-bottom: 2px solid var(--hdr-border);
color: var(--hdr-ink);
text-decoration: none;
font-family: var(--hdr-font-display);
font-size: 0.78rem;
line-height: 1.3;
font-weight: 700;
letter-spacing: 0.06em;
text-transform: uppercase;
transition: color var(--hdr-dur) var(--hdr-ease),
border-color var(--hdr-dur) var(--hdr-ease);
} #masthead .nw-menu > li > .sub-menu > li > a::before,
#masthead .nw-menu > li > .sub-menu > li > a::after {
display: none !important;
content: none !important;
}
#masthead .nw-menu > li > .sub-menu > li:hover > a {
color: var(--hdr-brand);
border-bottom-color: var(--hdr-brand);
} #masthead .nw-menu > li > .sub-menu > li > .sub-menu {
display: flex !important;
flex-direction: column;
gap: 2px;
}
#masthead .nw-menu > li > .sub-menu > li > .sub-menu > li > a {
display: flex;
align-items: center;
gap: 6px;
color: var(--hdr-ink-3);
text-decoration: none;
font-size: 0.86rem;
line-height: 1.4;
font-weight: 500;
padding: 7px 8px;
border-radius: 8px;
transition: color var(--hdr-dur) var(--hdr-ease),
background-color var(--hdr-dur) var(--hdr-ease);
} #masthead .nw-menu > li > .sub-menu > li > .sub-menu > li > a::before,
#masthead .nw-menu > li > .sub-menu > li > .sub-menu > li > a::after {
display: none !important;
content: none !important;
}
#masthead .nw-menu > li > .sub-menu > li > .sub-menu > li > a:hover {
color: var(--hdr-brand);
background: var(--hdr-brand-ghost);
}
} .nw-header__actions {
display: flex;
align-items: center;
gap: 10px;
flex: 0 0 auto;
margin-left: 6px;
} .nw-header__search-toggle {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border: 1px solid var(--hdr-border);
border-radius: 10px;
background: transparent;
color: var(--hdr-ink-3);
cursor: pointer;
transition: color var(--hdr-dur) var(--hdr-ease),
background-color var(--hdr-dur) var(--hdr-ease),
border-color var(--hdr-dur) var(--hdr-ease);
padding: 0;
}
.nw-header__search-toggle svg {
width: 18px;
height: 18px;
}
.nw-header__search-toggle:hover {
color: var(--hdr-brand);
background: var(--hdr-brand-ghost);
border-color: rgba(11, 87, 208, 0.2);
} .nw-header__cta {
display: inline-flex;
align-items: center;
gap: 7px;
padding: 8px 16px;
background: var(--hdr-ink);
color: #fff;
font-family: var(--hdr-font);
font-size: 0.84rem;
font-weight: 600;
text-decoration: none;
border-radius: 20px;
border: none;
cursor: pointer;
white-space: normal;
max-width: 130px;
text-align: left;
line-height: 1.2;
transition: background-color var(--hdr-dur) var(--hdr-ease),
transform var(--hdr-dur) var(--hdr-ease),
box-shadow var(--hdr-dur) var(--hdr-ease);
}
.nw-cta-text {
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
} @media (min-width: 1081px) and (max-width: 1240px) {
.nw-header__cta {
padding: 10px;
border-radius: 50%;
max-width: 40px;
}
.nw-cta-text {
display: none;
}
}
.nw-header__cta:hover {
background: var(--hdr-brand);
transform: translateY(-1px);
box-shadow: 0 8px 20px -6px rgba(11, 87, 208, 0.45);
color: #fff;
}
.nw-header__cta svg {
width: 14px;
height: 14px;
flex-shrink: 0;
transition: transform 0.3s var(--hdr-ease);
}
.nw-header__cta:hover svg {
transform: translateX(2px);
} .nw-search-overlay {
position: fixed;
inset: 0;
z-index: 9999;
background: rgba(10, 22, 40, 0.88);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
display: flex;
align-items: flex-start;
justify-content: center;
padding-top: 18vh;
opacity: 0;
visibility: hidden;
transition: opacity 0.35s var(--hdr-ease),
visibility 0.35s;
}
.nw-search-overlay.is-open {
opacity: 1;
visibility: visible;
}
.nw-search-overlay__inner {
width: min(640px, calc(100% - 48px));
transform: translateY(16px);
transition: transform 0.4s var(--hdr-ease);
}
.nw-search-overlay.is-open .nw-search-overlay__inner {
transform: none;
}
.nw-search-overlay__field {
position: relative;
}
.nw-search-overlay__field input {
width: 100%;
height: 64px;
padding: 0 60px 0 28px;
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.18);
border-radius: 16px;
color: #fff;
font-family: var(--hdr-font-display);
font-size: 1.3rem;
font-weight: 500;
outline: none;
transition: border-color 0.3s var(--hdr-ease),
background-color 0.3s var(--hdr-ease);
}
.nw-search-overlay__field input::placeholder {
color: rgba(255, 255, 255, 0.45);
}
.nw-search-overlay__field input:focus {
border-color: var(--hdr-cyan);
background: rgba(255, 255, 255, 0.14);
}
.nw-search-overlay__close {
position: absolute;
right: 12px;
top: 50%;
transform: translateY(-50%);
width: 40px;
height: 40px;
border: none;
background: rgba(255, 255, 255, 0.08);
border-radius: 10px;
color: rgba(255, 255, 255, 0.7);
cursor: pointer;
display: grid;
place-items: center;
transition: background-color 0.2s, color 0.2s;
padding: 0;
}
.nw-search-overlay__close:hover {
background: rgba(255, 255, 255, 0.16);
color: #fff;
}
.nw-search-overlay__close svg {
width: 18px;
height: 18px;
}
.nw-search-overlay__hint {
margin-top: 16px;
text-align: center;
color: rgba(255, 255, 255, 0.4);
font-size: 0.82rem;
font-weight: 500;
}
.nw-search-overlay__hint kbd {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 24px;
padding: 2px 7px;
border-radius: 5px;
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.15);
color: rgba(255, 255, 255, 0.6);
font-family: inherit;
font-size: 0.72rem;
margin: 0 2px;
} #masthead .nw-header__toggle {
display: none;
width: 44px;
height: 44px;
border: 2px solid var(--hdr-ink);
background: transparent;
border-radius: 10px;
cursor: pointer;
padding: 0;
position: relative;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 5px;
transition: background-color var(--hdr-dur) var(--hdr-ease),
border-color var(--hdr-dur) var(--hdr-ease);
}
#masthead .nw-header__toggle:hover {
background: var(--hdr-ink);
}
#masthead .nw-header__toggle:hover span[aria-hidden="true"] {
background: #fff;
} #masthead .nw-header__toggle span[aria-hidden="true"] {
display: block;
width: 20px;
height: 2.5px;
background: var(--hdr-ink);
border-radius: 2px;
transition: transform 0.3s var(--hdr-ease),
opacity 0.3s var(--hdr-ease),
background-color 0.2s;
} #masthead .nw-header__toggle.is-active {
background: var(--hdr-ink);
}
#masthead .nw-header__toggle.is-active span[aria-hidden="true"] {
background: #fff;
}
#masthead .nw-header__toggle.is-active span:nth-child(1) {
transform: translateY(7.5px) rotate(45deg);
}
#masthead .nw-header__toggle.is-active span:nth-child(2) {
opacity: 0;
transform: scaleX(0);
}
#masthead .nw-header__toggle.is-active span:nth-child(3) {
transform: translateY(-7.5px) rotate(-45deg);
} @media (max-width: 1080px) {
.nw-topbar { height: auto; min-height: 32px; }
.nw-topbar__inner { flex-wrap: wrap; justify-content: center; gap: 8px; padding: 6px 12px; }
.nw-topbar__left { display: none; }
.nw-topbar__right { justify-content: center; }
#masthead .nw-header__inner {
min-height: 60px;
gap: 10px;
}
#masthead .nw-header__toggle {
display: flex;
order: 99;
}
.nw-header__cta { display: none; }
.nw-header__search-toggle {
width: 38px;
height: 38px;
}
#masthead .nw-header__nav {
display: none;
position: fixed;
top: 0;
right: 0;
width: min(380px, 85vw);
height: 100vh;
height: 100dvh;
background: var(--hdr-bg);
border-left: 1px solid var(--hdr-border);
box-shadow: -16px 0 48px rgba(12, 26, 46, 0.12);
padding: 20px;
padding-top: 80px;
overflow-y: auto;
overscroll-behavior: contain;
z-index: 1000;
transform: translateX(100%);
transition: transform 0.4s var(--hdr-ease);
}
#masthead .nw-header__nav.is-open {
display: block;
transform: translateX(0);
} .nw-mobile-backdrop {
position: fixed;
inset: 0;
background: rgba(10, 22, 40, 0.4);
z-index: 998;
opacity: 0;
visibility: hidden;
transition: opacity 0.35s, visibility 0.35s;
}
.nw-mobile-backdrop.is-visible {
opacity: 1;
visibility: visible;
}
#masthead .nw-menu {
flex-direction: column;
align-items: stretch;
gap: 2px;
}
#masthead .nw-menu > li > a {
padding: 14px 12px;
font-size: 0.95rem;
border-radius: 10px;
}
#masthead .nw-menu > li > a::after {
display: none;
}
#masthead .nw-menu > li > a::before {
display: none;
} #masthead .nw-menu .sub-menu {
margin-top: 4px;
margin-left: 8px;
padding-left: 14px;
border-left: 2px solid var(--hdr-border);
}
#masthead .nw-menu .sub-menu li a {
display: block;
padding: 11px 10px;
color: var(--hdr-ink-3);
text-decoration: none;
font-size: 0.9rem;
font-weight: 500;
border-radius: 8px;
transition: background-color var(--hdr-dur) var(--hdr-ease),
color var(--hdr-dur) var(--hdr-ease),
padding-left var(--hdr-dur) var(--hdr-ease);
}
#masthead .nw-menu .sub-menu li a:hover {
background: var(--hdr-brand-ghost);
color: var(--hdr-brand);
padding-left: 16px;
} .nw-mobile-cta {
margin-top: 24px;
padding-top: 20px;
border-top: 1px solid var(--hdr-border);
}
.nw-mobile-cta a {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
width: 100%;
padding: 14px 20px;
background: var(--hdr-ink);
color: #fff;
font-family: var(--hdr-font);
font-size: 0.92rem;
font-weight: 600;
text-decoration: none;
border-radius: 12px;
transition: background-color 0.3s var(--hdr-ease);
}
.nw-mobile-cta a:hover {
background: var(--hdr-brand);
}
} #masthead .container,
#masthead .navbar,
#masthead .header-inner,
#masthead .site-header-inner,
#masthead .header-content,
#masthead .site-branding {
all: unset !important;
display: contents !important;
}
#masthead .navbar-toggle,
#masthead .menu-toggle,
#masthead .hamburger,
#masthead #primary-menu-toggle {
display: none !important;
} #masthead .sf-arrows .sf-with-ul::after,
#masthead .sf-arrows ul .sf-with-ul::after,
#masthead .nw-menu a.sf-with-ul::after {
display: none !important;
content: none !important;
} #masthead .nw-header__nav .nw-menu {
display: flex !important;
}
@media (max-width: 1080px) {
#masthead .nw-header__nav .nw-menu {
display: flex !important;
flex-direction: column !important;
}
}  #masthead .nw-menu .gt_switcher,
#masthead .nw-menu .gt_switcher-popup,
#masthead .nw-menu .gtranslate_wrapper,
#masthead .nw-menu [class*="gt_"],
#masthead .nw-menu li:has(.gt_switcher),
#masthead .nw-menu li:has(.gtranslate_wrapper),
#masthead .nw-menu li:has(.gt_switcher-popup) {
display: none !important;
} body > .gt_switcher_wrapper,
body > .gtranslate_wrapper:not(.nw-topbar__gt),
#gt-nvframe {
display: none !important;
} .nw-topbar__gt {
display: inline-flex;
align-items: center;
gap: 8px;
}
.nw-topbar__gt .gt_switcher {
position: relative;
}
.nw-topbar__gt a.gt_switcher-popup,
.nw-topbar__gt .glink {
display: inline-flex !important;
align-items: center;
gap: 6px;
color: rgba(255, 255, 255, 0.8) !important;
text-decoration: none !important;
font-size: 0.74rem !important;
font-weight: 500 !important;
padding: 3px 8px;
border-radius: 6px;
border: 1px solid rgba(255, 255, 255, 0.12);
background: rgba(255, 255, 255, 0.06);
transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}
.nw-topbar__gt a.gt_switcher-popup:hover,
.nw-topbar__gt .glink:hover {
background: rgba(255, 255, 255, 0.12) !important;
border-color: rgba(255, 255, 255, 0.22);
color: #fff !important;
}
.nw-topbar__gt img {
width: 18px !important;
height: 14px !important;
border-radius: 2px;
object-fit: cover;
vertical-align: middle;
} .nw-topbar__gt .gt_switcher .gt_option {
background: var(--hdr-ink) !important;
border: 1px solid rgba(255, 255, 255, 0.12) !important;
border-radius: 8px !important;
box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3) !important;
padding: 6px !important;
min-width: 140px;
}
.nw-topbar__gt .gt_switcher .gt_option a {
display: flex !important;
align-items: center;
gap: 8px;
padding: 7px 10px !important;
color: rgba(255, 255, 255, 0.8) !important;
font-size: 0.78rem !important;
border-radius: 6px;
transition: background-color 0.15s;
}
.nw-topbar__gt .gt_switcher .gt_option a:hover {
background: rgba(255, 255, 255, 0.1) !important;
color: #fff !important;
}
.nw-topbar__gt .gt_switcher .gt_option a img {
width: 20px !important;
height: 15px !important;
border-radius: 2px;
}  #masthead .nw-menu > li {
flex-shrink: 1;
min-width: 0; }
#masthead .nw-menu > li > a {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
max-width: 100%;
}  .nw-topbar__item {
max-width: 220px;
overflow: hidden;
text-overflow: ellipsis;
} @media (min-width: 1081px) {
#masthead .nw-menu > li > .sub-menu > li > a {
word-break: break-word;
hyphens: auto;
}
#masthead .nw-menu > li > .sub-menu > li > .sub-menu > li > a {
word-break: break-word;
hyphens: auto;
}
} #masthead .nw-header__inner {
flex-wrap: nowrap;
overflow: visible;
} @media print {
.nw-topbar,
#masthead.site-header { display: none !important; }
}.nawis-mini-finder {
margin: clamp(24px, 4vw, 42px) 0;
padding: 0;
border: 0;
border-radius: 0;
background: transparent;
box-shadow: none;
}
.nawis-mini-finder__head {
margin-bottom: 14px;
}
.nawis-mini-finder__head h2 {
margin: 0 0 6px;
font-family: "Sora", system-ui, sans-serif;
font-size: clamp(1.25rem, 2.3vw, 1.6rem);
letter-spacing: -0.02em;
color: var(--nw-slate-900, #0f172a);
}
.nawis-mini-finder__head p {
margin: 0;
color: var(--nw-slate-700, #334155);
} .nawis-mini-finder .urun-bulucu-seo-header {
display: none !important;
} .nawis-mini-finder .modern-form {
width: 100% !important;
max-width: 100% !important;
margin: 0 !important;
padding: 0 !important;
border-radius: 14px !important;
box-shadow: none !important;
border: 0 !important;
background: transparent !important;
}
.nawis-mini-finder .form-row {
gap: 12px !important;
margin-bottom: 10px !important;
}
.nawis-mini-finder .form-group {
flex: 1 1 220px !important;
}
.nawis-mini-finder .form-group label {
font-size: 0.85rem !important;
color: var(--nw-slate-700, #334155) !important;
}
.nawis-mini-finder .form-group input,
.nawis-mini-finder .form-group select {
min-height: 44px !important;
border-radius: 10px !important;
font-size: 0.94rem !important;
background: #ffffff !important;
border: 1px solid rgba(148, 163, 184, 0.45) !important;
}
.nawis-mini-finder .form-button-container {
margin-top: 10px !important;
}
.nawis-mini-finder .form-button-container button {
min-height: 46px !important;
border-radius: 10px !important;
font-size: 0.95rem !important;
}
.nawis-mini-finder .loading-screen {
border-radius: 12px !important;
} .nawis-mini-finder .result-container {
margin: 18px 0 0 !important;
padding: 0 !important;
}
.nawis-mini-finder .user-input {
margin-bottom: 12px !important;
padding: 14px !important;
border-radius: 12px !important;
box-shadow: none !important;
border: 1px solid rgba(148, 163, 184, 0.32) !important;
background: #ffffff !important;
}
.nawis-mini-finder .user-input h4 {
margin-bottom: 10px !important;
padding-bottom: 8px !important;
font-size: 1rem !important;
}
.nawis-mini-finder .user-input p {
flex: 1 1 180px !important;
margin: 0 !important;
padding: 9px 11px !important;
font-size: 0.9rem !important;
}
.nawis-mini-finder .result-card {
display: grid !important;
grid-template-columns: minmax(84px, 110px) minmax(0, 1fr) auto;
align-items: center !important;
gap: 12px !important;
margin: 0 0 12px !important;
padding: 18px 16px 16px !important;
min-height: 0 !important;
border-radius: 14px !important;
box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08) !important;
}
.nawis-mini-finder .result-card img {
width: 100% !important;
max-width: 100px !important;
margin: 0 !important;
}
.nawis-mini-finder .result-info {
text-align: left !important;
}
.nawis-mini-finder .result-info h3 {
margin: 0 0 6px !important;
font-size: 1.02rem !important;
}
.nawis-mini-finder .result-info p {
font-size: 0.88rem !important;
}
.nawis-mini-finder .button-container {
align-items: flex-end !important;
gap: 6px !important;
margin-top: 4px !important;
}
.nawis-mini-finder .button {
margin-top: 0 !important;
padding: 10px 14px !important;
font-size: 0.82rem !important;
border-radius: 10px !important;
color: #ffffff !important;
text-decoration: none !important;
line-height: 1.2 !important;
}
.nawis-mini-finder .button.secondary {
color: var(--nw-blue, #0066ff) !important;
background: #ffffff !important;
}
.nawis-mini-finder .button.back-button {
color: var(--nw-slate-900, #0f172a) !important;
background: #f8fafc !important;
border: 1px solid rgba(148, 163, 184, 0.5) !important;
}
.nawis-mini-finder .result-number {
top: 8px !important;
left: 8px !important;
}
.nawis-mini-finder .recommended-badge {
top: 8px !important;
right: 8px !important;
z-index: 6 !important;
}
.nawis-mini-finder .result-card.recommended-motor {
padding-top: 52px !important;
}
@media (max-width: 640px) {
.nawis-mini-finder {
padding: 0;
border-radius: 0;
}
.nawis-mini-finder .modern-form {
padding: 0 !important;
}
.nawis-mini-finder .result-card {
grid-template-columns: 1fr !important;
padding-top: 34px !important;
}
.nawis-mini-finder .result-card img {
max-width: 92px !important;
margin-bottom: 4px !important;
}
.nawis-mini-finder .button-container {
align-items: stretch !important;
width: 100%;
}
.nawis-mini-finder .button {
width: 100%;
text-align: center;
}
} .nawis-energy-calc {
margin: clamp(28px, 4.5vw, 48px) 0;
}
.nawis-energy-calc__head {
margin-bottom: 14px;
}
.nawis-energy-calc__head h2 {
margin: 0 0 6px;
font-family: "Sora", system-ui, sans-serif;
font-size: clamp(1.2rem, 2.2vw, 1.55rem);
letter-spacing: -0.02em;
color: var(--nw-slate-900, #0f172a);
}
.nawis-energy-calc__head p {
margin: 0;
color: var(--nw-slate-700, #334155);
}
.nawis-energy-calc__panel {
border: 1px solid rgba(148, 163, 184, 0.35);
background: #ffffff;
border-radius: 14px;
padding: clamp(14px, 2.6vw, 22px);
box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}
.nawis-energy-calc__top {
display: grid;
grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
gap: 14px;
align-items: end;
}
.nawis-energy-calc__field {
display: grid;
gap: 6px;
}
.nawis-energy-calc__field span {
font-size: 0.82rem;
font-weight: 600;
color: var(--nw-slate-700, #334155);
}
.nawis-energy-calc__field select {
min-height: 44px;
border-radius: 10px;
border: 1px solid rgba(148, 163, 184, 0.45);
background: #fff;
padding: 0 12px;
font-size: 0.94rem;
color: #0f172a;
}
.nawis-energy-calc__meta {
display: grid;
gap: 6px;
font-size: 0.92rem;
color: #1e293b;
}
.nawis-energy-calc__slider-wrap {
margin-top: 14px;
}
.nawis-energy-calc__slider-wrap input[type="range"] {
width: 100%;
accent-color: var(--nw-blue, #0066ff);
cursor: pointer;
}
.nawis-energy-calc__zones {
margin-top: 12px;
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 8px;
}
.nawis-energy-calc__zones span {
border: 1px solid rgba(148, 163, 184, 0.35);
border-radius: 999px;
min-height: 34px;
display: grid;
place-items: center;
text-align: center;
font-size: 0.78rem;
color: #475569;
background: #f8fafc;
transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.nawis-energy-calc__zones .is-active {
color: #fff;
border-color: transparent;
background: linear-gradient(135deg, #0066ff, #06b6d4);
}
.nawis-energy-calc__batteries {
margin-top: 12px;
display: grid;
grid-template-columns: repeat(6, minmax(0, 1fr));
gap: 8px;
}
.nawis-energy-calc__battery {
border: 1px solid rgba(148, 163, 184, 0.45);
background: #fff;
color: #0f172a;
border-radius: 10px;
min-height: 40px;
font-size: 0.84rem;
font-weight: 600;
cursor: pointer;
transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}
.nawis-energy-calc__battery:hover {
transform: translateY(-1px);
border-color: rgba(0, 102, 255, 0.45);
}
.nawis-energy-calc__battery.is-active {
background: linear-gradient(135deg, #0066ff, #06b6d4);
color: #fff;
border-color: transparent;
}
.nawis-energy-calc__result {
margin-top: 14px;
border: 1px solid rgba(148, 163, 184, 0.35);
border-radius: 12px;
padding: 12px;
background: #f8fafc;
}
.nawis-energy-calc__result-label {
font-size: 0.8rem;
color: #475569;
text-transform: uppercase;
letter-spacing: 0.05em;
}
.nawis-energy-calc__result-value {
margin-top: 4px;
font-size: clamp(1.3rem, 2.5vw, 1.8rem);
font-weight: 800;
color: #0f172a;
letter-spacing: -0.02em;
}
.nawis-energy-calc__result-detail {
margin-top: 4px;
font-size: 0.88rem;
color: #475569;
}
@media (max-width: 900px) {
.nawis-energy-calc__top {
grid-template-columns: 1fr;
align-items: stretch;
}
.nawis-energy-calc__batteries {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
}
@media (max-width: 560px) {
.nawis-energy-calc__zones {
grid-template-columns: 1fr;
}
.nawis-energy-calc__batteries {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}:root { --nw-ink: #0a1628;
--nw-ink-2: #0f1e38;
--nw-ink-3: #162a4a;
--nw-bg: #f7f5f0;
--nw-bg-2: #f0ece4;
--nw-surface: #ffffff; --nw-text: #101c2e;
--nw-text-2: #46505e;
--nw-text-3: #67707e;
--nw-text-muted: #98a0ac;
--nw-text-on-dark: #e7e4dc;
--nw-text-on-dark-2: #9aa2ae;
--nw-blue: #0f4da8;
--nw-blue-2: #2a62c4;
--nw-cyan: #6aa9ec;             
--nw-teal: #35608f;
--nw-steel: #35608f;            
--nw-electric: #6aa9ec;     
--nw-gradient: linear-gradient(135deg, #11529f 0%, #0a3a7e 100%);
--nw-gradient-soft: linear-gradient(135deg, rgba(15, 77, 168, 0.08), rgba(15, 77, 168, 0.04)); --nw-border: #e7e2d8;
--nw-border-2: #dcd6c9;
--nw-border-dark: rgba(255, 255, 255, 0.08);
--nw-border-dark-2: rgba(255, 255, 255, 0.14);
--nw-r-sm: 2px;
--nw-r-md: 3px;
--nw-r-lg: 4px;
--nw-r-xl: 6px;
--nw-r-full: 2px;
--nw-shadow-xs: 0 1px 2px rgba(12, 22, 40, 0.03);
--nw-shadow-sm: 0 2px 6px rgba(12, 22, 40, 0.04);
--nw-shadow-md: 0 10px 28px -10px rgba(12, 22, 40, 0.07);
--nw-shadow-lg: 0 24px 48px -18px rgba(12, 22, 40, 0.12);
--nw-shadow-xl: 0 40px 80px -24px rgba(12, 22, 40, 0.18);
--nw-shadow-brand: 0 14px 32px -14px rgba(15, 77, 168, 0.45);
--nw-font-display: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
--nw-font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
--nw-ease: cubic-bezier(0.22, 1, 0.36, 1);
--nw-ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
--nw-dur: 0.65s;
--nw-dur-slow: 0.9s; --nw-container: 1200px;
--nw-container-wide: 1360px;
}
*, *::before, *::after { box-sizing: border-box; } html, body {
overflow-x: hidden !important;
max-width: 100%;
}
.nw-root {
font-family: var(--nw-font-body);
color: var(--nw-text);
line-height: 1.65;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-feature-settings: 'cv11', 'ss01';
width: 100%;
max-width: 100vw;
overflow-x: hidden;
}
.site-content:has(.nw-root) {
padding-top: 0 !important;
}
.nw-root h1, .nw-root h2, .nw-root h3, .nw-root h4, .nw-root h5 {
font-family: var(--nw-font-display);
font-weight: 550;
letter-spacing: -0.01em;
line-height: 1.12;
margin: 0;
text-wrap: balance;
}
.nw-root p { margin: 0; } .nw-section {
position: relative;
padding: clamp(96px, 11vw, 176px) 0;
overflow: hidden;
}
.nw-section--dark {
background: var(--nw-ink);
color: var(--nw-text-on-dark);
}
.nw-section--tint {
background: var(--nw-bg);
}
.nw-section--white {
background: var(--nw-surface);
}
.nw-container {
width: 100%;
max-width: var(--nw-container);
margin: 0 auto;
padding: 0 clamp(20px, 4vw, 32px);
position: relative;
z-index: 2;
}
.nw-container--wide { max-width: var(--nw-container-wide); }
.nw-eyebrow {
display: inline-flex;
align-items: center;
gap: 12px;
font-family: var(--nw-font-body);
font-size: 0.72rem;
font-weight: 600;
letter-spacing: 0.22em;
text-transform: uppercase;
color: var(--nw-steel);
}
.nw-eyebrow::before {
content: '';
width: 36px;
height: 1px;
background: var(--nw-steel);
opacity: 0.7;
}
.nw-section--dark .nw-eyebrow,
.nw-hub .nw-eyebrow,
.nw-tech .nw-eyebrow,
.nw-ns .nw-eyebrow { color: var(--nw-cyan); }
.nw-section--dark .nw-eyebrow::before,
.nw-hub .nw-eyebrow::before,
.nw-tech .nw-eyebrow::before,
.nw-ns .nw-eyebrow::before { background: var(--nw-cyan); }
.nw-title {
font-size: clamp(2.2rem, 4.6vw, 3.6rem);
font-weight: 550;
color: var(--nw-text);
letter-spacing: -0.015em;
}
.nw-section--dark .nw-title,
.nw-hub .nw-title,
.nw-tech .nw-title,
.nw-ns .nw-title { color: #ffffff; }
.nw-section--dark .nw-lead,
.nw-hub .nw-lead,
.nw-tech .nw-lead,
.nw-ns .nw-lead { color: rgba(226, 232, 240, 0.78); }
.nw-title--xl {
font-size: clamp(2.7rem, 5.8vw, 4.6rem);
font-weight: 500;
}
.nw-lead {
font-size: clamp(1rem, 1.4vw, 1.125rem);
line-height: 1.75;
color: var(--nw-text-2);
max-width: 680px;
}
.nw-section--dark .nw-lead { color: rgba(226, 232, 240, 0.78); }
.nw-section-head {
margin-bottom: clamp(56px, 7vw, 96px);
display: flex;
flex-direction: column;
gap: 18px;
max-width: 820px;
}
.nw-section-head--center {
margin-left: auto;
margin-right: auto;
text-align: center;
align-items: center;
}
.nw-gradient-text {
background: var(--nw-gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
} .nw-btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 12px;
font-family: var(--nw-font-body);
font-weight: 600;
font-size: 0.8rem;
line-height: 1;
padding: 18px 32px;
border-radius: var(--nw-r-sm);
border: 1px solid transparent;
text-decoration: none !important;
cursor: pointer;
transition: transform var(--nw-dur) var(--nw-ease),
box-shadow var(--nw-dur) var(--nw-ease),
background-color var(--nw-dur) var(--nw-ease),
color var(--nw-dur) var(--nw-ease),
border-color var(--nw-dur) var(--nw-ease);
letter-spacing: 0.12em;
text-transform: uppercase;
white-space: nowrap;
}
.nw-btn:active { transform: translateY(1px); }
.nw-btn svg { width: 16px; height: 16px; transition: transform 0.5s var(--nw-ease); }
.nw-btn:hover svg { transform: translateX(3px); }
.nw-btn:focus-visible {
outline: 2px solid var(--nw-blue);
outline-offset: 3px;
}
.nw-btn--primary {
background: var(--nw-ink);
color: #fff;
box-shadow: 0 6px 20px -8px rgba(10, 22, 40, 0.5);
}
.nw-btn--primary:hover {
background: #142a4d;
transform: translateY(-2px);
box-shadow: 0 14px 28px -10px rgba(10, 22, 40, 0.55);
color: #fff;
}
.nw-btn--brand {
background: var(--nw-gradient);
color: #fff;
box-shadow: var(--nw-shadow-brand);
}
.nw-btn--brand:hover {
transform: translateY(-2px);
box-shadow: 0 18px 40px -14px rgba(15, 77, 168, 0.5);
color: #fff;
}
.nw-btn--ghost {
background: transparent;
color: var(--nw-text);
border-color: var(--nw-border-2);
}
.nw-btn--ghost:hover {
background: var(--nw-bg);
border-color: var(--nw-text);
color: var(--nw-text);
transform: translateY(-2px);
}
.nw-btn--glass {
background: rgba(255, 255, 255, 0.08);
color: #fff;
border-color: rgba(255, 255, 255, 0.18);
backdrop-filter: blur(14px);
-webkit-backdrop-filter: blur(14px);
}
.nw-btn--glass:hover {
background: rgba(255, 255, 255, 0.16);
border-color: rgba(255, 255, 255, 0.3);
transform: translateY(-2px);
color: #fff;
}
.nw-btn--light {
background: #ffffff;
color: var(--nw-ink);
box-shadow: 0 6px 20px -6px rgba(255, 255, 255, 0.25);
}
.nw-btn--light:hover {
background: #f1f5f9;
transform: translateY(-2px);
color: var(--nw-ink);
} .nw-reveal {
opacity: 0;
transition: opacity 0.8s var(--nw-ease), transform 0.8s var(--nw-ease);
}
.nw-reveal.nw-reveal--ready {
transform: translateY(24px);
}
.nw-reveal.is-visible {
opacity: 1;
transform: none;
}
@media (prefers-reduced-motion: reduce) {
.nw-reveal { opacity: 1; transform: none; transition: none; }
.nw-reveal.nw-reveal--ready { transform: none; }
}
.nw-hero .nw-reveal {
opacity: 1;
transform: none;
} .nw-root > .nw-hero {
position: relative;
min-height: clamp(620px, 92vh, 880px);
background: var(--nw-ink);
color: #fff;
overflow: hidden;
display: flex;
align-items: center;
padding: clamp(40px, 5vh, 64px) 0 clamp(80px, 10vh, 120px);
width: 100vw;
margin-top: 0;
margin-left: calc(50% - 50vw);
margin-right: calc(50% - 50vw);
border-bottom: none;
}
.nw-hero__video {
position: absolute;
inset: 0;
overflow: hidden;
}
.nw-hero__video iframe {
position: absolute;
top: 50%;
left: 50%;
width: 100vw;
height: 56.25vw;
min-height: 100%;
min-width: 177.77vh;
transform: translate(-50%, -50%);
pointer-events: none;
border: 0;
}
.nw-root > .nw-hero .nw-hero__overlay {
position: absolute;
inset: 0;
background:
radial-gradient(ellipse 120% 90% at 50% 110%, rgba(6, 12, 22, 0.55) 0%, transparent 60%),
linear-gradient(180deg, rgba(10, 22, 40, 0.55) 0%, rgba(10, 22, 40, 0.42) 30%, rgba(10, 22, 40, 0.52) 55%, rgba(8, 16, 30, 0.92) 100%);
}
.nw-hero__grid {
position: absolute;
inset: 0;
background-image:
linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
background-size: 64px 64px;
mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
-webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
pointer-events: none;
}
.nw-hero__inner {
position: relative;
z-index: 3;
width: 100%;
max-width: var(--nw-container);
margin: 0 auto;
padding: 0 clamp(20px, 4vw, 32px);
display: grid;
gap: clamp(28px, 4vw, 44px);
text-align: center;
justify-items: center;
}
.nw-hero__badge {
display: inline-flex;
align-items: center;
gap: 12px;
padding: 10px 22px;
background: rgba(10, 22, 40, 0.35);
border: 1px solid rgba(255, 255, 255, 0.16);
backdrop-filter: blur(14px);
-webkit-backdrop-filter: blur(14px);
border-radius: var(--nw-r-sm);
font-size: 0.72rem;
font-weight: 500;
letter-spacing: 0.18em;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.88);
}
.nw-hero__badge-dot {
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--nw-electric);
box-shadow: 0 0 0 4px rgba(106, 169, 236, 0.2);
animation: nw-pulse 2.8s infinite;
}
@keyframes nw-pulse {
0%, 100% { box-shadow: 0 0 0 0 rgba(106, 169, 236, 0.3); }
50% { box-shadow: 0 0 0 6px rgba(106, 169, 236, 0); }
}
.nw-hero__heading {
display: flex;
flex-direction: column;
gap: 14px;
max-width: 960px;
}
.nw-hero__heading h1 {
font-size: clamp(2.5rem, 6vw, 4.8rem);
font-weight: 500;
color: #fff;
line-height: 1.06;
}
.nw-hero__heading h1 .accent {
display: block;
font-style: normal;
font-weight: 400;
color: #8fc1f5;
margin-top: 0.08em;
}
.nw-hero__heading h2 {
font-size: clamp(0.8rem, 1.3vw, 0.92rem);
font-weight: 500;
color: rgba(255, 255, 255, 0.62);
text-transform: uppercase;
letter-spacing: 0.32em;
font-family: var(--nw-font-body);
}
.nw-hero__lead {
font-size: clamp(1rem, 1.35vw, 1.1rem);
color: rgba(255, 255, 255, 0.78);
line-height: 1.75;
max-width: 720px;
}
.nw-hero__lead strong { color: #fff; font-weight: 600; }
.nw-hero__cta {
display: flex;
flex-wrap: wrap;
gap: 14px;
justify-content: center;
}
.nw-hero__features {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 12px;
width: 100%;
max-width: 920px;
margin-top: 8px;
min-height: 160px; 
}
.nw-hero__feature {
display: flex;
align-items: center;
gap: 14px;
padding: 18px 20px;
background: transparent;
border: none;
border-top: 1px solid rgba(255, 255, 255, 0.18);
border-radius: 0;
transition: border-color 0.6s var(--nw-ease), background 0.6s var(--nw-ease);
text-align: left;
}
.nw-hero__feature:hover {
background: rgba(255, 255, 255, 0.03);
border-top-color: var(--nw-electric);
}
.nw-hero__feature-ic {
width: 36px;
height: 36px;
flex-shrink: 0;
border-radius: 0;
display: grid;
place-items: center;
background: transparent;
border: 1px solid rgba(106, 169, 236, 0.35);
color: var(--nw-electric);
}
.nw-hero__feature-ic svg { width: 20px; height: 20px; }
.nw-hero__feature-text {
font-size: 0.95rem;
font-weight: 500;
color: rgba(255, 255, 255, 0.92);
line-height: 1.45;
min-height: 2.9em;
}
@media (min-width: 768px) {
.nw-hero__features { grid-template-columns: repeat(4, 1fr); min-height: 96px; }
.nw-hero__feature { flex-direction: column; align-items: flex-start; gap: 12px; padding: 20px; }
} .nw-hub {
background: radial-gradient(ellipse at top, #112142 0%, var(--nw-ink) 40%, #060d1a 100%);
padding: clamp(80px, 10vw, 128px) 0;
color: #fff;
width: 100vw;
margin-left: calc(50% - 50vw);
margin-right: calc(50% - 50vw);
position: relative;
overflow: hidden;
}
.nw-hub::before {
content: '';
position: absolute;
inset: 0;
background-image: radial-gradient(circle at 50% 50%, rgba(90, 145, 214, 0.06), transparent 60%);
pointer-events: none;
}
.nw-hub__stage {
position: relative;
margin-top: 24px;
} .nw-hub__lines {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
z-index: 1;
pointer-events: none;
display: none;
}
@media (min-width: 1024px) {
.nw-hub__lines { display: block; }
}
.nw-hub__lines .energy-path {
fill: none;
stroke: transparent;
stroke-width: 0;
stroke-dasharray: none;
stroke-linecap: round;
opacity: 0;
animation: none;
}
.nw-hub__lines .energy-path:nth-child(2) { animation-delay: 0.6s; }
.nw-hub__lines .energy-path:nth-child(3) { animation-delay: 1.2s; }
.nw-hub__lines .energy-path:nth-child(4) { animation-delay: 1.8s; }
.nw-hub__lines .energy-path:nth-child(5) { animation-delay: 2.4s; }
.nw-hub__lines .energy-path:nth-child(6) { animation-delay: 3.0s; }
.nw-hub__lines .energy-path:nth-child(7) { animation-delay: 3.6s; }
.nw-hub__lines .energy-path:nth-child(8) { animation-delay: 4.2s; }
.nw-hub__lines .energy-track {
fill: none;
stroke: rgba(255, 255, 255, 0.05);
stroke-width: 1;
}
.nw-hub__lines .energy-particle {
fill: #a9d0f8;
filter: drop-shadow(0 0 6px rgba(169, 208, 248, 0.9));
}
.nw-hub__lines .energy-particle--alt {
fill: #6aa9ec;
filter: drop-shadow(0 0 7px rgba(106, 169, 236, 0.95));
}
@keyframes nw-flow {
from { stroke-dashoffset: 170; }
to { stroke-dashoffset: 0; }
}
.nw-hub__layout {
position: relative;
z-index: 2;
display: grid;
grid-template-columns: 1fr;
gap: 28px;
}
@media (min-width: 1024px) {
.nw-hub__layout {
grid-template-columns: 1fr minmax(320px, 420px) 1fr;
gap: 48px;
align-items: center;
}
}
.nw-hub__col {
display: grid;
gap: 14px;
}
.nw-hub__core {
position: relative;
aspect-ratio: 1 / 1;
max-width: 340px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
background:
radial-gradient(circle at 50% 40%, #1a2f52 0%, #0f1e38 45%, #060d1a 100%);
box-shadow:
0 0 0 1px rgba(90, 145, 214, 0.18),
0 0 60px rgba(90, 145, 214, 0.25),
0 0 120px rgba(106, 169, 236, 0.12),
inset 0 0 80px rgba(90, 145, 214, 0.1);
}
.nw-hub__core::before {
content: '';
position: absolute;
inset: -4px;
border-radius: 50%;
background: conic-gradient(from 0deg,
transparent 0%,
rgba(106, 169, 236, 0.45) 15%,
transparent 30%,
transparent 50%,
rgba(90, 145, 214, 0.45) 65%,
transparent 80%);
animation: nw-spin 8s linear infinite;
mask: radial-gradient(circle, transparent 46%, #000 48%, #000 50%, transparent 52%);
-webkit-mask: radial-gradient(circle, transparent 46%, #000 48%, #000 50%, transparent 52%);
pointer-events: none;
}
.nw-hub__core::after {
content: '';
position: absolute;
inset: 14%;
border-radius: 50%;
border: 1px dashed rgba(255, 255, 255, 0.08);
animation: nw-spin 40s linear infinite reverse;
pointer-events: none;
}
@keyframes nw-spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
.nw-hub__core-pulse {
position: absolute;
inset: 0;
border-radius: 50%;
pointer-events: none;
}
.nw-hub__core-pulse::before,
.nw-hub__core-pulse::after {
content: '';
position: absolute;
inset: 24%;
border-radius: 50%;
border: 1px solid rgba(106, 169, 236, 0.3);
animation: nw-pulse-ring 3.2s var(--nw-ease) infinite;
}
.nw-hub__core-pulse::after { animation-delay: 1.6s; }
@keyframes nw-pulse-ring {
0%   { transform: scale(0.6); opacity: 0; }
40%  { opacity: 0.6; }
100% { transform: scale(1.6); opacity: 0; }
}
.nw-hub__core-inner {
position: relative;
z-index: 3;
text-align: center;
padding: 28px;
}
.nw-hub__core-tag {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 0.68rem;
font-weight: 600;
letter-spacing: 0.32em;
text-transform: uppercase;
color: var(--nw-cyan);
margin-bottom: 14px;
padding: 6px 14px;
border: 1px solid rgba(106, 169, 236, 0.35);
border-radius: var(--nw-r-full);
background: rgba(106, 169, 236, 0.08);
}
.nw-hub__core-tag::before {
content: '';
width: 6px; height: 6px;
border-radius: 50%;
background: var(--nw-cyan);
box-shadow: 0 0 10px var(--nw-cyan);
animation: nw-dot-pulse 1.8s ease-in-out infinite;
}
@keyframes nw-dot-pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.35; }
}
.nw-hub__core-title {
font-family: var(--nw-font-display);
font-size: clamp(1.3rem, 2.2vw, 1.65rem);
font-weight: 550;
letter-spacing: 0.04em;
text-transform: uppercase;
line-height: 1.18;
color: #fff;
text-shadow: 0 2px 20px rgba(90, 145, 214, 0.35);
}
.nw-hub__core-line {
width: 44px;
height: 2px;
background: var(--nw-gradient);
margin: 16px auto 0;
border-radius: 2px;
}
.nw-hub__node {
display: flex;
align-items: center;
gap: 14px;
padding: 16px 20px;
background: rgba(255, 255, 255, 0.035);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: var(--nw-r-md);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
cursor: pointer;
transition: background-color var(--nw-dur) var(--nw-ease),
border-color var(--nw-dur) var(--nw-ease),
transform var(--nw-dur) var(--nw-ease),
box-shadow var(--nw-dur) var(--nw-ease);
text-align: left;
color: #fff;
font-family: inherit;
width: 100%;
}
.nw-hub__node:hover,
.nw-hub__node:focus-visible {
background: rgba(90, 145, 214, 0.12);
border-color: rgba(90, 145, 214, 0.45);
transform: translateX(6px);
outline: none;
box-shadow: 0 14px 32px -10px rgba(90, 145, 214, 0.5);
}
@media (min-width: 1024px) {
.nw-hub__col--right .nw-hub__node:hover { transform: translateX(-4px); }
}
.nw-hub__node-ic {
width: 40px;
height: 40px;
flex-shrink: 0;
border-radius: var(--nw-r-sm);
background: rgba(255, 255, 255, 0.06);
border: 1px solid rgba(255, 255, 255, 0.1);
display: grid;
place-items: center;
font-size: 1.15rem;
}
.nw-hub__node-text {
font-size: 0.97rem;
font-weight: 600;
color: #e2e8f0;
flex: 1;
}
.nw-hub__node-arrow {
width: 20px; height: 20px;
color: rgba(255, 255, 255, 0.35);
transition: all 0.5s var(--nw-ease);
}
.nw-hub__node:hover .nw-hub__node-arrow {
color: var(--nw-cyan);
transform: translateX(3px);
} .nw-modal {
position: fixed;
inset: 0;
display: none;
align-items: center;
justify-content: center;
padding: 20px;
background: rgba(5, 10, 20, 0.7);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
z-index: 10000;
opacity: 0;
transition: opacity 0.5s var(--nw-ease);
}
.nw-modal.is-active { display: flex; opacity: 1; }
.nw-modal__box {
background: #0f1e38;
border: 1px solid rgba(255, 255, 255, 0.08);
max-width: 560px;
width: 100%;
border-radius: var(--nw-r-lg);
overflow: hidden;
position: relative;
transform: translateY(20px) scale(0.98);
transition: transform 0.55s var(--nw-ease);
box-shadow: 0 60px 120px -40px rgba(0, 0, 0, 0.8);
}
.nw-modal.is-active .nw-modal__box { transform: none; }
.nw-modal__accent {
height: 3px;
background: var(--nw-gradient);
}
.nw-modal__close {
position: absolute;
top: 18px;
right: 18px;
width: 40px; height: 40px;
display: grid;
place-items: center;
background: rgba(255, 255, 255, 0.06);
border: 1px solid rgba(255, 255, 255, 0.12);
border-radius: 50%;
color: #cbd5e1;
cursor: pointer;
padding: 0;
transition: background-color var(--nw-dur) var(--nw-ease),
border-color var(--nw-dur) var(--nw-ease),
color var(--nw-dur) var(--nw-ease),
transform var(--nw-dur) var(--nw-ease);
z-index: 4;
}
.nw-modal__close svg {
width: 16px;
height: 16px;
stroke-width: 2.2;
}
.nw-modal__close:hover {
background: rgba(255, 255, 255, 0.14);
border-color: rgba(255, 255, 255, 0.3);
color: #ffffff;
transform: rotate(90deg);
}
.nw-modal__close:focus-visible {
outline: 2px solid var(--nw-cyan);
outline-offset: 2px;
}
.nw-modal__body { padding: 44px 36px 36px; color: #fff; }
.nw-modal__title {
font-family: var(--nw-font-display);
font-size: 1.6rem;
font-weight: 600;
display: flex; align-items: center; gap: 14px;
margin-bottom: 16px;
}
.nw-modal__emoji {
width: 48px; height: 48px;
display: grid; place-items: center;
background: rgba(90, 145, 214, 0.15);
border: 1px solid rgba(90, 145, 214, 0.3);
border-radius: var(--nw-r-md);
font-size: 1.4rem;
}
.nw-modal__desc {
color: rgba(255, 255, 255, 0.78);
font-size: 1rem;
line-height: 1.75;
margin-bottom: 22px;
}
.nw-modal__features { display: grid; gap: 10px; }
.nw-modal__feature {
display: flex; align-items: center; gap: 12px;
padding: 13px 16px;
background: rgba(255, 255, 255, 0.035);
border: 1px solid rgba(255, 255, 255, 0.06);
border-radius: var(--nw-r-sm);
color: #e2e8f0;
font-size: 0.95rem;
}
.nw-modal__check {
width: 22px; height: 22px; flex-shrink: 0;
border-radius: 50%;
background: var(--nw-gradient);
display: grid; place-items: center;
color: #fff; font-weight: 600;
font-size: 0.7rem;
} .nw-efficiency__card {
background: var(--nw-surface);
border: 1px solid var(--nw-border);
border-radius: var(--nw-r-xl);
padding: clamp(36px, 5vw, 64px);
position: relative;
overflow: hidden;
box-shadow: var(--nw-shadow-md);
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
}
.nw-efficiency__card::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0;
height: 2px;
background: linear-gradient(90deg, transparent, var(--nw-electric), transparent);
}
.nw-efficiency__title {
font-size: clamp(1.7rem, 3.2vw, 2.4rem);
font-weight: 600;
text-align: center;
margin-bottom: 18px;
color: var(--nw-text);
}
.nw-efficiency__body {
font-size: 1.02rem;
color: var(--nw-text-2);
line-height: 1.8;
text-align: center;
max-width: 780px;
width: 100%;
margin: 0 auto 16px;
}
.nw-efficiency__stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 20px;
margin-top: 40px;
width: 100%;
max-width: 820px;
margin-left: auto;
margin-right: auto;
}
.nw-stat {
background: var(--nw-bg);
border: 1px solid var(--nw-border);
border-radius: var(--nw-r-lg);
padding: 36px 28px;
text-align: center;
position: relative;
overflow: hidden;
transition: all 0.6s var(--nw-ease);
}
.nw-stat::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0;
height: 3px;
background: var(--nw-gradient);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.6s var(--nw-ease);
}
.nw-stat:hover {
background: #fff;
transform: translateY(-6px);
box-shadow: var(--nw-shadow-lg);
border-color: rgba(90, 145, 214, 0.2);
}
.nw-stat:hover::before { transform: scaleX(1); }
.nw-stat__num {
font-family: var(--nw-font-display);
font-size: clamp(2.3rem, 3.8vw, 3.2rem);
font-weight: 500;
color: var(--nw-text);
line-height: 1;
margin-bottom: 14px;
}
.nw-stat__label {
font-size: 0.76rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.16em;
color: var(--nw-steel);
margin-bottom: 6px;
}
.nw-stat__desc {
font-size: 0.9rem;
color: var(--nw-text-3);
line-height: 1.55;
} .nw-sustain__grid {
display: grid;
grid-template-columns: 1fr;
gap: 48px;
align-items: center;
}
@media (min-width: 992px) {
.nw-sustain__grid { grid-template-columns: 1fr 1.05fr; gap: 72px; }
}
.nw-sustain__body > p {
font-size: 1.02rem;
color: var(--nw-text-2);
line-height: 1.8;
margin-bottom: 18px;
}
.nw-sustain__features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 14px;
margin-top: 36px;
}
.nw-feature-box {
background: var(--nw-surface);
border: 1px solid var(--nw-border);
border-radius: var(--nw-r-md);
padding: 22px;
transition: all 0.55s var(--nw-ease);
position: relative;
}
.nw-feature-box:hover {
transform: translateY(-4px);
border-color: rgba(90, 145, 214, 0.25);
box-shadow: var(--nw-shadow-md);
}
.nw-feature-box__ic {
width: 42px; height: 42px;
border-radius: var(--nw-r-sm);
background: var(--nw-gradient-soft);
display: grid; place-items: center;
font-size: 1.2rem;
margin-bottom: 12px;
}
.nw-feature-box h3 {
font-size: 1.02rem;
font-weight: 600;
margin-bottom: 4px;
color: var(--nw-text);
font-family: var(--nw-font-display);
}
.nw-feature-box p {
font-size: 0.88rem;
color: var(--nw-text-3);
line-height: 1.55;
}
.nw-sustain__image {
position: relative;
border-radius: var(--nw-r-xl);
overflow: hidden;
box-shadow: var(--nw-shadow-xl);
aspect-ratio: 4/3.2;
contain: layout style;
}
.nw-sustain__image img {
width: 100%; height: 100%;
object-fit: cover;
transform-origin: center center;
will-change: transform, filter;
transition: transform 0.95s var(--nw-ease), filter 0.95s var(--nw-ease);
aspect-ratio: 640/450;
}
.nw-sustain__image:hover img { transform: scale(1.018) translateY(-2px); filter: saturate(1.04); }
.nw-sustain__image::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(220deg, transparent 40%, rgba(10, 22, 40, 0.35) 100%);
pointer-events: none;
} .nw-tech {
background: linear-gradient(180deg, var(--nw-ink) 0%, #060d1a 100%);
color: #fff;
position: relative;
padding: clamp(80px, 10vw, 128px) 0;
width: 100vw;
margin-left: calc(50% - 50vw);
margin-right: calc(50% - 50vw);
overflow: hidden;
}
.nw-tech::before {
content: '';
position: absolute; inset: 0;
background:
radial-gradient(ellipse 50% 40% at 20% 25%, rgba(90, 145, 214, 0.1) 0%, transparent 55%),
radial-gradient(ellipse 40% 30% at 80% 75%, rgba(106, 169, 236, 0.08) 0%, transparent 55%);
pointer-events: none;
}
.nw-tech__statement {
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: var(--nw-r-xl);
padding: clamp(28px, 4vw, 48px);
text-align: center;
margin: 40px auto 64px;
max-width: 860px;
backdrop-filter: blur(12px);
}
.nw-tech__statement h3 {
font-size: clamp(1.3rem, 2.4vw, 1.7rem);
font-weight: 600;
letter-spacing: 0.12em;
background: linear-gradient(135deg, #a9d0f8, #8fc1f5, var(--nw-cyan));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 14px;
}
.nw-tech__statement p {
color: rgba(255, 255, 255, 0.78);
font-size: 1rem;
line-height: 1.8;
}
.nw-tech__grid {
display: grid;
grid-template-columns: 1fr;
gap: 56px;
align-items: center;
}
@media (min-width: 992px) {
.nw-tech__grid { grid-template-columns: 1fr 1fr; gap: 72px; }
}
.nw-tech__content h3 {
font-size: clamp(1.6rem, 2.8vw, 2.25rem);
font-weight: 600;
color: #fff;
margin-bottom: 20px;
}
.nw-tech__content p {
font-size: 1rem;
line-height: 1.8;
color: rgba(255, 255, 255, 0.7);
margin-bottom: 16px;
}
.nw-tech__list {
display: grid;
gap: 10px;
margin-top: 28px;
}
.nw-tech__list-item {
background: rgba(255, 255, 255, 0.035);
border: 1px solid rgba(255, 255, 255, 0.06);
border-left: 3px solid var(--nw-cyan);
border-radius: 0 var(--nw-r-md) var(--nw-r-md) 0;
transition: all 0.55s var(--nw-ease);
overflow: hidden;
}
.nw-tech__list-item a {
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 22px;
text-decoration: none;
color: inherit;
gap: 12px;
}
.nw-tech__list-item:hover {
background: rgba(106, 169, 236, 0.08);
transform: translateX(6px);
border-left-color: var(--nw-blue-2);
}
.nw-tech__list-item h4 {
font-size: 0.98rem;
font-weight: 600;
color: rgba(255, 255, 255, 0.92);
font-family: var(--nw-font-body);
}
.nw-tech__list-arrow {
width: 18px; height: 18px;
color: rgba(255, 255, 255, 0.35);
transition: all 0.5s var(--nw-ease);
}
.nw-tech__list-item:hover .nw-tech__list-arrow {
color: var(--nw-cyan);
transform: translateX(3px);
}
.nw-tech__visual {
position: relative;
border-radius: var(--nw-r-xl);
overflow: hidden;
aspect-ratio: 1/1;
background: rgba(255, 255, 255, 0.04);
border: 1px solid rgba(255, 255, 255, 0.08);
max-height: 520px;
contain: layout style;
}
.nw-tech__visual img {
width: 100%; height: 100%;
object-fit: cover;
opacity: 0.88;
transform-origin: center center;
will-change: transform, opacity, filter;
transition: transform 0.95s var(--nw-ease), opacity 0.75s var(--nw-ease-smooth), filter 0.95s var(--nw-ease);
aspect-ratio: 1/1;
}
.nw-tech__visual:hover img { transform: scale(1.016) translateY(-2px); opacity: 1; filter: saturate(1.06); } .nw-battery__grid {
display: grid;
grid-template-columns: 1fr;
gap: 56px;
align-items: center;
}
@media (min-width: 992px) {
.nw-battery__grid { grid-template-columns: 1fr 1.1fr; gap: 72px; }
}
.nw-battery__head h3 {
font-size: clamp(1.5rem, 2.5vw, 2rem);
font-weight: 600;
color: var(--nw-text);
margin-bottom: 20px;
}
.nw-battery__head p {
font-size: 1.02rem;
line-height: 1.8;
color: var(--nw-text-2);
margin-bottom: 28px;
}
.nw-battery__features {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 14px;
}
.nw-battery__feature {
background: var(--nw-surface);
border: 1px solid var(--nw-border);
border-radius: var(--nw-r-md);
padding: 20px;
transition: all 0.55s var(--nw-ease);
position: relative;
overflow: hidden;
}
.nw-battery__feature::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0;
height: 2px;
background: var(--nw-gradient);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.55s var(--nw-ease);
}
.nw-battery__feature:hover {
transform: translateY(-4px);
box-shadow: var(--nw-shadow-md);
border-color: rgba(90, 145, 214, 0.2);
}
.nw-battery__feature:hover::before { transform: scaleX(1); }
.nw-battery__feature h4 {
font-size: 0.95rem;
font-weight: 600;
margin-bottom: 4px;
display: flex; align-items: center; gap: 8px;
color: var(--nw-text);
font-family: var(--nw-font-display);
}
.nw-battery__feature p {
font-size: 0.85rem;
color: var(--nw-text-3);
line-height: 1.55;
}
.nw-battery__visual {
position: relative;
border-radius: var(--nw-r-xl);
overflow: hidden;
box-shadow: var(--nw-shadow-xl);
aspect-ratio: 2688/1600;
border: 1px solid var(--nw-border);
contain: layout style;
}
.nw-battery__visual a { display: block; width: 100%; height: 100%; }
.nw-battery__visual img {
width: 100%; height: 100%;
object-fit: cover;
transform-origin: center center;
will-change: transform, filter;
transition: transform 0.95s var(--nw-ease), filter 0.95s var(--nw-ease);
aspect-ratio: 2688/1600;
}
.nw-battery__visual:hover img { transform: scale(1.016) translateY(-2px); filter: saturate(1.05); } .nw-ns {
background: linear-gradient(180deg, #0f1e38 0%, var(--nw-ink) 100%);
color: #fff;
position: relative;
padding: clamp(80px, 10vw, 128px) 0;
width: 100vw;
margin-left: calc(50% - 50vw);
margin-right: calc(50% - 50vw);
overflow: hidden;
}
.nw-ns::before {
content: '';
position: absolute; inset: 0;
background:
radial-gradient(ellipse 55% 45% at 20% 35%, rgba(90, 145, 214, 0.1) 0%, transparent 55%),
radial-gradient(ellipse 45% 35% at 85% 70%, rgba(106, 169, 236, 0.07) 0%, transparent 55%);
}
.nw-ns__eyebrow {
font-size: 0.78rem;
font-weight: 600;
letter-spacing: 0.2em;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.65);
margin-bottom: 14px;
}
.nw-ns__title {
font-size: clamp(2.2rem, 5.2vw, 3.8rem);
font-weight: 550;
color: #fff;
margin-bottom: 20px;
line-height: 1.08;
}
.nw-ns__title .accent {
background: linear-gradient(135deg, #cfe3fb, #8fc1f5, var(--nw-cyan));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.nw-ns__badge {
display: inline-block;
background: rgba(90, 145, 214, 0.12);
border: 1px solid rgba(90, 145, 214, 0.3);
color: rgba(255, 255, 255, 0.88);
padding: 11px 24px;
border-radius: var(--nw-r-full);
font-size: 0.82rem;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.1em;
backdrop-filter: blur(10px);
}
.nw-ns__intro {
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: var(--nw-r-xl);
padding: clamp(28px, 4vw, 44px);
margin: 48px auto;
max-width: 960px;
}
.nw-ns__intro p {
color: rgba(255, 255, 255, 0.82);
font-size: 1.02rem;
line-height: 1.85;
margin-bottom: 14px;
}
.nw-ns__intro p:last-child { margin-bottom: 0; }
.nw-ns__intro strong { color: #fff; font-weight: 600; }
.nw-ns__grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin: 56px 0;
}
.nw-ns__card {
background: rgba(255, 255, 255, 0.035);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: var(--nw-r-lg);
padding: 32px 28px;
transition: all 0.6s var(--nw-ease);
position: relative;
overflow: hidden;
backdrop-filter: blur(8px);
}
.nw-ns__card::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0;
height: 2px;
background: var(--nw-gradient);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.6s var(--nw-ease);
}
.nw-ns__card:hover {
transform: translateY(-6px);
border-color: rgba(90, 145, 214, 0.3);
background: rgba(255, 255, 255, 0.05);
}
.nw-ns__card:hover::before { transform: scaleX(1); }
.nw-ns__card-num {
font-family: var(--nw-font-display);
font-size: 0.85rem;
font-weight: 600;
color: var(--nw-cyan);
letter-spacing: 0.14em;
margin-bottom: 18px;
display: block;
}
.nw-ns__card h3 {
font-size: 1.2rem;
font-weight: 600;
color: #fff;
margin-bottom: 12px;
}
.nw-ns__card p {
color: rgba(255, 255, 255, 0.68);
font-size: 0.95rem;
line-height: 1.7;
}
.nw-ns__highlight {
background: linear-gradient(135deg, rgba(90, 145, 214, 0.08), rgba(106, 169, 236, 0.04));
border: 1px solid rgba(90, 145, 214, 0.18);
border-radius: var(--nw-r-xl);
padding: clamp(36px, 5vw, 56px);
margin: 64px auto 0;
text-align: center;
max-width: 960px;
}
.nw-ns__highlight h3 {
font-size: clamp(1.6rem, 3vw, 2.25rem);
font-weight: 600;
color: #fff;
margin-bottom: 18px;
}
.nw-ns__highlight p {
color: rgba(255, 255, 255, 0.78);
font-size: 1.02rem;
line-height: 1.8;
max-width: 800px;
margin: 0 auto;
}
.nw-ns__cta {
text-align: center;
margin-top: 56px;
} .nw-news {
background: var(--nw-surface);
padding: clamp(64px, 8vw, 96px) 0;
border-top: 1px solid var(--nw-border);
}
.nw-news + .nw-news {
padding-top: 0;
border-top: 0;
}
.nw-news__head {
display: flex;
align-items: flex-end;
justify-content: space-between;
gap: 24px;
margin-bottom: clamp(28px, 4vw, 44px);
}
.nw-news__title-block { max-width: 620px; }
.nw-news__title {
font-family: var(--nw-font-heading, var(--nw-font-body));
font-size: clamp(1.7rem, 3vw, 2.3rem);
line-height: 1.15;
letter-spacing: -0.02em;
color: var(--nw-text);
margin: 14px 0 8px;
font-weight: 550;
}
.nw-news__sub {
margin: 0;
color: var(--nw-text-2);
font-size: 1rem;
line-height: 1.6;
}
.nw-news__link,
.nw-news__link:hover,
.nw-news__link:focus,
.nw-news__link:active,
.nw-news__link:visited {
text-decoration: none !important;
box-shadow: none !important;
}
.nw-news__link {
flex: 0 0 auto;
display: inline-flex;
align-items: center;
gap: 8px;
padding: 11px 18px;
border-radius: 999px;
border: 1px solid var(--nw-border);
background: var(--nw-surface);
color: var(--nw-text);
font-weight: 600;
font-size: 0.92rem;
white-space: nowrap;
transition: background-color 260ms cubic-bezier(0.2,0.8,0.2,1),
color 260ms cubic-bezier(0.2,0.8,0.2,1),
border-color 260ms cubic-bezier(0.2,0.8,0.2,1),
transform 260ms cubic-bezier(0.2,0.8,0.2,1);
}
.nw-news__link svg {
transition: transform 260ms cubic-bezier(0.2,0.8,0.2,1);
}
.nw-news__link:hover {
transform: translateY(-1px);
}
.nw-news__link:hover svg { transform: translateX(3px); } .nw-news--haber .nw-eyebrow { color: var(--nw-teal); }
.nw-news--haber .nw-eyebrow::before { background: var(--nw-teal); }
.nw-news--haber .nw-news__link {
color: var(--nw-teal);
border-color: rgba(13, 148, 136, 0.32);
}
.nw-news--haber .nw-news__link:hover {
background: var(--nw-teal);
border-color: var(--nw-teal);
color: #fff;
} .nw-news--blog .nw-eyebrow { color: var(--nw-blue); }
.nw-news--blog .nw-eyebrow::before { background: var(--nw-blue); }
.nw-news--blog .nw-news__link {
color: var(--nw-blue);
border-color: rgba(90, 145, 214, 0.26);
}
.nw-news--blog .nw-news__link:hover {
background: var(--nw-blue);
border-color: var(--nw-blue);
color: #fff;
}
.nw-news__grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: clamp(20px, 2.4vw, 28px);
min-height: 380px; 
}
.nw-news-card,
.nw-news-card:hover,
.nw-news-card:focus,
.nw-news-card:active,
.nw-news-card:visited,
.nw-news-card *,
.nw-news-card__more {
text-decoration: none !important;
}
.nw-news-card {
background: var(--nw-surface);
border: 1px solid var(--nw-border);
border-radius: var(--nw-r-xl);
overflow: hidden;
display: flex;
flex-direction: column;
color: inherit;
transition: transform 280ms cubic-bezier(0.2,0.8,0.2,1),
box-shadow 280ms cubic-bezier(0.2,0.8,0.2,1),
border-color 280ms cubic-bezier(0.2,0.8,0.2,1);
}
.nw-news-card:hover {
transform: translateY(-4px);
box-shadow: 0 20px 48px rgba(12, 26, 46, 0.10);
border-color: var(--nw-border-2);
}
.nw-news-card__media {
position: relative;
aspect-ratio: 16 / 10;
background: var(--nw-bg-2);
overflow: hidden;
contain: layout style;
}
.nw-news-card__media img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
position: relative;
z-index: 1;
transition: transform 500ms cubic-bezier(0.2,0.8,0.2,1);
}
.nw-news-card:hover .nw-news-card__media img {
transform: scale(1.05);
}
.nw-news-card__placeholder {
width: 100%;
height: 100%;
display: grid;
place-items: center;
background: linear-gradient(135deg, rgba(90, 145, 214, 0.10), rgba(106, 169, 236, 0.08));
color: var(--nw-text-2);
font-size: 0.8rem;
letter-spacing: 0.14em;
text-transform: uppercase;
font-weight: 600;
}
.nw-news-card__tag {
position: absolute;
top: 14px;
left: 14px;
padding: 5px 10px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.92);
color: var(--nw-text);
font-size: 0.72rem;
font-weight: 600;
letter-spacing: 0.06em;
text-transform: uppercase;
backdrop-filter: blur(6px);
z-index: 3;
pointer-events: none;
}
.nw-news--haber .nw-news-card__tag {
background: rgba(13, 148, 136, 0.92);
color: #fff;
}
.nw-news-card__body {
padding: 22px 22px 24px;
display: flex;
flex-direction: column;
flex: 1;
}
.nw-news-card__meta {
display: flex;
align-items: center;
gap: 8px;
font-size: 0.82rem;
font-weight: 600;
color: var(--nw-text-3);
margin-bottom: 10px;
}
.nw-news-card__title {
font-size: 1.15rem;
line-height: 1.32;
letter-spacing: -0.015em;
font-weight: 600;
color: var(--nw-text);
margin: 0 0 10px;
}
.nw-news-card__excerpt {
margin: 0 0 18px;
color: var(--nw-text-2);
line-height: 1.62;
font-size: 0.94rem;
display: -webkit-box;
-webkit-line-clamp: 3;
line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}
.nw-news-card__more {
display: inline-flex;
align-items: center;
gap: 6px;
margin-top: auto;
font-weight: 600;
font-size: 0.9rem;
}
.nw-news--haber .nw-news-card__more { color: var(--nw-teal); }
.nw-news--blog .nw-news-card__more { color: var(--nw-blue); }
.nw-news-card__more svg {
width: 14px;
height: 14px;
transition: transform 260ms cubic-bezier(0.2,0.8,0.2,1);
}
.nw-news-card:hover .nw-news-card__more svg { transform: translateX(4px); }
.nw-news[data-state="loading"] .nw-news-card__media,
.nw-news[data-state="loading"] .nw-news-card__title,
.nw-news[data-state="loading"] .nw-news-card__excerpt {
background: linear-gradient(90deg, #eef2f7 0%, #f7f9fc 50%, #eef2f7 100%);
background-size: 200% 100%;
animation: nw-news-skel 1.4s linear infinite;
color: transparent;
border-radius: 6px;
}
.nw-news[data-state="loading"] .nw-news-card__meta,
.nw-news[data-state="loading"] .nw-news-card__more { visibility: hidden; }
@keyframes nw-news-skel {
0%   { background-position: 100% 0; }
100% { background-position: -100% 0; }
}
.nw-news[data-state="empty"] .nw-news__grid { grid-template-columns: 1fr; }
.nw-news__empty {
grid-column: 1 / -1;
margin: 0;
padding: 36px clamp(20px, 3vw, 40px);
text-align: center;
color: var(--nw-text-muted, #6b7280);
font-size: 0.98rem;
background: var(--nw-surface);
border: 1px dashed var(--nw-border);
border-radius: var(--nw-r-xl);
}
@media (max-width: 960px) {
.nw-news__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); min-height: 520px; }
}
@media (max-width: 640px) {
.nw-news__grid { grid-template-columns: 1fr; min-height: 900px; }
.nw-news__head {
flex-direction: column;
align-items: flex-start;
gap: 16px;
}
.nw-news__link { align-self: flex-start; }
} .nw-social {
background: var(--nw-surface);
padding: clamp(72px, 9vw, 112px) 0;
width: 100vw;
margin-left: calc(50% - 50vw);
margin-right: calc(50% - 50vw);
border-top: 1px solid var(--nw-border);
border-bottom: 1px solid var(--nw-border);
}
.nw-social__inner {
text-align: center;
max-width: 720px;
margin: 0 auto;
}
.nw-social__icons {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 18px;
margin-top: 44px;
}
.nw-social__icon {
width: 60px; height: 60px;
border-radius: var(--nw-r-md);
display: grid; place-items: center;
color: #fff;
text-decoration: none;
transition: all 0.6s var(--nw-ease);
position: relative;
overflow: hidden;
box-shadow: var(--nw-shadow-sm);
}
.nw-social__icon svg { width: 24px; height: 24px; position: relative; z-index: 2; }
.nw-social__icon::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
transform: translateX(-120%);
transition: transform 0.9s var(--nw-ease);
}
.nw-social__icon:hover {
transform: translateY(-6px);
box-shadow: var(--nw-shadow-lg);
}
.nw-social__icon:hover::after { transform: translateX(120%); } .nw-social__icon--fb,
.nw-social__icon--ig,
.nw-social__icon--yt,
.nw-social__icon--tw {
background: transparent;
color: var(--nw-ink);
border: 1px solid var(--nw-border-2);
box-shadow: none;
}
.nw-social__icon--fb:hover,
.nw-social__icon--ig:hover,
.nw-social__icon--yt:hover,
.nw-social__icon--tw:hover {
background: var(--nw-ink);
color: #fff;
border-color: var(--nw-ink);
} .nw-cta {
padding: clamp(72px, 9vw, 112px) 0;
background: var(--nw-bg);
width: 100vw;
margin-left: calc(50% - 50vw);
margin-right: calc(50% - 50vw);
}
.nw-cta__card {
background: linear-gradient(135deg, #0f1e38 0%, var(--nw-ink) 55%, #060d1a 100%);
border-radius: var(--nw-r-xl);
padding: clamp(56px, 7vw, 96px) clamp(24px, 4vw, 64px);
text-align: center;
color: #fff;
position: relative;
overflow: hidden;
box-shadow: 0 40px 80px -20px rgba(10, 22, 40, 0.4);
}
.nw-cta__card::before {
content: '';
position: absolute; inset: 0;
background:
radial-gradient(ellipse 55% 45% at 25% 20%, rgba(90, 145, 214, 0.22) 0%, transparent 55%),
radial-gradient(ellipse 40% 35% at 80% 80%, rgba(106, 169, 236, 0.14) 0%, transparent 55%);
}
.nw-cta__card::after {
content: '';
position: absolute;
inset: 0;
background-image:
linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
background-size: 48px 48px;
mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
-webkit-mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
}
.nw-cta__inner {
position: relative;
z-index: 2;
max-width: 780px;
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: center;
gap: clamp(24px, 4vw, 36px);
}
.nw-cta__title {
font-size: clamp(2.2rem, 4.8vw, 3.6rem);
font-weight: 500;
line-height: 1.1;
margin: 0;
color: #fff;
}
.nw-root .nw-cta__text {
color: rgba(255, 255, 255, 0.78);
font-size: clamp(1rem, 1.5vw, 1.125rem);
line-height: 1.8;
margin: 0;
max-width: 640px;
}
.nw-cta__text strong { color: #fff; font-weight: 600; }
.nw-root .nw-cta__buttons {
display: flex;
flex-wrap: wrap;
gap: 14px;
justify-content: center;
margin-top: clamp(12px, 2.5vw, 24px);
padding-top: clamp(4px, 1vw, 8px);
} @media (max-width: 768px) {
.nw-root > .nw-hero .nw-hero__video { display: none; }
.nw-root > .nw-hero .nw-hero__overlay {
background:
radial-gradient(ellipse 80% 70% at 30% 25%, rgba(90, 145, 214, 0.28) 0%, transparent 55%),
radial-gradient(ellipse 55% 50% at 75% 70%, rgba(106, 169, 236, 0.18) 0%, transparent 55%),
linear-gradient(180deg, var(--nw-ink-2) 0%, var(--nw-ink) 45%, var(--nw-ink) 100%);
}
.nw-hero__features { grid-template-columns: repeat(2, 1fr); gap: 10px; min-height: 160px; }
.nw-hub__core { padding: 36px 24px; }
.nw-hub__core::after { width: 200px; height: 200px; }
.nw-modal__body { padding: 36px 24px 24px; }
.nw-modal__title { font-size: 1.35rem; }
.nw-battery__features { grid-template-columns: 1fr; }
.nw-cta__buttons .nw-btn { width: 100%; max-width: 320px; }
}
@media (max-width: 480px) {
.nw-hero__feature { padding: 14px; }
.nw-hero__feature-ic { width: 36px; height: 36px; }
.nw-hub__node { padding: 14px 16px; gap: 12px; }
.nw-hub__node-ic { width: 36px; height: 36px; font-size: 1rem; }
.nw-sustain__features { grid-template-columns: 1fr; }
}