
/* Block 1 */
.cyber-hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 85vh;
    overflow: hidden;
    background-color: #050505;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
  }

  .cyber-grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
      linear-gradient(rgba(0, 243, 255, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0, 243, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
  }

  .cyber-container {
    position: relative;
    width: 100%;
    max-width: 1280px;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 1;
  }

  .cyber-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .cyber-prelabel {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.2);
    color: #00f3ff;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    width: fit-content;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .cyber-headline {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
  }

  .cyber-text-gradient {
    background: linear-gradient(135deg, #00f3ff 0%, #0066ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .cyber-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #a1a1aa;
    max-width: 540px;
    margin: 0;
  }

  .cyber-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(90deg, #0066ff, #00f3ff);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    width: fit-content;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
  }

  .cyber-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.5);
  }

  .cyber-visual-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
  }

  .cyber-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    filter: grayscale(20%) contrast(110%);
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  }

  .cyber-card-float {
    position: absolute;
    bottom: 40px;
    left: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  }

  .card-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00f3ff;
  }

  .card-data {
    display: flex;
    flex-direction: column;
  }

  .data-label {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
  }

  .data-value {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
  }

  @media (max-width: 992px) {
    .cyber-container {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 3rem;
    }

    .cyber-content-wrapper {
      align-items: center;
    }

    .cyber-headline {
      font-size: 2.5rem;
    }

    .cyber-card-float {
      left: 50%;
      transform: translateX(-50%);
      bottom: -20px;
    }
  }

/* Block 2 */
.neo-features-section {
position: relative;
padding: 8rem 0;
background-color: #050505;
color: #ffffff;
overflow: hidden;
font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.neo-features-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, #00f2ff, transparent);
opacity: 0.5;
}

.neo-container {
max-width: 1280px;
margin: 0 auto;
padding: 0 2rem;
position: relative;
z-index: 2;
}

.neo-header-group {
text-align: center;
margin-bottom: 5rem;
}

.neo-eyebrow {
display: inline-block;
color: #00f2ff;
font-size: 0.85rem;
font-weight: 700;
letter-spacing: 0.2em;
text-transform: uppercase;
margin-bottom: 1rem;
padding: 0.5rem 1rem;
border: 1px solid rgba(0, 242, 255, 0.3);
border-radius: 50px;
background: rgba(0, 242, 255, 0.05);
}

.neo-title {
font-size: 3.5rem;
font-weight: 800;
line-height: 1.1;
margin-bottom: 1.5rem;
background: linear-gradient(135deg, #ffffff 0%, #a5a5a5 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.neo-subtitle {
font-size: 1.125rem;
color: #a0a0a0;
max-width: 600px;
margin: 0 auto;
line-height: 1.6;
}

.neo-grid-layout {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 2rem;
margin-bottom: 4rem;
}

.neo-card {
background: rgba(20, 20, 20, 0.6);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 24px;
overflow: hidden;
transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
display: flex;
flex-direction: column;
}

.neo-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 242, 255, 0.1);
border-color: rgba(0, 242, 255, 0.3);
}

.neo-card-visual {
position: relative;
height: 240px;
overflow: hidden;
}

.neo-img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s ease;
filter: grayscale(80%) contrast(1.2);
}

.neo-card:hover .neo-img {
transform: scale(1.1);
filter: grayscale(0%) contrast(1.1);
}

.neo-overlay-glow {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(to bottom, transparent 50%, #050505 100%);
z-index: 1;
}

.neo-card-content {
padding: 2.5rem;
position: relative;
flex-grow: 1;
display: flex;
flex-direction: column;
}

.neo-icon-box {
width: 60px;
height: 60px;
background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1.5rem;
color: #00f2ff;
font-size: 1.5rem;
box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.neo-card-title {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 1rem;
color: #ffffff;
}

.neo-card-text {
color: #a0a0a0;
font-size: 1rem;
line-height: 1.6;
margin-bottom: 2rem;
flex-grow: 1;
}

.neo-link {
color: #ffffff;
text-decoration: none;
font-weight: 600;
font-size: 0.95rem;
display: inline-flex;
align-items: center;
gap: 0.5rem;
transition: color 0.3s ease;
}

.neo-link i {
transition: transform 0.3s ease;
}

.neo-link:hover {
color: #00f2ff;
}

.neo-link:hover i {
transform: translateX(5px);
}

.neo-metrics-strip {
display: flex;
justify-content: center;
gap: 4rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding-top: 3rem;
flex-wrap: wrap;
}

.neo-metric-item {
text-align: center;
}

.metric-val {
display: block;
font-size: 2.5rem;
font-weight: 800;
color: #ffffff;
line-height: 1;
margin-bottom: 0.5rem;
font-feature-settings: "tnum";
}

.metric-label {
color: #00f2ff;
font-size: 0.875rem;
text-transform: uppercase;
letter-spacing: 0.15em;
font-weight: 600;
}

@media (max-width: 768px) {
.neo-title {
font-size: 2.5rem;
}
.neo-grid-layout {
grid-template-columns: 1fr;
}
.neo-metrics-strip {
gap: 2rem;
}
.metric-val {
font-size: 2rem;
}
}

/* Block 3 */
.future-interface-section {
background-color: #050505;
color: #ffffff;
padding: 6rem 1.5rem;
position: relative;
overflow: hidden;
font-family: system-ui, -apple-system, sans-serif;
}

.future-interface-section::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.08), transparent 50%);
pointer-events: none;
}

