:root {
--bg-color: #000000;
--text-primary: #f5f5f7;
--text-secondary: #86868b;
--accent-blue: #0066cc;
--accent-cyan: #00e5ff;
--accent-red: #ff3b30;
--accent-green: #34c759;
--glass-bg: rgba(20, 20, 22, 0.4);
--glass-border: rgba(255, 255, 255, 0.08);
--font-display: 'Inter', -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
--font-mono: 'JetBrains Mono', 'SF Mono', monospace;
}

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

html { scroll-behavior: auto; background: var(--bg-color); }

body {
background: var(--bg-color);
color: var(--text-primary);
font-family: var(--font-display);
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
cursor: none;
}

body.about-page {
cursor: auto;
background:
radial-gradient(circle at top, rgba(0, 229, 255, 0.08) 0%, rgba(0, 0, 0, 0) 26%),
linear-gradient(180deg, rgba(2, 6, 11, 0.98) 0%, rgba(0, 0, 0, 1) 100%);
}
#pnn-system {
position: relative;
min-height: 120vh;
display: flex;
align-items: center;
justify-content: center;
background: radial-gradient(circle at center, rgba(0, 102, 204, 0.05) 0%, #000000 60%);
overflow: hidden;
}

.pnn-container {
position: relative;
width: 1000px;
height: 800px;
display: flex;
align-items: center;
justify-content: center;
}

.pnn-lines {
position: absolute;
top: 0; left: 0; width: 100%; height: 100%;
z-index: 1;
pointer-events: none;
}

.neon-line {
fill: none;
stroke: var(--accent-cyan);
stroke-width: 2;
stroke-dasharray: 10 10;
opacity: 0.3;
filter: drop-shadow(0 0 8px var(--accent-cyan));
}

.pnn-node {
position: absolute;
z-index: 2;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
}

/* Core Orb */
.node-center {
width: 140px;
height: 140px;
z-index: 3;
}

.orb-core {
position: absolute;
width: 100%; height: 100%;
background: radial-gradient(circle at 30% 30%, #ffffff 0%, var(--accent-cyan) 40%, var(--accent-blue) 80%);
border-radius: 50%;
box-shadow: 0 0 40px var(--accent-cyan), inset 0 0 20px #fff;
animation: orbPulse 4s ease-in-out infinite alternate;
}

.orb-ring {
position: absolute;
width: 180%; height: 180%;
top: -40%; left: -40%;
border: 1px solid rgba(0, 229, 255, 0.3);
border-radius: 50%;
border-top-color: var(--accent-cyan);
border-bottom-color: var(--accent-cyan);
animation: ringSpin 8s linear infinite;
}

.node-center .label-mono {
position: relative;
z-index: 4;
color: #000;
font-size: 24px;
font-weight: 800;
letter-spacing: 0.2em;
text-shadow: 0 0 10px rgba(255,255,255,0.8);
}

@keyframes orbPulse {
0% { transform: scale(0.95); box-shadow: 0 0 30px var(--accent-cyan); }
100% { transform: scale(1.05); box-shadow: 0 0 60px var(--accent-cyan), 0 0 100px var(--accent-blue); }
}

@keyframes ringSpin {
0% { transform: rotate(0deg) scale(1); }
50% { transform: rotate(180deg) scale(1.05); }
100% { transform: rotate(360deg) scale(1); }
}

/* Floating Cards */
.pnn-card {
background: rgba(20, 20, 22, 0.6);
border: 1px solid rgba(255, 255, 255, 0.1);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border-radius: 16px;
padding: 24px;
width: 260px;
box-shadow: 0 20px 40px rgba(0,0,0,0.5);
transition: border-color 0.3s, transform 0.3s;
}

.pnn-card:hover {
border-color: var(--accent-cyan);
transform: translateY(-5px) scale(1.02);
}

.pnn-card h3 {
font-size: 16px;
font-weight: 600;
color: #fff;
line-height: 1.4;
}

.pnn-label {
color: var(--accent-cyan);
margin-bottom: 12px;
display: inline-block;
}

/* Positioning */
.node-top { top: 5%; left: 50%; transform: translateX(-50%); }
.node-bottom { bottom: 5%; left: 50%; transform: translateX(-50%); }
.node-left { left: 5%; top: 50%; transform: translateY(-50%); }
.node-right { right: 5%; top: 50%; transform: translateY(-50%); }

/* Particles */
.pnn-particle {
position: absolute;
width: 4px; height: 4px;
background: var(--accent-cyan);
border-radius: 50%;
box-shadow: 0 0 10px var(--accent-cyan);
opacity: 0;
}

/* NOISE OVERLAY FOR CINEMATIC FEEL */
.noise {
position: fixed;
top: 0; left: 0; width: 100vw; height: 100vh;
pointer-events: none;
z-index: 9999;
opacity: 0.03;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* APPLE-STYLE CURSOR */
#cursor {
position: fixed;
width: 8px; height: 8px;
background: #fff;
border-radius: 50%;
pointer-events: none;
z-index: 10000;
transform: translate(-50%,-50%);
transition: width 0.2s, height 0.2s, background 0.2s;
mix-blend-mode: difference;
}
#cursor-ring {
position: fixed;
width: 40px; height: 40px;
border: 1px solid rgba(255,255,255,0.2);
border-radius: 50%;
pointer-events: none;
z-index: 9999;
transform: translate(-50%,-50%);
transition: transform 0.1s ease-out, width 0.3s, height 0.3s;
}

/* WEBGL CANVAS */
#webgl-canvas {
position: fixed;
top: 0; left: 0;
width: 100%; height: 100%;
z-index: 0;
pointer-events: none;
}

/* SCREEN VIGNETTE / BLUR EFFECT DURING FAULT */
#vignette {
position: fixed;
top: 0; left: 0; width: 100%; height: 100%;
background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.8) 100%);
z-index: 1;
pointer-events: none;
transition: opacity 0.5s ease, backdrop-filter 0.5s ease;
opacity: 0;
}

/* NAV */
nav {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 100;
display: flex;
justify-content: space-between;
align-items: center;
padding: 24px 48px;
background: rgba(0, 0, 0, 0.4);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-logo {
font-size: 18px;
font-weight: 700;
letter-spacing: -0.02em;
color: #fff;
display: flex;
align-items: center;
gap: 8px;
}
.nav-logo-mark {
width: 20px;
height: 20px;
display: inline-flex;
align-items: center;
justify-content: center;
flex: 0 0 auto;
filter: drop-shadow(0 0 8px rgba(87, 227, 195, 0.22));
}
.nav-logo-mark svg {
width: 100%;
height: 100%;
display: block;
}
.nav-links {
display: flex;
gap: 24px;
list-style: none;
}
.nav-links a {
font-size: 13px;
font-weight: 500;
color: var(--text-secondary);
text-decoration: none;
transition: color 0.3s;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
font-size: 13px;
font-weight: 600;
padding: 10px 20px;
background: #fff;
color: #000;
border-radius: 40px;
text-decoration: none;
transition: transform 0.3s, opacity 0.3s;
}
.nav-cta:hover { transform: scale(1.05); opacity: 0.9; }

/* TYPOGRAPHY SYSTEM */
.headline-huge {
font-size: clamp(60px, 8vw, 140px);
font-weight: 800;
letter-spacing: -0.04em;
line-height: 0.9;
}
.headline-large {
font-size: clamp(40px, 5vw, 80px);
font-weight: 700;
letter-spacing: -0.03em;
line-height: 1.05;
}
.label-mono {
font-family: var(--font-mono);
font-size: 12px;
letter-spacing: 0.1em;
text-transform: uppercase;
font-weight: 600;
}

/* SECTIONS */
section {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
z-index: 2;
}

/* HERO */
#hero {
height: 100vh;
flex-direction: column;
text-align: center;
justify-content: center;
padding: 0 24px;
}

