@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-display: swap;
src: local('Inter'), local('Inter-Regular');
} :root {
--primary-blue: #0f4da8;
--primary-blue-light: #2a62c4;
--primary-blue-dark: #0c3d86;
--accent-blue: #7c94bd;
--text-primary: #101c2e;
--text-secondary: #46505e;
--text-muted: #67707e;
--background-primary: #ffffff;
--background-secondary: #f7f5f0;
--background-tertiary: #f0ece4;
--border-light: #e7e2d8;
--nawis-dark: #070b14;
--nawis-blue: #0f4da8;
--nawis-cyan: #2a62c4; --nawis-blue-on-dark: #6aa9ec;
--node-bg: rgba(15, 23, 42, 0.6);
--text-bright: #f7f5f0;
--text-dim: #c5ccd6;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
line-height: 1.6;
color: var(--text-primary);
background: var(--background-primary);
overflow-x: hidden;
max-width: 100vw;
} .page-hero {
background: linear-gradient(135deg, var(--nawis-dark) 0%, #101c2e 100%);
padding: 120px 0 80px;
text-align: center;
color: white;
position: relative;
overflow: hidden;
}
.page-hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 50% 50%, rgba(15, 77, 168, 0.1) 0%, transparent 70%);
}
.page-hero-content {
max-width: 1200px;
margin: 0 auto;
padding: 0 40px;
position: relative;
z-index: 2;
}
.page-hero h1 {
font-size: 3.5rem;
font-weight: 550;
margin-bottom: 24px;
line-height: 1.2;
letter-spacing: -0.02em;
color: white;
}
.page-hero .highlight {
color: var(--nawis-blue-on-dark);
}
.page-hero p {
font-size: 1.3rem;
color: rgba(255, 255, 255, 0.9);
max-width: 800px;
margin: 0 auto;
line-height: 1.7;
} .ns-hub-section {
position: relative;
width: 100%;
background-color: var(--nawis-dark);
padding: 100px 0;
font-family: 'Inter', sans-serif;
color: var(--text-bright);
overflow-x: hidden;
}
.ns-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 20px;
position: relative;
width: 100%;
box-sizing: border-box;
}
.ns-hub-header {
text-align: center;
margin-bottom: 80px;
z-index: 10;
position: relative;
}
.ns-hub-header h2 {
font-size: 3.2rem;
font-weight: 550;
letter-spacing: -0.03em;
margin-bottom: 15px;
color: var(--text-bright);
}
.ns-hub-header p {
font-size: 1.15rem;
color: var(--text-dim);
max-width: 700px;
margin: 0 auto;
line-height: 1.7;
}
.ns-hub-header p strong {
color: var(--nawis-blue-on-dark);
font-weight: 600;
}
.ns-hub-wrapper {
position: relative;
height: 650px;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
max-width: 100%;
overflow: hidden;
}
.ns-svg-lines {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
pointer-events: none;
z-index: 1;
max-width: 100%;
overflow: hidden;
}
.energy-path {
fill: none;
stroke: var(--nawis-blue);
stroke-width: 1.5;
stroke-dasharray: 10, 150;
stroke-linecap: round;
opacity: 0.4;
animation: flow 4s linear infinite;
}
@keyframes flow {
from {
stroke-dashoffset: 160;
}
to {
stroke-dashoffset: 0;
}
}
.ns-hub-core {
width: 280px;
height: 280px;
background: radial-gradient(circle, #1e293b 0%, #101c2e 100%);
border: 1px solid rgba(15, 77, 168, 0.3);
border-radius: 50%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
z-index: 5;
box-shadow: 0 0 80px rgba(15, 77, 168, 0.2);
position: relative;
}
.ns-hub-core::after {
content: '';
position: absolute;
width: 115%;
height: 115%;
border: 1px solid rgba(255, 255, 255, 0.03);
border-radius: 50%;
}
.ns-core-label,
.ns-hub-core > span {
display: block;
color: var(--nawis-blue-on-dark) !important;
font-size: 0.75rem;
font-weight: 600;
letter-spacing: 0.18em;
margin-bottom: 10px;
}
.ns-core-title {
font-size: 1.3rem;
font-weight: 550;
text-align: center;
text-transform: uppercase;
letter-spacing: 2px;
color: #fff;
}
.ns-hub-node {
position: absolute;
background: var(--node-bg);
border: 1px solid rgba(255, 255, 255, 0.08);
padding: 12px 24px;
border-radius: 40px;
display: flex;
align-items: center;
gap: 15px;
cursor: pointer;
z-index: 10;
transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
backdrop-filter: blur(12px);
min-width: 220px;
}
.ns-hub-node:hover {
background: rgba(15, 77, 168, 0.15);
border-color: var(--nawis-blue);
transform: scale(1.05);
box-shadow: 0 0 30px rgba(15, 77, 168, 0.2);
}
.node-icon {
width: 36px;
height: 36px;
background: rgba(255, 255, 255, 0.05);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
border: 1px solid rgba(255, 255, 255, 0.1);
}
.node-text {
font-weight: 600;
font-size: 1rem;
color: #e7e2d8;
}
.node-l1 {
top: 10%;
left: 20%;
}
.node-l2 {
top: 35%;
left: 18%;
}
.node-l3 {
bottom: 35%;
left: 18%;
}
.node-l4 {
bottom: 10%;
left: 20%;
}
.node-r1 {
top: 10%;
right: 20%;
}
.node-r2 {
top: 35%;
right: 18%;
}
.node-r3 {
bottom: 35%;
right: 18%;
}
.node-r4 {
bottom: 10%;
right: 20%;
}
.ns-smart-modal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(3, 7, 18, 0.92);
backdrop-filter: blur(20px);
display: none;
justify-content: center;
align-items: center;
z-index: 10000;
opacity: 0;
transition: opacity 0.4s ease;
}
.ns-smart-modal.active {
display: flex;
opacity: 1;
}
.ns-modal-box {
background: #101c2e;
border: 1px solid rgba(255, 255, 255, 0.1);
width: 100%;
max-width: 600px;
border-radius: 30px;
position: relative;
overflow: hidden;
box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
transform: translateY(30px);
transition: transform 0.4s ease;
}
.ns-smart-modal.active .ns-modal-box {
transform: translateY(0);
}
.modal-accent {
height: 6px;
background: linear-gradient(90deg, var(--nawis-blue), var(--nawis-cyan));
}
.modal-padding {
padding: 50px;
}
.modal-close {
position: absolute;
top: 25px;
right: 30px;
font-size: 1.8rem;
color: var(--text-dim);
cursor: pointer;
z-index: 2;
transition: color 0.2s ease;
}
.modal-close:hover {
color: #fff;
}
.modal-title {
font-size: 2.2rem;
font-weight: 550;
margin-bottom: 20px;
color: #fff;
display: flex;
align-items: center;
gap: 15px;
}
.modal-desc {
font-size: 1.15rem;
color: #dcd6c9;
line-height: 1.8;
margin-bottom: 30px;
}
.modal-features {
display: grid;
grid-template-columns: 1fr;
gap: 15px;
}
.feature-item {
background: rgba(255, 255, 255, 0.03);
padding: 15px 20px;
border-radius: 3px;
border: 1px solid rgba(255, 255, 255, 0.05);
color: #e7e2d8;
display: flex;
align-items: center;
gap: 12px;
}
.feature-item i {
color: var(--nawis-blue-on-dark);
font-weight: bold;
} .detailed-components {
background: var(--background-secondary);
padding: 100px 0;
}
.detailed-components-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 40px;
}
.detailed-components-header {
text-align: center;
margin-bottom: 80px;
}
.detailed-components-header h2 {
font-size: 2.8rem;
font-weight: 600;
color: var(--text-primary);
margin-bottom: 20px;
}
.detailed-components-header p {
font-size: 1.2rem;
color: var(--text-secondary);
max-width: 800px;
margin: 0 auto;
line-height: 1.7;
}
.components-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
gap: 40px;
margin-bottom: 80px;
}
.component-card {
background: white;
border: 1px solid var(--border-light);
border-radius: 4px;
padding: 40px;
transition: all 0.3s ease;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.component-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 40px rgba(15, 77, 168, 0.15);
border-color: var(--primary-blue);
}
.component-icon {
font-size: 3rem;
margin-bottom: 20px;
}
.component-card h3 {
font-size: 1.8rem;
font-weight: 600;
color: var(--text-primary);
margin-bottom: 16px;
}
.component-card .description {
font-size: 1.05rem;
color: var(--text-secondary);
line-height: 1.7;
margin-bottom: 24px;
}
.component-features {
list-style: none;
padding: 0;
margin: 0;
}
.component-features li {
font-size: 0.95rem;
color: var(--text-secondary);
padding: 10px 0;
padding-left: 28px;
position: relative;
line-height: 1.6;
}
.component-features li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--primary-blue);
font-weight: 600;
font-size: 1.1rem;
} .stats-section {
background: linear-gradient(135deg, var(--background-secondary) 0%, var(--background-tertiary) 100%);
padding: 80px 40px;
border-radius: 30px;
margin: 80px 0;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
max-width: 1200px;
margin: 0 auto;
}
.stat-item {
text-align: center;
}
.stat-number {
font-size: 3.5rem;
font-weight: 550;
background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 12px;
}
.stat-label {
font-size: 1.1rem;
font-weight: 600;
color: var(--text-primary);
margin-bottom: 8px;
}
.stat-description {
font-size: 0.95rem;
color: var(--text-muted);
} .cta-section {
background: linear-gradient(135deg, var(--nawis-dark) 0%, #101c2e 100%);
padding: 100px 40px;
text-align: center;
border-radius: 30px;
margin: 80px 0;
color: white;
}
.cta-section h2 {
font-size: 2.8rem;
font-weight: 600;
margin-bottom: 24px;
color: white;
}
.cta-section p {
font-size: 1.2rem;
color: rgba(255, 255, 255, 0.9);
max-width: 700px;
margin: 0 auto 40px;
line-height: 1.7;
}
.cta-buttons {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}
.cta-button {
padding: 18px 40px;
font-size: 1.1rem;
font-weight: 600;
text-decoration: none !important;
border-radius: 50px;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
gap: 12px;
}
.cta-button:hover,
.cta-button:focus,
.cta-button:active,
.cta-button:visited {
text-decoration: none !important;
}
.cta-primary,
.cta-primary:link,
.cta-primary:visited {
background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
color: #fff !important;
box-shadow: 0 8px 25px rgba(15, 77, 168, 0.3);
}
.cta-primary:hover,
.cta-primary:focus,
.cta-primary:active {
transform: translateY(-4px);
box-shadow: 0 12px 35px rgba(15, 77, 168, 0.4);
color: #fff !important;
}
.cta-secondary,
.cta-secondary:link,
.cta-secondary:visited {
background: rgba(255, 255, 255, 0.1);
color: #fff !important;
border: 2px solid rgba(255, 255, 255, 0.3);
backdrop-filter: blur(10px);
}
.cta-secondary:hover,
.cta-secondary:focus,
.cta-secondary:active {
background: rgba(255, 255, 255, 0.2);
border-color: rgba(255, 255, 255, 0.5);
color: #fff !important;
} @media (max-width: 1024px) {
.ns-hub-wrapper {
height: auto;
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
padding: 40px 0;
}
.ns-hub-core,
.ns-svg-lines {
display: none;
}
.ns-hub-node {
position: relative;
top: auto;
left: auto;
right: auto;
bottom: auto;
width: 100%;
min-width: auto;
}
.ns-hub-header h2 {
font-size: 2.5rem;
}
.components-grid {
grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
gap: 30px;
}
.page-hero h1 {
font-size: 2.8rem;
}
}
@media (max-width: 768px) {
.page-hero {
padding: 100px 0 60px;
}
.page-hero h1 {
font-size: 2.2rem;
}
.page-hero p {
font-size: 1.1rem;
}
.ns-hub-section {
padding: 80px 0;
}
.ns-hub-header h2 {
font-size: 2rem;
}
.ns-hub-header p {
font-size: 1rem;
}
.ns-hub-wrapper {
grid-template-columns: 1fr;
}
.ns-hub-node {
min-width: auto;
width: 100%;
}
.ns-modal-box {
max-width: 90%;
margin: 20px;
}
.modal-padding {
padding: 30px;
}
.modal-title {
font-size: 1.8rem;
}
.detailed-components {
padding: 60px 0;
}
.detailed-components-container {
padding: 0 20px;
}
.detailed-components-header h2 {
font-size: 2.2rem;
}
.components-grid {
grid-template-columns: 1fr;
gap: 30px;
}
.component-card {
padding: 30px;
}
.stats-grid {
grid-template-columns: 1fr;
gap: 30px;
}
.cta-section {
padding: 60px 30px;
}
.cta-section h2 {
font-size: 2.2rem;
}
.cta-buttons {
flex-direction: column;
align-items: center;
}
.cta-button {
width: 100%;
max-width: 300px;
justify-content: center;
}
}
@media (max-width: 480px) {
.page-hero h1 {
font-size: 1.8rem;
}
.detailed-components-header h2 {
font-size: 1.8rem;
}
.component-card h3 {
font-size: 1.5rem;
}
.stat-number {
font-size: 2.8rem;
}
}