:root {
  --primary-dark: var(--wps-primary);
  --white: var(--wps-white);
  --bg-white: var(--wps-bg);
  --secondary: var(--wps-secondary);
  --transition: var(--wps-transition);
  --bg-light: var(--wps-bg);
  --text-main: var(--wps-text);
  --primary: var(--wps-primary);
}

:root {
  --wps-primary: hsl(195, 79%, 53%);
  --wps-secondary: hsl(323, 63%, 53%);
  --wps-text: hsl(195, 10%, 9%);
  --wps-bg: hsl(195, 7%, 96%);
  --wps-white: #ffffff;
  --wps-nav-height: 72px;
  --wps-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  margin: 0;
  padding-top: var(--wps-nav-height);
  background-color: var(--wps-bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.echoChamber {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--wps-nav-height);
  background-color: rgba(244, 245, 245, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.vapor_wave {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.glimmer {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
}
.orbit7 {
  background-color: var(--wps-text);
  color: var(--wps-white);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Georgia", serif;
  font-weight: bold;
  border-radius: 6px;
  font-size: 20px;
}
.synapse_Core {
  font-family: "Georgia", serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--wps-text);
  letter-spacing: -0.5px;
  text-transform: lowercase;
}

.velvetSky {
  display: flex;
  align-items: center;
}

.quartz_v2 {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 32px;
}
.spark_42 {
  position: relative;
}

.frost_byte {
  text-decoration: none;
  color: var(--wps-text);
  font-size: 14px;
  font-weight: 500;
  opacity: 0.7;
  transition: var(--wps-transition);
}
.frost_byte:hover {
  opacity: 1;
  color: var(--wps-secondary);
}
.pebble_flow {
  opacity: 1;
  font-weight: 600;
}

.prism_effect {
  text-decoration: none;
  background-color: var(--wps-primary);
  color: var(--wps-text);
  padding: 10px 20px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--wps-transition);
  border: 1px solid transparent;
}
.prism_effect:hover {
  background-color: var(--wps-text);
  color: var(--wps-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nomad_v9 {
  display: none;
}

.zenithPoint {
  display: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}
.shadow_runner {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--wps-text);
  position: relative;
  transition: var(--wps-transition);
}
.shadow_runner::before,
.shadow_runner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--wps-text);
  transition: var(--wps-transition);
}
.shadow_runner::before { top: -8px; }
.shadow_runner::after { bottom: -8px; }

@media (max-width: 768px) {.zenithPoint {
    display: block;
  }
.velvetSky {
    position: fixed;
    top: var(--wps-nav-height);
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--wps-white);
    overflow: hidden;
    transition: var(--wps-transition);
    border-bottom: 0 solid rgba(0, 0, 0, 0.05);
  }
.quartz_v2 {
    flex-direction: column;
    padding: 40px 0;
    gap: 24px;
    width: 100%;
    text-align: center;
  }
.frost_byte {
    font-size: 18px;
  }
.nomad_v9:checked ~ .velvetSky {
    height: calc(100vh - var(--wps-nav-height));
    border-bottom-width: 1px;
  }
.nomad_v9:checked + .zenithPoint .shadow_runner {
    background-color: transparent;
  }
.nomad_v9:checked + .zenithPoint .shadow_runner::before {
    transform: rotate(45deg);
    top: 0;
  }
.nomad_v9:checked + .zenithPoint .shadow_runner::after {
    transform: rotate(-45deg);
    bottom: 0;
  }
.prism_effect {
    display: inline-block;
    margin-top: 10px;
  }}