.sdg-support {
position: absolute;
top: 120px;
left: clamp(24px, 5vw, 72px);
width: min(220px, calc(100vw - 48px));
z-index: 3;
text-align: left;
}

.sdg-heading {
font-size: 13px;
font-weight: 600;
letter-spacing: -0.01em;
color: rgba(255,255,255,0.92);
margin-bottom: 12px;
padding-left: 4px;
}

.sdg-list {
list-style: none;
display: flex;
flex-direction: column;
gap: 8px;
align-items: flex-start;
padding: 0;
margin: 0;
}

.sdg-list li {
display: block;
width: min(190px, 100%);
padding: 0;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 12px 28px rgba(0,0,0,0.22);
border: 1px solid rgba(255,255,255,0.12);
background: rgba(255,255,255,0.04);
}

.sdg-goal-image {
display: block;
width: 100%;
height: auto;
aspect-ratio: 1 / 1;
object-fit: cover;
}

.sdg-support-bottom {
position: relative;
top: auto;
left: auto;
width: min(760px, 100%);
z-index: 2;
margin: 4px auto 0;
text-align: center;
}

.sdg-support-bottom .sdg-heading {
font-size: 14px;
font-weight: 700;
margin-bottom: 14px;
padding-left: 0;
}

.sdg-support-bottom .sdg-list {
flex-direction: row;
justify-content: center;
align-items: center;
flex-wrap: wrap;
gap: 10px;
}

.sdg-support-bottom .sdg-list li {
width: 72px;
border-radius: 10px;
box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}

.hero-badge,
.hero-title,
.hero-industry,
.hero-sub {
position: relative;
z-index: 2;
}
.hero-badge {
color: var(--accent-cyan);
margin-bottom: 24px;
opacity: 0;
font-size: 15px;
letter-spacing: 0.16em;
}
.hero-title {
opacity: 0;
transform: translateY(30px);
background: linear-gradient(180deg, #fff 0%, #a1a1a6 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.hero-sub {
margin-top: 24px;
font-size: clamp(22px, 2vw, 28px);
color: var(--text-secondary);
max-width: 720px;
line-height: 1.45;
opacity: 0;
font-weight: 400;
letter-spacing: -0.01em;
}
.hero-industry {
position: absolute;
top: 96px;
left: 50%;
opacity: 0;
transform: translateX(-50%) translateY(24px);
font-size: clamp(16px, 1.5vw, 22px);
letter-spacing: 0.18em;
color: var(--accent-cyan);
text-shadow: 0 0 18px rgba(0, 229, 255, 0.2);
text-align: left;
white-space: nowrap;
}

@media (max-width: 1100px) {
#hero {
padding-top: 0;
}

.business-shell {
padding: 28px;
}

.business-head {
flex-direction: column;
}

.business-grid-top,
.business-grid-bottom {
grid-template-columns: 1fr;
}
}

@media (max-width: 720px) {
.hero-industry {
top: 92px;
left: 38px;
font-size: 14px;
letter-spacing: 0.14em;
}

.sdg-support-bottom {
width: 100%;
}

.sdg-support-bottom .sdg-heading {
font-size: 13px;
}

.sdg-support-bottom .sdg-list {
gap: 8px;
}

.sdg-support-bottom .sdg-list li {
width: 58px;
}
}

#roadmap {
min-height: 100vh;
padding: 120px 5vw;
display: flex;
flex-direction: column;
align-items: center;
background: radial-gradient(circle at top, rgba(20, 20, 22, 0.8) 0%, var(--bg-color) 70%);
position: relative;
z-index: 10;
}

#contact-us {
min-height: 68vh;
padding: 120px 5vw 80px;
background:
radial-gradient(circle at top, rgba(0, 229, 255, 0.05) 0%, rgba(0, 0, 0, 0) 34%),
linear-gradient(180deg, rgba(4, 8, 14, 0.96) 0%, rgba(0, 0, 0, 1) 100%);
position: relative;
z-index: 10;
}

.contact-shell {
width: min(1180px, 100%);
margin: 0 auto;
padding: 40px 0;
text-align: center;
}

.contact-label {
color: var(--accent-cyan);
margin-bottom: 16px;
display: inline-block;
}

.contact-qr-card {
width: min(460px, 100%);
margin: 40px auto 0;
padding: 26px 24px;
border-radius: 28px;
background: linear-gradient(180deg, rgba(11, 16, 24, 0.92) 0%, rgba(7, 11, 18, 0.96) 100%);
border: 1px solid rgba(87, 227, 195, 0.16);
box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.contact-qr-copy {
font-size: 15px;
line-height: 1.5;
color: rgba(255, 255, 255, 0.88);
}

.contact-person {
margin-top: 18px;
font-size: clamp(24px, 3vw, 30px);
font-weight: 700;
letter-spacing: -0.03em;
color: #ffffff;
}

.contact-role {
display: inline-flex;
align-items: center;
margin-left: 10px;
padding: 5px 10px;
border-radius: 999px;
border: 1px solid rgba(87, 227, 195, 0.18);
background: rgba(87, 227, 195, 0.08);
font-family: var(--font-mono);
font-size: 11px;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--accent-cyan);
vertical-align: middle;
}

.contact-qr-link {
display: block;
margin-top: 14px;
font-family: var(--font-mono);
font-size: 13px;
letter-spacing: 0.06em;
color: var(--accent-cyan);
text-decoration: none;
word-break: break-word;
}

.contact-qr-link:hover {
color: #ffffff;
}

.roadmap-header-wrapper {
text-align: center;
margin-bottom: 80px;
width: 100%;
max-width: 1200px;
}

.timeline-wrapper {
width: 100%;
max-width: 1400px;
overflow-x: auto; /* For mobile responsiveness */
padding-bottom: 40px;
}

.timeline-container {
min-width: 900px; /* Force minimum width to preserve layout on small screens */
background: var(--glass-bg);
border: 1px solid var(--glass-border);
backdrop-filter: blur(40px) saturate(150%);
-webkit-backdrop-filter: blur(40px) saturate(150%);
border-radius: 24px;
padding: 40px;
box-shadow: 0 30px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
position: relative;
}

/* Grid Setup: 8 Columns for Months */
.timeline-grid {
display: grid;
grid-template-columns: repeat(8, 1fr);
grid-auto-rows: auto;
row-gap: 20px;
position: relative;
}