.future-container {
max-width: 1200px;
margin: 0 auto;
position: relative;
z-index: 2;
}

.future-layout-grid {
display: grid;
grid-template-columns: 1fr;
gap: 3rem;
align-items: center;
}

@media (min-width: 992px) {
.future-layout-grid {
grid-template-columns: 1fr 1.2fr;
}
}

.future-suptitle {
display: inline-block;
color: #00e5ff;
font-size: 0.875rem;
font-weight: 600;
letter-spacing: 0.15em;
text-transform: uppercase;
margin-bottom: 1rem;
border-bottom: 1px solid rgba(0, 229, 255, 0.3);
padding-bottom: 0.5rem;
}

.future-main-title {
font-size: 2.5rem;
line-height: 1.1;
font-weight: 700;
margin-bottom: 1.5rem;
background: linear-gradient(90deg, #ffffff 0%, #a5a5a5 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

@media (min-width: 768px) {
.future-main-title {
font-size: 3.5rem;
}
}

.future-text-block {
font-size: 1.125rem;
line-height: 1.7;
color: #b0b0b0;
margin-bottom: 2.5rem;
max-width: 500px;
}

.future-indicator-row {
display: flex;
flex-direction: column;
gap: 1.25rem;
}

.indicator-item {
display: flex;
align-items: center;
gap: 1rem;
}

.indicator-light {
width: 12px;
height: 12px;
border-radius: 50%;
background-color: #333;
box-shadow: inset 0 0 4px rgba(0,0,0,0.8);
transition: all 0.3s ease;
}

.indicator-light.active-pulse {
background-color: #00ff9d;
box-shadow: 0 0 10px #00ff9d, inset 0 0 2px rgba(255,255,255,0.5);
animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
0% { box-shadow: 0 0 0 0 rgba(0, 255, 157, 0.4); }
70% { box-shadow: 0 0 0 10px rgba(0, 255, 157, 0); }
100% { box-shadow: 0 0 0 0 rgba(0, 255, 157, 0); }
}

.indicator-label {
font-size: 0.95rem;
color: #e0e0e0;
font-weight: 500;
letter-spacing: 0.05em;
}

.future-display-module {
position: relative;
}

.holo-screen-border {
position: relative;
border: 1px solid rgba(255, 255, 255, 0.15);
background: rgba(20, 20, 25, 0.6);
backdrop-filter: blur(12px);
padding: 1rem;
border-radius: 4px;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
transition: transform 0.5s ease;
}

.future-display-module:hover .holo-screen-border {
transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.holo-screen-img {
width: 100%;
height: auto;
display: block;
border-radius: 2px;
opacity: 0.9;
filter: grayscale(20%) contrast(110%);
}

.holo-overlay-grid {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: linear-gradient(rgba(0, 229, 255, 0.1) 1px, transparent 1px),
linear-gradient(90deg, rgba(0, 229, 255, 0.1) 1px, transparent 1px);
background-size: 40px 40px;
pointer-events: none;
mix-blend-mode: overlay;
}

.status-panel {
margin-top: 1.5rem;
display: flex;
justify-content: space-between;
background: #0f0f12;
padding: 1.25rem;
border-radius: 4px;
border-left: 3px solid #00e5ff;
}

.panel-row {
display: flex;
flex-direction: column;
gap: 0.25rem;
}

.panel-key {
font-size: 0.75rem;
text-transform: uppercase;
color: #666;
letter-spacing: 0.1em;
}

.panel-val {
font-family: "Courier New", monospace;
font-size: 1rem;
color: #fff;
font-weight: 600;
}