:root {
    --wps-primary: hsl(195, 79%, 53%);
    --wps-secondary: hsl(323, 63%, 53%);
    --wps-text: hsl(195, 10%, 9%);
    --wps-bg: hsl(195, 7%, 96%);
    --wps-white: #ffffff;
    --wps-nav-height: 72px;
    --wps-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
@media (max-width: 768px) {
  .zenithPoint {
    display: block;
    }
  
    .velvetSky {
    position: fixed;
    top: var(--wps-nav-height);
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--wps-white);
    overflow: hidden;
    transition: var(--wps-transition);
    border-bottom: 0 solid rgba(0, 0, 0, 0.05);
    }
  
    .quartz_v2 {
    flex-direction: column;
    padding: 40px 0;
    gap: 24px;
    width: 100%;
    text-align: center;
    }
  
    .frost_byte {
    font-size: 18px;
    }
  
    .nomad_v9:checked ~ .velvetSky {
    height: calc(100vh - var(--wps-nav-height));
    border-bottom-width: 1px;
    }
  
    .nomad_v9:checked + .zenithPoint .shadow_runner {
    background-color: transparent;
    }
  
    .nomad_v9:checked + .zenithPoint .shadow_runner::before {
    transform: rotate(45deg);
    top: 0;
    }
  
    .nomad_v9:checked + .zenithPoint .shadow_runner::after {
    transform: rotate(-45deg);
    bottom: 0;
    }
  
    .prism_effect {
    display: inline-block;
    margin-top: 10px;
    }
}
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  
    .kinesis_mode, .kinesis_mode.core_v2 {
    flex-direction: column;
    }
  
    .neon_Night {
    flex-direction: column;
    }
}

    body {
    margin: 0;
    padding-top: var(--wps-nav-height);
    background-color: var(--wps-bg);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    }

    .echoChamber {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--wps-nav-height);
    background-color: rgba(244, 245, 245, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    display: flex;
    align-items: center;
    }

    .vapor_wave {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    }

    .glimmer {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
    }

    .orbit7 {
    background-color: var(--wps-text);
    color: var(--wps-white);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Georgia", serif;
    font-weight: bold;
    border-radius: 6px;
    font-size: 20px;
    }

    .synapse_Core {
    font-family: "Georgia", serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--wps-text);
    letter-spacing: -0.5px;
    text-transform: lowercase;
    }

    .velvetSky {
    display: flex;
    align-items: center;
    }

    .quartz_v2 {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 32px;
    }

    .spark_42 {
    position: relative;
    }

    .frost_byte {
    text-decoration: none;
    color: var(--wps-text);
    font-size: 14px;
    font-weight: 500;
    opacity: 0.7;
    transition: var(--wps-transition);
    }

    .frost_byte:hover {
    opacity: 1;
    color: var(--wps-secondary);
    }

    .pebble_flow {
    opacity: 1;
    font-weight: 600;
    }

    .prism_effect {
    text-decoration: none;
    background-color: var(--wps-primary);
    color: var(--wps-text);
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--wps-transition);
    border: 1px solid transparent;
    }

    .prism_effect:hover {
    background-color: var(--wps-text);
    color: var(--wps-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .nomad_v9 {
    display: none;
    }

    .zenithPoint {
    display: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    }

    .shadow_runner {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--wps-text);
    position: relative;
    transition: var(--wps-transition);
    }

    .shadow_runner::before,
    .shadow_runner::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--wps-text);
    transition: var(--wps-transition);
    }

    .shadow_runner::before { top: -8px; }

    .shadow_runner::after { bottom: -8px; }

    main {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    }

    .pixel_Dust {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    }

    .seo-meta { display: none; }

    .vertex_alpha {
    padding: 80px 0;
    text-align: center;
    background: radial-gradient(circle at top right, hsla(195, 79%, 53%, 0.1), transparent);
    }

    h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: var(--text-main);
    }

    .blue_Whale {
    font-size: 1.5rem;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    }

    .neon_Night {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    }

    .pulse_logic {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
    }

    .x86_prime {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px hsla(195, 79%, 53%, 0.4);
    }

    .x86_prime:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    }

    .golden_Gate {
    margin-top: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .golden_Gate img {
    width: 100%;
    display: block;
    height: auto;
    }

    .deep_Void {
    padding: 100px 0;
    }

    h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    }

    .star_Gazer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
    }

    .flux_cap {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    }

    .flux_cap:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    .flux_cap h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
    }

    .kinesis_mode {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
    }

    .kinesis_mode.core_v2 {
    flex-direction: row-reverse;
    }

    .silverMist {
    flex: 1;
    }

    .amber_glow {
    flex: 1.2;
    }

    .amber_glow img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    }

    .lumen_aura {
    text-align: center;
    background: var(--white);
    padding: 60px;
    border-radius: 30px;
    margin: 40px 0;
    }

    footer {
    background-color: var(--text-main);
    color: #adb5bd;
    padding: 80px 0 40px;
    margin-top: 100px;
    }

    .cloud_Drift {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    border-bottom: 1px solid #333;
    padding-bottom: 40px;
    margin-bottom: 40px;
    }

    .beta7_stage h4 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 20px;
    }

    .fastTrack_01 a {
    color: #adb5bd;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: var(--transition);
    }

    .fastTrack_01 a:hover {
    color: var(--primary);
    }

    .storm_v3 {
    text-align: center;
    font-size: 0.9rem;
    }