/* Vertical Guide Lines */
.grid-guides {
position: absolute;
top: 40px; 
bottom: 0; 
left: 0; 
right: 0;
display: grid;
grid-template-columns: repeat(8, 1fr);
pointer-events: none;
z-index: 0;
}
.guide-line {
border-left: 1px dashed rgba(255,255,255,0.05);
height: 100%;
}

/* Month Headers */
.timeline-months {
display: contents;
}
.month-label {
font-family: var(--font-mono);
font-size: 11px;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--text-secondary);
text-align: left;
padding-bottom: 24px;
padding-left: 12px;
border-bottom: 1px solid rgba(255,255,255,0.1);
margin-bottom: 24px;
}
.month-label span {
color: #fff;
font-weight: 700;
}

/* Timeline Cards */
.tl-card {
position: relative;
z-index: 2;
border-radius: 12px;
padding: 20px 24px;
display: flex;
flex-direction: column;
justify-content: center;
transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
overflow: hidden;
cursor: default;
}

/* Glass Reflections inside cards */
.tl-card::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0; height: 1px;
background: linear-gradient(90deg, rgba(255,255,255,0.2) 0%, transparent 100%);
opacity: 0.5;
}

.tl-card:hover {
transform: translateY(-4px) scale(1.01);
z-index: 5;
}

.tl-wp {
font-family: var(--font-mono);
font-size: 12px;
font-weight: 700;
letter-spacing: 0.05em;
margin-bottom: 8px;
display: flex;
align-items: center;
gap: 8px;
}

.tl-wp::before {
content: '';
display: block;
width: 6px; height: 6px;
border-radius: 50%;
}

.tl-title {
font-size: 15px;
font-weight: 500;
color: #fff;
line-height: 1.4;
letter-spacing: -0.01em;
}

/* Specific Row Placements & Colors */

/* WP1: Aug (Col 1, Span 1) */
.card-wp1 {
grid-column: 1 / 2;
background: linear-gradient(90deg, rgba(0, 229, 255, 0.1) 0%, rgba(0, 229, 255, 0.02) 100%);
border: 1px solid rgba(0, 229, 255, 0.2);
box-shadow: 0 10px 30px rgba(0, 229, 255, 0.05);
}
.card-wp1 .tl-wp { color: var(--accent-cyan); }
.card-wp1 .tl-wp::before { background: var(--accent-cyan); box-shadow: 0 0 10px var(--accent-cyan); }
.card-wp1:hover { border-color: rgba(0, 229, 255, 0.5); box-shadow: 0 15px 40px rgba(0, 229, 255, 0.15); }

/* WP2: Sep - Nov (Col 2, Span 3) */
.card-wp2 {
grid-column: 2 / 5;
background: linear-gradient(90deg, rgba(0, 102, 204, 0.15) 0%, rgba(0, 102, 204, 0.02) 100%);
border: 1px solid rgba(0, 102, 204, 0.3);
box-shadow: 0 10px 30px rgba(0, 102, 204, 0.05);
}
.card-wp2 .tl-wp { color: #4dabf7; }
.card-wp2 .tl-wp::before { background: #4dabf7; box-shadow: 0 0 10px #4dabf7; }
.card-wp2:hover { border-color: rgba(0, 102, 204, 0.6); box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2); }

/* WP3: Dec - Jan (Col 5, Span 2) */
.card-wp3 {
grid-column: 5 / 7;
background: linear-gradient(90deg, rgba(147, 51, 234, 0.15) 0%, rgba(147, 51, 234, 0.02) 100%);
border: 1px solid rgba(147, 51, 234, 0.3);
box-shadow: 0 10px 30px rgba(147, 51, 234, 0.05);
}
.card-wp3 .tl-wp { color: #b197fc; }
.card-wp3 .tl-wp::before { background: #b197fc; box-shadow: 0 0 10px #b197fc; }
.card-wp3:hover { border-color: rgba(147, 51, 234, 0.6); box-shadow: 0 15px 40px rgba(147, 51, 234, 0.2); }

/* WP4: Feb - Mar (Col 7, Span 2) */
.card-wp4 {
grid-column: 7 / 9;
background: linear-gradient(90deg, rgba(52, 199, 89, 0.1) 0%, rgba(52, 199, 89, 0.02) 100%);
border: 1px solid rgba(52, 199, 89, 0.2);
box-shadow: 0 10px 30px rgba(52, 199, 89, 0.05);
}
.card-wp4 .tl-wp { color: var(--accent-green); }
.card-wp4 .tl-wp::before { background: var(--accent-green); box-shadow: 0 0 10px var(--accent-green); }
.card-wp4:hover { border-color: rgba(52, 199, 89, 0.5); box-shadow: 0 15px 40px rgba(52, 199, 89, 0.15); }

/* GLASS PANEL SYSTEM */
.glass-panel {
background: var(--glass-bg);
border: 1px solid var(--glass-border);
backdrop-filter: blur(40px) saturate(150%);
-webkit-backdrop-filter: blur(40px) saturate(150%);
border-radius: 24px;
padding: 40px;
box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

/* STORY SECTIONS */
.story-section {
min-height: 300vh;
flex-direction: column;
align-items: flex-start;
padding: 0 10vw;
}

#problem {
min-height: 300vh;
}

#solution {
min-height: 300vh;
}

.sticky-content {
position: sticky;
top: 0;
height: 100vh;
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
}
.text-block {
max-width: 420px;
padding: 22px 24px 24px;
border-radius: 28px;
border: 1px solid rgba(255,255,255,0.12);
background: linear-gradient(180deg, rgba(12, 15, 20, 0.42) 0%, rgba(10, 12, 16, 0.28) 100%);
box-shadow: 0 22px 44px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.08);
backdrop-filter: blur(18px) saturate(130%);
-webkit-backdrop-filter: blur(18px) saturate(130%);
transition: opacity 0.35s ease, transform 0.35s ease;
}
.text-block .headline-large {
font-size: clamp(34px, 4.2vw, 64px);
text-shadow: 0 10px 28px rgba(0, 0, 0, 0.36);
}
.text-block .label-mono {
margin-bottom: 16px;
display: flex;
align-items: center;
gap: 12px;
}
.text-block .label-mono::before {
content: '';
width: 24px; height: 2px;
}
.text-block p {
font-size: 16px;
color: var(--text-secondary);
line-height: 1.6;
margin-top: 18px;
font-weight: 400;
}

#problem .text-block p {
font-size: 18px;
line-height: 1.6;
color: #ffffff !important;
opacity: 1 !important;
font-weight: 500;
text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
max-width: 100%;
}

#solution .text-block p {
font-size: 18px;
line-height: 1.6;
color: #ffffff !important;
opacity: 1 !important;
font-weight: 500;
text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
max-width: 100%;
}

@media (max-width: 700px) {
.text-block {
max-width: min(86vw, 420px);
padding: 18px 18px 20px;
border-radius: 22px;
}

#problem .text-block p,
#solution .text-block p {
font-size: 16px;
line-height: 1.5;
}
}

#competitors {
    min-height: 100vh;
    padding: 120px 5vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-color);
    position: relative;
    z-index: 10;
  }

  .comp-header-wrapper {
    text-align: center;
    margin-bottom: 80px;
  }

  .comp-grid {
    display: grid;
    grid-template-columns: 2fr repeat(8, 1fr);
    width: 100%;
    max-width: 1400px;
    gap: 0;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
  }

  .comp-row {
    display: contents;
  }

  .comp-cell {
    padding: 24px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
    transition: background 0.3s;
  }

  .comp-row:hover .comp-cell {
    background: rgba(255,255,255,0.02);
  }

  .comp-row:last-child .comp-cell {
    border-bottom: none;
  }

  .comp-cell.col-feature {
    justify-content: flex-start;
    text-align: left;
    font-weight: 500;
    color: #fff;
    padding-left: 32px;
  }

  /* Header Row Styling */
  .comp-row.header .comp-cell {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.5);
  }

  /* ANN.Energy Column Highlight */
  .col-ann {
    background: rgba(0, 229, 255, 0.03);
    position: relative;
  }
  
  .comp-row.header .col-ann {
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent-cyan);
    box-shadow: inset 0 2px 0 var(--accent-cyan);
  }

  /* Symbols */
  .sym-check {
    color: var(--accent-green);
    font-weight: 800;
    font-size: 18px;
    text-shadow: 0 0 15px var(--accent-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    line-height: 1;
  }

  .sym-cross {
    color: var(--accent-red);
    font-weight: 400;
    font-size: 14px;
    opacity: 0.5;
  }

  /* Citations embedded quietly */
  .cite {
    font-size: 9px;
    opacity: 0.3;
    font-family: var(--font-mono);
    vertical-align: super;
    margin-left: 2px;
  }

#business-model {
min-height: auto;
padding: 120px 5vw;
background:
radial-gradient(circle at top, rgba(0, 229, 255, 0.08) 0%, rgba(0, 0, 0, 0) 35%),
linear-gradient(180deg, rgba(3, 7, 12, 0.98) 0%, rgba(0, 0, 0, 1) 100%);
position: relative;
z-index: 10;
}

.business-shell {
max-width: 1480px;
margin: 0 auto;
padding: 40px;
border-radius: 32px;
background: linear-gradient(180deg, rgba(8, 12, 18, 0.94) 0%, rgba(5, 9, 15, 0.96) 100%);
border: 1px solid rgba(255,255,255,0.06);
box-shadow: 0 30px 80px rgba(0,0,0,0.42);
}

.business-head {
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 32px;
margin-bottom: 48px;
}

.business-label {
color: var(--accent-cyan);
margin-bottom: 14px;
display: inline-block;
}

.business-head p {
margin-top: 18px;
max-width: 720px;
font-size: 20px;
line-height: 1.5;
color: var(--text-secondary);
}

.business-stage {
padding: 18px 28px;
border-radius: 16px;
background: rgba(0, 229, 255, 0.07);
border: 1px solid rgba(0, 229, 255, 0.12);
font-size: 22px;
font-weight: 600;
color: rgba(255,255,255,0.92);
white-space: nowrap;
}

.business-grid-top {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 28px;
margin-bottom: 28px;
}

.business-card {
position: relative;
display: flex;
gap: 18px;
padding: 28px 24px 24px;
border-radius: 24px;
background: linear-gradient(180deg, rgba(14, 20, 30, 0.95) 0%, rgba(9, 14, 22, 0.98) 100%);
border: 1px solid rgba(255,255,255,0.06);
box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 18px 40px rgba(0,0,0,0.2);
overflow: hidden;
}

.business-card::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, rgba(0, 229, 255, 0.95) 0%, rgba(0, 102, 204, 0.4) 100%);
}

.business-icon {
font-size: 42px;
line-height: 1;
color: var(--accent-cyan);
margin-top: 4px;
flex-shrink: 0;
}

.business-card-copy h3 {
font-size: clamp(30px, 3vw, 42px);
line-height: 1.02;
margin-bottom: 14px;
letter-spacing: -0.03em;
}

.business-sub {
font-size: 22px;
color: #8f98a7;
margin-bottom: 28px;
}

.business-value {
font-size: clamp(34px, 3.5vw, 54px);
font-weight: 800;
line-height: 1;
color: #f5f5f7;
letter-spacing: -0.04em;
margin-bottom: 14px;
}

.business-margin {
font-size: 28px;
font-weight: 600;
color: #7be8f7;
margin-bottom: 28px;
}

.business-revenue {
font-size: 22px;
line-height: 1.45;
color: #aeb7c4;
margin-bottom: 22px;
}

.business-revenue strong {
color: #fff;
font-weight: 700;
}

.business-points {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 12px;
}

.business-points li {
font-size: 20px;
color: #8693a7;
}

.business-grid-bottom {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 24px;
}