@media (max-width: 768px) {
  .vertex_alpha { padding: 60px 5% 40px; }
  
    .vlt_stream { grid-template-columns: 1fr; }
}

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

    .vertex_alpha h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: var(--text-main);
    }

    .vertex_alpha p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
    }

    .alpha_9_node {
    max-width: 1000px;
    margin: 60px auto 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    }

    .alpha_9_node img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    }

    .alpha_9_node:hover img {
    transform: scale(1.02);
    }

    .vlt_stream {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    }

    .neo4j_style {
    padding: 40px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    }

    .neo4j_style:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
    }

    .neo4j_style h2 {
    font-size: 1.5rem;
    margin: 20px 0 10px;
    }

    .neo4j_style .lumen_aura {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    }

    .zoom_5_focus {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
    }

    .zoom_5_focus:hover {
    background-color: var(--primary-dark);
    }

    .swift77 {
    background-color: var(--bg-light);
    padding: 60px 5%;
    }

    .peak_v1 {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    }

    .qrx_module {
    flex: 1;
    min-width: 250px;
    text-align: center;
    }

    .qrx_module h3 {
    margin-bottom: 10px;
    color: var(--primary);
    }

    .logic_8_bit {
    padding: 40px 5%;
    text-align: center;
    border-top: 1px solid var(--border);
    }

    .logic_8_bit a {
    color: var(--text-main);
    text-decoration: none;
    margin: 0 20px;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
    }

    .logic_8_bit a:hover {
    border-color: var(--primary);
    }

    .beta7_stage {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    }

    .knd_group {
    opacity: 0.6;
    font-size: 0.875rem;
    }

@media (max-width: 768px) {
  .pixel_Dust { padding: 40px 15px; }
  
    .vertex_alpha h1 { font-size: 1.1rem; }
  
    .azure_drift { font-size: 1.5rem; }
}

    .mtr_panel {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
    }

    .vtx_sys_x {
    position: relative;
    padding-left: 40px;
    margin-top: 40px;
    }

    .vtx_sys_x::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
    }

    .cobalt_ray {
    position: relative;
    margin-bottom: 80px;
    }

    .cobalt_ray::before {
    content: "";
    position: absolute;
    left: -45px;
    top: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid var(--bg-light);
    z-index: 2;
    }

    .nmo_lab_v3 {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 15px;
    }

    .azure_drift {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
    }

    .digital_ghost {
    color: var(--gray-soft);
    font-size: 0.95rem;
    }

    .flx_v_active {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    }

    .flx_v_active h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--primary);
    }

    .flx_v_active h3 {
    font-size: 1.1rem;
    margin: 20px 0 10px;
    display: flex;
    align-items: center;
    }

    .flx_v_active h3::before {
    content: "•";
    color: var(--secondary);
    margin-right: 8px;
    font-weight: bold;
    }

    .pxl_grp_4 {
    list-style: none;
    margin-bottom: 25px;
    }

    .pxl_grp_4 li {
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
    color: #444;
    }

    .zyx_01_link {
    margin: 25px 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    }

    .zyx_01_link img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    }

    .zyx_01_link img:hover {
    transform: scale(1.02);
    }

    .crimson_haze {
    color: var(--gray-soft);
    margin-bottom: 30px;
    font-size: 0.9rem;
    }

    .fastTrack_01 {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    list-style: none;
    }