.business-metric {
padding: 26px 22px;
border-radius: 22px;
background: linear-gradient(180deg, rgba(12, 18, 28, 0.96) 0%, rgba(8, 12, 20, 0.98) 100%);
border: 1px solid rgba(255,255,255,0.05);
box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.business-metric-icon {
font-size: 34px;
line-height: 1;
color: var(--accent-cyan);
margin-bottom: 18px;
}

.business-metric-value {
font-size: clamp(34px, 3vw, 52px);
font-weight: 800;
line-height: 1;
letter-spacing: -0.04em;
color: #f5f5f7;
margin-bottom: 18px;
}

.business-metric h3 {
font-size: 26px;
line-height: 1.12;
margin-bottom: 14px;
}

.business-metric p {
font-size: 20px;
line-height: 1.45;
color: #8591a3;
}


/* PROBLEM SECTION - RED */
#problem .label-mono { color: var(--accent-red); }
#problem .label-mono::before { background: var(--accent-red); }

/* OVERLAY PANELS */
.status-panel {
position: fixed;
top: 71%;
right: 4.5vw;
transform: translateY(-50%) scale(0.95);
z-index: 50;
width: 300px;
padding: 24px 22px;
border-radius: 20px;
opacity: 0;
pointer-events: none;
transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.status-panel.active {
opacity: 1;
transform: translateY(-50%) scale(1);
}
.status-header {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 16px;
}
.status-dot {
width: 8px; height: 8px;
border-radius: 50%;
}
.status-dot.red { background: var(--accent-red); box-shadow: 0 0 15px var(--accent-red); animation: pulseRed 1s infinite alternate; }
.status-dot.green { background: var(--accent-green); box-shadow: 0 0 15px var(--accent-green); }
.status-dot.cyan { background: var(--accent-cyan); box-shadow: 0 0 15px var(--accent-cyan); }

@keyframes pulseRed {
from { opacity: 0.5; transform: scale(0.8); }
to { opacity: 1; transform: scale(1.2); }
}

.status-value {
font-family: var(--font-mono);
font-size: 42px;
font-weight: 700;
letter-spacing: -0.04em;
line-height: 1;
margin-bottom: 6px;
}
.val-red { color: var(--accent-red); }
.val-green { color: var(--accent-green); }
.val-cyan { color: var(--accent-cyan); font-size: 38px; }

.status-desc { font-size: 12px; color: var(--text-secondary); margin-bottom: 16px; }

.data-row {
display: flex;
justify-content: space-between;
padding: 9px 0;
border-top: 1px solid rgba(255,255,255,0.05);
font-family: var(--font-mono);
font-size: 11px;
}
.data-row span:last-child { color: #fff; font-weight: 600; }

.cluster-label {
position: fixed;
z-index: 46;
padding: 12px 18px;
border-radius: 999px;
border: 1px solid rgba(0, 229, 255, 0.42);
background: rgba(0, 12, 18, 0.92);
backdrop-filter: blur(14px);
-webkit-backdrop-filter: blur(14px);
font-family: var(--font-mono);
font-size: 13px;
font-weight: 800;
letter-spacing: 0.12em;
text-transform: uppercase;
color: #ffffff;
text-shadow: 0 0 14px rgba(0, 229, 255, 0.18);
pointer-events: none;
opacity: 0;
transform: translate(-50%, -50%) scale(0.94);
transition: opacity 0.24s ease, transform 0.24s ease;
}

.cluster-label.visible.active {
opacity: 1;
transform: translate(-50%, -50%) scale(1);
box-shadow: 0 0 28px rgba(0, 229, 255, 0.2), 0 16px 34px rgba(0,0,0,0.4);
}

.electrical-connector {
position: fixed;
inset: 0;
z-index: 45;
pointer-events: none;
opacity: 0;
transition: opacity 0.24s ease;
}

.electrical-connector.active {
opacity: 1;
}

#electrical-connector-path {
fill: none;
stroke: rgba(255, 255, 255, 0.95);
stroke-width: 3.2;
stroke-linecap: round;
stroke-linejoin: round;
filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.35));
marker-end: url(#electrical-arrowhead);
}

.electrical-diagram {
position: fixed;
right: clamp(22px, 4vw, 64px);
top: clamp(76px, 8vh, 104px);
width: min(340px, calc(100vw - 40px));
padding: 10px 10px 12px;
border-radius: 18px;
border: 1px solid rgba(255, 255, 255, 0.12);
background: linear-gradient(180deg, rgba(9, 11, 14, 0.94) 0%, rgba(7, 9, 12, 0.98) 100%);
box-shadow: 0 28px 58px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
backdrop-filter: blur(14px);
-webkit-backdrop-filter: blur(14px);
z-index: 46;
pointer-events: none;
opacity: 0;
transform: translateY(18px) scale(0.96);
transition: opacity 0.28s ease, transform 0.28s ease;
}

.electrical-diagram.active {
opacity: 1;
transform: translateY(0) scale(1);
}

.electrical-diagram-title {
font-family: var(--font-mono);
font-size: 13px;
font-weight: 800;
letter-spacing: 0.18em;
text-transform: uppercase;
color: #ffffff;
margin: 0 0 10px 4px;
text-shadow: 0 0 10px rgba(255,255,255,0.14);
}

.electrical-cabinet {
position: relative;
height: 236px;
border-radius: 8px;
overflow: hidden;
background:
linear-gradient(180deg, #fafaf8 0%, #f0f2f3 100%);
border: 2px solid rgba(34, 38, 42, 0.65);
box-shadow: inset 0 1px 0 rgba(255,255,255,0.82), 0 18px 30px rgba(0,0,0,0.18);
}

.cabinet-top-vent {
position: absolute;
left: 20px;
right: 20px;
top: 16px;
height: 18px;
border: 2px solid rgba(35, 39, 42, 0.65);
background:
repeating-linear-gradient(
  90deg,
  rgba(24,24,24,0.96) 0 2px,
  rgba(58,58,58,0.92) 2px 4px
),
linear-gradient(180deg, rgba(45,49,53,0.95) 0%, rgba(22,24,27,0.95) 100%);
box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.cabinet-door {
position: absolute;
top: 52px;
bottom: 18px;
width: 19%;
border: 2px solid rgba(58, 64, 70, 0.5);
background: linear-gradient(180deg, #fcfcfb 0%, #edf0f2 100%);
box-shadow: inset 0 1px 0 rgba(255,255,255,0.86), inset -10px 0 20px rgba(0,0,0,0.03);
z-index: 2;
}

.cabinet-door-left {
left: 20px;
}

.cabinet-door-right {
right: 20px;
}

.door-handle {
position: absolute;
left: 12px;
top: 108px;
width: 8px;
height: 46px;
border-radius: 6px;
background: linear-gradient(180deg, #555d65 0%, #1b2024 100%);
box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}

.warning-sticker {
position: absolute;
width: 26px;
height: 34px;
background: linear-gradient(180deg, #ffe53b 0%, #f1cd17 100%);
border: 1px solid rgba(133, 108, 0, 0.28);
box-shadow: inset 0 1px 0 rgba(255,255,255,0.42);
}

.cabinet-door-left .warning-sticker {
left: 34px;
top: 114px;
}

.cabinet-door-right .warning-sticker.top {
position: absolute;
left: 22px;
top: 80px;
}

.cabinet-door-right .warning-sticker.bottom {
position: absolute;
left: 28px;
top: 160px;
}

.cabinet-core {
position: absolute;
left: 108px;
right: 108px;
top: 58px;
bottom: 24px;
display: grid;
grid-template-columns: 1fr 10px 1fr;
gap: 0;
padding: 10px 6px 8px;
border: 2px solid rgba(58, 64, 70, 0.5);
background: linear-gradient(180deg, #f8f9f9 0%, #e9ecee 100%);
box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
z-index: 3;
}

.core-divider {
position: relative;
width: 10px;
height: 100%;
border-left: 2px solid rgba(72, 78, 83, 0.46);
border-right: 2px solid rgba(72, 78, 83, 0.46);
background: linear-gradient(180deg, #eff2f4 0%, #d7dde1 100%);
}

.core-bay {
position: relative;
display: flex;
justify-content: space-evenly;
align-items: stretch;
padding-top: 14px;
background:
linear-gradient(180deg, rgba(20,20,20,0.94) 0%, rgba(20,20,20,0.65) 10%, rgba(0,0,0,0) 10%),
repeating-linear-gradient(
  90deg,
  rgba(36, 40, 44, 0.45) 0 1px,
  rgba(255,255,255,0) 1px 18px
);
}

.core-module {
position: relative;
width: 40%;
display: flex;
flex-direction: column;
align-items: center;
}

.module-loop {
position: relative;
width: 64%;
height: 18px;
border: 3px solid #616669;
border-bottom: 0;
border-radius: 22px 22px 0 0;
margin-bottom: 4px;
}

.module-loop::before,
.module-loop::after {
content: "";
position: absolute;
top: -14px;
width: 3px;
height: 18px;
background: #696d6f;
}

.module-loop::before {
left: 10px;
}

.module-loop::after {
right: 10px;
}

.module-body {
position: relative;
width: 78%;
height: 104px;
border: 2px solid rgba(62, 68, 74, 0.45);
background:
linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(245,247,248,0.98) 100%);
box-shadow: inset 0 1px 0 rgba(255,255,255,0.92);
}

.module-warning {
position: absolute;
left: 50%;
transform: translateX(-50%);
width: 20px;
background: linear-gradient(180deg, #ffe53b 0%, #f0ca18 100%);
border: 1px solid rgba(133, 108, 0, 0.24);
}

.module-warning.top {
top: 22px;
height: 18px;
background: linear-gradient(180deg, #ff5a54 0%, #cf2f2a 100%);
border-color: rgba(120, 18, 18, 0.32);
}

.module-warning.bottom {
display: none;
}

.module-screen {
display: none;
}

.module-fan {
position: absolute;
left: 50%;
bottom: 10px;
transform: translateX(-50%);
width: 26px;
height: 18px;
border: 2px solid rgba(57, 63, 69, 0.48);
background:
radial-gradient(circle at center, rgba(48,52,56,0.95) 0 3px, transparent 3px),
repeating-linear-gradient(0deg, rgba(37,41,44,0.85) 0 1px, rgba(255,255,255,0) 1px 4px),
repeating-linear-gradient(90deg, rgba(37,41,44,0.85) 0 1px, rgba(255,255,255,0) 1px 4px),
linear-gradient(180deg, #81878d 0%, #555c63 100%);
}

.module-cables {
position: relative;
width: 66%;
height: 16px;
margin-top: 6px;
border-bottom: 3px solid #757a7e;
border-left: 3px solid #757a7e;
border-right: 3px solid #757a7e;
border-radius: 0 0 24px 24px;
}

.module-coil {
position: relative;
width: 72%;
height: 22px;
margin-top: 8px;
background:
repeating-linear-gradient(
  90deg,
  #b7bcc0 0 2px,
  #d1d5d8 2px 4px
);
border: 1px solid rgba(74, 79, 84, 0.3);
box-shadow: inset 0 1px 0 rgba(255,255,255,0.45);
}

.control-panel {
position: absolute;
top: 76px;
left: 22px;
width: 40px;
height: 54px;
border: 2px solid rgba(76, 82, 88, 0.38);
background: linear-gradient(180deg, #eff2f4 0%, #d9dee2 100%);
box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.panel-screen {
position: absolute;
top: 8px;
left: 8px;
right: 8px;
height: 12px;
border: 2px solid rgba(78, 84, 90, 0.45);
background: linear-gradient(180deg, #f7f8f8 0%, #cfd5d9 100%);
}

.panel-lights {
position: absolute;
left: 7px;
right: 7px;
bottom: 7px;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 5px 4px;
}

.light {
position: relative;
width: 8px;
height: 8px;
border-radius: 50%;
box-shadow: 0 0 0 1px rgba(52,58,62,0.25);
}

.light.red { background: #cf3d35; }
.light.green { background: #33ae53; }
.light.amber { background: #e9b733; }
.light.dark { background: #283038; }

.door-vent {
position: absolute;
left: 18px;
bottom: 22px;
width: 46px;
height: 32px;
border: 2px solid rgba(84, 90, 96, 0.32);
background:
repeating-linear-gradient(
  180deg,
  rgba(126,132,138,0.95) 0 1px,
  rgba(255,255,255,0) 1px 4px
);
}

.door-swing-handle {
position: absolute;
right: 10px;
top: 120px;
width: 8px;
height: 42px;
border-radius: 6px;
background: linear-gradient(180deg, #474f56 0%, #161b1f 100%);
}


/* SOLUTION SECTION - GREEN */
#solution .label-mono { color: var(--accent-green); }
#solution .label-mono::before { background: var(--accent-green); }

/* PNN CORE */
#pnn {
min-height: 100vh;
padding: 120px 10vw;
text-align: center;
background: radial-gradient(circle at center, rgba(0, 102, 204, 0.1) 0%, transparent 60%);
}
.pnn-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 24px;
max-width: 900px;
margin: 60px auto 0;
}
.pnn-card {
background: var(--glass-bg);
border: 1px solid var(--glass-border);
border-radius: 20px;
padding: 40px;
text-align: left;
transition: transform 0.4s ease, border-color 0.4s ease;
}
.pnn-card:hover {
transform: translateY(-5px);
border-color: rgba(0, 229, 255, 0.3);
}
.pnn-card h3 {
font-size: 20px;
font-weight: 600;
margin-bottom: 12px;
color: #fff;
}
.pnn-card p {
font-size: 15px;
color: var(--text-secondary);
line-height: 1.5;
}

/* CTA */
#cta {
min-height: 100vh;
flex-direction: column;
text-align: center;
gap: 28px;
padding: 120px 24px 80px;
}
.cta-solution-card {
max-width: 980px;
padding: 32px 34px;
border-radius: 28px;
border: 1px solid rgba(52, 199, 89, 0.2);
background: linear-gradient(180deg, rgba(12, 28, 18, 0.88) 0%, rgba(8, 22, 16, 0.94) 100%);
box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
text-align: left;
}
.cta-solution-title {
font-family: var(--font-mono);
font-size: 20px;
font-weight: 800;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--accent-green);
margin-bottom: 18px;
}
.cta-solution-card p {
font-size: clamp(20px, 2.15vw, 26px);
line-height: 1.7;
color: #ffffff;
font-weight: 600;
margin: 0;
}
.cta-btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 12px;
background: #fff;
color: #000;
font-weight: 600;
font-size: 16px;
padding: 20px 48px;
border-radius: 60px;
text-decoration: none;
margin-top: 40px;
transition: transform 0.3s;
}
.cta-btn:hover { transform: scale(1.05); }

@media (max-width: 700px) {
.status-panel {
width: 250px;
right: 20px;
top: 72%;
padding: 18px 16px;
}

.status-value {
font-size: 34px;
}

.status-desc {
font-size: 11px;
}

.electrical-diagram {
right: 20px;
left: 20px;
top: 84px;
width: auto;
padding: 9px 9px 11px;
}

.electrical-cabinet {
height: 208px;
}

.cabinet-core {
left: 76px;
right: 76px;
top: 48px;
padding: 8px 4px 6px;
}

.cabinet-door {
width: 18%;
top: 46px;
}

.cabinet-door-left {
left: 10px;
}

.cabinet-door-right {
right: 10px;
}

.control-panel {
left: 10px;
width: 30px;
height: 44px;
}

.door-vent {
left: 8px;
width: 36px;
}

.module-body {
height: 78px;
}

.module-coil {
height: 16px;
}

.cta-solution-card {
padding: 24px 22px;
border-radius: 22px;
}
.cta-solution-title {
font-size: 15px;
margin-bottom: 14px;
}
.cta-solution-card p {
font-size: 17px;
line-height: 1.65;
}
}

/* ACHIEVEMENT STRIP */
#achievement-strip {
min-height: auto;
padding: 0 5vw 72px;
background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 229, 255, 0.04) 100%);
}

.achievement-card {
width: min(960px, 100%);
padding: 36px 40px;
border-color: rgba(0, 229, 255, 0.14);
background: linear-gradient(135deg, rgba(10, 14, 20, 0.88) 0%, rgba(0, 102, 204, 0.12) 100%);
box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255,255,255,0.08);
}

.achievement-card .label-mono {
color: var(--accent-cyan);
margin-bottom: 16px;
display: inline-block;
}

.achievement-card h3 {
font-size: clamp(28px, 3.5vw, 44px);
font-weight: 700;
letter-spacing: -0.03em;
line-height: 1.1;
margin-bottom: 16px;
}

.achievement-card p {
max-width: 720px;
font-size: 17px;
line-height: 1.7;
color: var(--text-secondary);
}

/* MEETING PHOTO */
#meeting-photo-strip {
min-height: auto;
padding: 0 5vw 88px;
background: linear-gradient(180deg, rgba(0, 229, 255, 0.04) 0%, rgba(0, 0, 0, 0) 100%);
}

.meeting-photo-frame {
width: min(960px, 100%);
margin: 0;
padding: 20px;
border-radius: 28px;
background: rgba(10, 14, 20, 0.72);
border: 1px solid rgba(255,255,255,0.08);
box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
backdrop-filter: blur(18px);
-webkit-backdrop-filter: blur(18px);
}

.meeting-photo-frame img {
display: block;
width: 100%;
height: auto;
border-radius: 18px;
object-fit: cover;
}

.meeting-photo-frame figcaption {
padding: 18px 8px 0;
}

.meeting-photo-frame .label-mono {
color: var(--accent-cyan);
display: inline-block;
margin-bottom: 10px;
}

.meeting-photo-frame p {
font-size: 16px;
line-height: 1.6;
color: var(--text-secondary);
}

/* ABOUT */
#about-us {
min-height: auto;
padding: 32px 5vw 108px;
background:
radial-gradient(circle at top, rgba(0, 229, 255, 0.08) 0%, rgba(0, 0, 0, 0) 32%),
linear-gradient(180deg, rgba(3, 8, 14, 0.98) 0%, rgba(0, 0, 0, 1) 100%);
}

body.about-page #about-us {
min-height: auto;
padding: 24px 5vw 96px;
background: transparent;
}

body.about-page #achievement-strip {
padding: 140px 5vw 32px;
background: transparent;
}

body.about-page #meeting-photo-strip {
padding: 0 5vw 32px;
background: transparent;
}

.about-shell {
max-width: 1080px;
margin: 0 auto;
padding: 44px 36px 56px;
border-radius: 28px;
background: linear-gradient(180deg, rgba(6, 13, 22, 0.9) 0%, rgba(3, 8, 14, 0.96) 100%);
border: 1px solid rgba(0, 229, 255, 0.12);
box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255,255,255,0.03);
text-align: center;
position: relative;
overflow: hidden;
}

.about-shell::before {
content: "";
position: absolute;
inset: 0;
background: repeating-linear-gradient(
180deg,
rgba(0, 229, 255, 0.03) 0,
rgba(0, 229, 255, 0.03) 1px,
transparent 1px,
transparent 4px
);
pointer-events: none;
opacity: 0.35;
}

.about-label,
.about-title,
.team-grid {
position: relative;
z-index: 1;
}

.about-label {
color: var(--accent-cyan);
margin-bottom: 18px;
display: inline-block;
}

.about-title {
max-width: 900px;
margin: 0 auto 54px;
font-size: clamp(38px, 4.5vw, 68px);
}

.team-grid {
display: flex;
flex-direction: column;
align-items: center;
gap: 54px;
}

.team-row {
width: 100%;
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 28px;
align-items: start;
}

.team-member {
display: flex;
flex-direction: column;
align-items: center;
gap: 14px;
}

.team-founder {
margin-bottom: 8px;
}

.team-bottom {
margin-top: 4px;
}

.team-orb {
width: 116px;
height: 116px;
border-radius: 50%;
display: grid;
place-items: center;
position: relative;
border: 2px solid rgba(0, 229, 255, 0.9);
background:
radial-gradient(circle at 35% 35%, rgba(0, 229, 255, 0.12) 0%, rgba(0, 229, 255, 0.03) 35%, rgba(2, 8, 16, 0.95) 70%),
linear-gradient(145deg, rgba(0, 229, 255, 0.08) 0%, rgba(0,0,0,0) 48%);
box-shadow:
0 0 0 1px rgba(0, 229, 255, 0.1),
0 0 24px rgba(0, 229, 255, 0.24),
inset 0 0 18px rgba(0, 229, 255, 0.08);
overflow: hidden;
}

.team-orb::after {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(135deg, transparent 52%, rgba(0, 229, 255, 0.28) 52%, rgba(0, 229, 255, 0.12) 66%, transparent 66%);
opacity: 0.7;
}

.team-orb span {
position: relative;
z-index: 1;
font-family: var(--font-mono);
font-size: 32px;
font-weight: 700;
letter-spacing: -0.04em;
color: var(--accent-cyan);
text-shadow: 0 0 18px rgba(0, 229, 255, 0.26);
}

.team-member h3 {
font-size: 30px;
font-weight: 600;
letter-spacing: -0.02em;
}

.team-member p {
font-family: var(--font-mono);
font-size: 12px;
letter-spacing: 0.12em;
text-transform: uppercase;
color: rgba(123, 232, 247, 0.7);
}

.team-link {
font-family: var(--font-mono);
font-size: 12px;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
color: rgba(123, 232, 247, 0.86);
text-decoration: none;
border-bottom: 1px solid rgba(123, 232, 247, 0.35);
padding-bottom: 3px;
transition: color 0.25s ease, border-color 0.25s ease, text-shadow 0.25s ease;
}

.team-link:hover {
color: #ffffff;
border-color: rgba(255, 255, 255, 0.7);
text-shadow: 0 0 14px rgba(0, 229, 255, 0.24);
}

/* FOOTER */
footer {
padding: 40px 10vw;
border-top: 1px solid rgba(255,255,255,0.05);
display: flex;
justify-content: space-between;
align-items: center;
z-index: 2;
position: relative;
background: #000;
}
footer p { font-size: 13px; color: var(--text-secondary); }

@media (max-width: 768px) {
.business-shell {
padding: 20px;
border-radius: 24px;
}

.business-card {
flex-direction: column;
padding: 24px 20px 20px;
}

.business-icon {
font-size: 34px;
}

.business-head p,
.business-sub,
.business-revenue,
.business-points li,
.business-metric p {
font-size: 16px;
}

.business-stage {
font-size: 16px;
padding: 14px 18px;
}

.business-margin {
font-size: 22px;
}

.business-metric {
padding: 22px 18px;
}

.business-metric h3 {
font-size: 22px;
}

.achievement-card {
padding: 28px 24px;
}

.meeting-photo-frame {
padding: 14px;
border-radius: 22px;
}

.about-shell {
padding: 32px 20px 40px;
}

.about-title {
margin-bottom: 38px;
}

.team-grid {
gap: 34px;
}

.team-row {
grid-template-columns: 1fr;
gap: 30px;
}

.team-orb {
width: 96px;
height: 96px;
}

.team-orb span {
font-size: 26px;
}

.team-member h3 {
font-size: 24px;
}

footer {
flex-direction: column;
gap: 12px;
text-align: center;
}
}

@media (max-width: 768px) {
body {
cursor: auto;
}

#cursor,
#cursor-ring {
display: none;
}

nav {
padding: calc(12px + env(safe-area-inset-top, 0px)) 16px 12px;
align-items: flex-start;
flex-direction: column;
gap: 12px;
background: linear-gradient(180deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.56) 100%);
backdrop-filter: blur(24px) saturate(145%);
-webkit-backdrop-filter: blur(24px) saturate(145%);
}

.nav-logo {
font-size: 16px;
gap: 10px;
}

.nav-links {
width: 100%;
gap: 8px;
flex-wrap: wrap;
overflow: visible;
padding-bottom: 0;
}

.nav-links li {
flex: 0 0 auto;
}

.nav-links a {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 32px;
padding: 7px 11px;
white-space: nowrap;
font-size: 11px;
border-radius: 999px;
background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
border: 1px solid rgba(255,255,255,0.08);
box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 10px 18px rgba(0,0,0,0.12);
color: rgba(255,255,255,0.82);
}

#hero {
height: auto;
min-height: 100svh;
padding: 162px 16px 60px;
}

.hero-badge {
order: 2;
margin-bottom: 16px;
font-size: 12px;
letter-spacing: 0.14em;
padding: 8px 12px;
border-radius: 999px;
background: rgba(0, 229, 255, 0.08);
border: 1px solid rgba(0, 229, 255, 0.16);
box-shadow: 0 14px 24px rgba(0,0,0,0.14);
}

.headline-huge {
font-size: clamp(50px, 16vw, 78px);
line-height: 0.94;
letter-spacing: -0.05em;
text-shadow: 0 12px 28px rgba(0,0,0,0.22);
}

.hero-title {
order: 3;
}

.hero-sub {
order: 4;
margin-top: 16px;
max-width: 100%;
font-size: 16px;
line-height: 1.5;
padding: 14px 16px;
border-radius: 20px;
background: linear-gradient(180deg, rgba(11, 16, 24, 0.68) 0%, rgba(8, 12, 18, 0.36) 100%);
border: 1px solid rgba(255,255,255,0.10);
backdrop-filter: blur(18px) saturate(130%);
-webkit-backdrop-filter: blur(18px) saturate(130%);
box-shadow: 0 20px 44px rgba(0,0,0,0.24);
color: rgba(255,255,255,0.84);
}

.hero-industry {
position: absolute;
top: 124px;
left: 50%;
order: 1;
align-self: auto;
margin: 0;
transform: translateX(-50%);
font-size: 11px;
letter-spacing: 0.14em;
padding: 7px 10px;
border-radius: 999px;
background: rgba(0, 229, 255, 0.06);
border: 1px solid rgba(0, 229, 255, 0.12);
}

.story-section {
min-height: auto;
padding: 72px 16px;
}

#problem,
#solution {
min-height: auto;
}

.sticky-content {
position: relative;
top: auto;
height: auto;
justify-content: flex-start;
}

.text-block {
max-width: 100%;
padding: 17px 16px 18px;
border-radius: 22px;
background: linear-gradient(180deg, rgba(11, 15, 22, 0.78) 0%, rgba(9, 12, 18, 0.52) 100%);
border: 1px solid rgba(255,255,255,0.10);
box-shadow: 0 18px 40px rgba(0,0,0,0.2);
backdrop-filter: blur(18px) saturate(125%);
-webkit-backdrop-filter: blur(18px) saturate(125%);
}

.text-block .headline-large {
font-size: clamp(30px, 9vw, 44px);
}

.text-block p,
#problem .text-block p,
#solution .text-block p {
font-size: 15px;
line-height: 1.45;
}

.status-panel,
.electrical-diagram,
.electrical-connector,
.cluster-label {
display: none !important;
}

#panel-problem,
#panel-solution,
#electrical-diagram,
#electrical-connector {
opacity: 0 !important;
pointer-events: none !important;
}

#pnn-system {
min-height: auto;
padding: 88px 16px 60px;
}

.pnn-container {
width: min(100%, 420px);
height: auto;
display: grid;
grid-template-columns: 1fr;
gap: 22px;
}

.pnn-lines {
display: none;
}