@media (max-width: 768px) {
  
    .fossil_echo { flex-direction: column !important; gap: 30px; }
  
    .phantom_sys { grid-template-columns: 1fr; }
}

    .onyx_edge {
    padding: 80px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, #fff 0%, var(--bg-light) 100%);
    }

    .iron_orbit {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
    }

    .galaxy_rift {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 800px;
    margin: 0 auto 40px;
    }

    .phantom_sys {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 80px 0;
    }

    .hyper_spark {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    }

    .hyper_spark:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    .hyper_spark h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-main);
    }

    .hyper_spark p {
    color: var(--gray-600);
    margin-bottom: 24px;
    }

    .hyper_spark img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    }

    .radar_ping {
    background: var(--white);
    padding: 100px 0;
    }

    .fossil_echo {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    }

    .fossil_echo:nth-child(even) {
    flex-direction: row-reverse;
    }

    .nebula_glow {
    flex: 1;
    }

    .magnetic_v2 {
    flex: 1;
    }

    .magnetic_v2 img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }

    .jungle_vibe {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
    }

    .nebula_glow h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    }

    .kinetic_arc {
    text-align: center;
    padding: 60px;
    background: var(--text-main);
    color: var(--white);
    border-radius: 20px;
    margin: 60px 0;
    }

    .kinetic_arc h2 {
    color: var(--white);
    margin-bottom: 20px;
    }

    .lunar_pulse {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    }

    .quantum_dot {
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    }

    .emerald_fire {
    border: 1px solid var(--white);
    color: var(--white);
    }

    .emerald_fire:hover {
    background: var(--white);
    color: var(--text-main);
    }

    .footer-nav {
    margin: 20px 0;
    }

    .footer-nav a {
    color: var(--gray-600);
    text-decoration: none;
    margin: 0 15px;
    }

    .footer-nav a:hover {
    color: var(--primary);
    }

@media (max-width: 768px) {
  
    .atlas_node { grid-template-columns: 1fr; }
}

    .vector_path {
    width: 100%;
    max-width: 900px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    margin-top: 20px;
    }

    .zero_point {
    font-size: 2rem;
    margin: 60px 0 30px;
    text-align: center;
    font-weight: 600;
    }

    .atlas_node {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    }

    .ultra_vivid {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: transform 0.3s ease;
    }

    .ultra_vivid:hover {
    transform: translateY(-5px);
    }

    h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    }

    .yellow_jack {
    list-style: none;
    }

    .sonic_boom {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    }

    .sonic_boom:last-child {
    border-bottom: none;
    }

    .winter_soul {
    font-weight: 600;
    color: #555;
    }

    .terra_form {
    text-align: right;
    }

    .swift77 a {
    color: white;
    text-decoration: underline;
    font-weight: bold;
    }

    .xenon_flash {
    display: inline-block;
    padding: 4px 12px;
    background: #e1f5fe;
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 20px;
    font-weight: 600;
    }

    .btn-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 35px;
    flex-wrap: wrap;
    }

    .btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--secondary);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(219, 50, 151, 0.2);
    }

    .btn-secondary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(219, 50, 151, 0.3);
    }

    .badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(56, 189, 248, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    }

    .feature-item {
    padding: 10px 0;
    display: flex;
    align-items: center;
    color: #555;
    font-size: 1.05rem;
    }

    .feature-item::before {
    content: "✓";
    margin-right: 12px;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
    }

    .footer {
    background: var(--white);
    padding: 80px 20px;
    border-top: 1px solid var(--border);
    text-align: center;
    margin-top: 80px;
    }

@media (max-width: 768px) {
  .beacon_v5 { grid-template-columns: 1fr; gap: 2rem; }
  
    .ion_storm { grid-template-columns: 1fr 1fr; }
  
    h2 { font-size: 2rem; }
}

    p { margin-bottom: 1.25rem; color: #475569; }

    .ember_light {
    padding: 6rem 1.5rem;
    background: radial-gradient(circle at top right, hsla(195, 79%, 53%, 0.05), transparent),
    radial-gradient(circle at bottom left, hsla(323, 63%, 53%, 0.05), transparent);
    text-align: center;
    }

    .helix_dna {
    max-width: 1000px;
    margin: 0 auto;
    }

    .delta_wing {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--white);
    border: 1px solid var(--gray-soft);
    border-radius: 99px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2rem;
    }

    .beacon_v5 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    }

    .chroma_key img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .fusion_core {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    }

    .jet_stream {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
    }

    .jet_stream:hover {
    border-bottom-color: var(--primary);
    }

    .ion_storm {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    }

    .fastTrack_01 h5 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    color: var(--text-main);
    }

    .fastTrack_01 ul { list-style: none; }

    .fastTrack_01 li { margin-bottom: 0.75rem; }

    .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1.5rem;
    }

    .feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsla(195, 79%, 53%, 0.1);
    color: var(--primary);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    }

    .feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-main);
    }

    .gamma_ray {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0;
    }

.cc-sec-area.active,
.cc-sec-area.cc-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}