.pnn-node {
position: relative;
top: auto;
right: auto;
bottom: auto;
left: auto;
width: 100%;
transform: none !important;
}

.node-center {
width: 120px;
height: 120px;
margin: 0 auto 32px;
}

.pnn-card {
width: 100%;
padding: 16px 16px 18px;
border-radius: 22px;
background: linear-gradient(180deg, rgba(11, 16, 24, 0.9) 0%, rgba(8, 12, 18, 0.96) 100%);
border: 1px solid rgba(255,255,255,0.08);
box-shadow: 0 18px 38px rgba(0,0,0,0.22);
}

.node-top {
margin-top: 10px;
}

.pnn-card h3 {
font-size: 15px;
}

#competitors {
padding: 80px 16px 60px;
align-items: stretch;
overflow-x: auto;
}

.comp-header-wrapper {
margin-bottom: 28px;
}

.comp-grid {
min-width: 980px;
width: max-content;
}

.comp-cell {
padding: 16px 12px;
font-size: 13px;
}

.comp-cell.col-feature {
min-width: 240px;
padding-left: 18px;
}

#roadmap {
padding: 80px 16px 60px;
}

.timeline-wrapper {
padding-bottom: 18px;
}

.timeline-container {
padding: 20px 16px;
}

#cta {
padding: 80px 16px 60px;
gap: 18px;
}

.cta-solution-card {
padding: 20px 18px;
border-radius: 22px;
}

.cta-solution-title {
font-size: 15px;
margin-bottom: 14px;
}

.cta-solution-card p {
font-size: 15px;
line-height: 1.58;
}

#contact-us {
min-height: auto;
padding: 80px 16px 60px;
}

.contact-shell {
padding: 20px 0 0;
}

.contact-shell .headline-large {
font-size: clamp(42px, 13vw, 62px);
line-height: 0.98;
}

.contact-qr-card {
margin-top: 28px;
padding: 18px 16px;
border-radius: 24px;
background: linear-gradient(180deg, rgba(10, 16, 24, 0.92) 0%, rgba(7, 11, 18, 0.98) 100%);
border: 1px solid rgba(87, 227, 195, 0.18);
box-shadow: 0 22px 46px rgba(0,0,0,0.24);
}

.contact-qr-copy {
font-size: 14px;
line-height: 1.45;
}

.contact-person {
margin-top: 14px;
font-size: 22px;
line-height: 1.12;
}

.contact-role {
display: inline-flex;
margin: 10px 0 0;
}

.contact-qr-link {
font-size: 11px;
}

footer {
padding: 24px 18px 34px;
flex-direction: column;
align-items: flex-start;
gap: 10px;
text-align: left;
}

footer p {
font-size: 12px;
}
}
