/* =========================================
   RESET & VARIABLES
   ========================================= */
html {
    scroll-behavior: smooth;
}

:root {
    /* Colors */
    --PrimaryColor: #1B58E9;
    --BlackColor: #000;
    --WhiteColor: #FFFFFF;
      --LiveColor: #22C55E;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ════════════════════════════════════════════════════════
   FONT FACES
════════════════════════════════════════════════════════ */
@font-face {
  font-family: 'SF Pro Display';
  src: url('../fonts/SFProDisplay-Regular.eot');
  src: url('../fonts/SFProDisplay-Regular.eot?#iefix') format('embedded-opentype'),
       url('../fonts/SFProDisplay-Regular.woff') format('woff'),
       url('../fonts/SFProDisplay-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url('../fonts/SFProDisplay-Medium.eot');
  src: url('../fonts/SFProDisplay-Medium.eot?#iefix') format('embedded-opentype'),
       url('../fonts/SFProDisplay-Medium.woff') format('woff'),
       url('../fonts/SFProDisplay-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url('../fonts/SFProDisplay-Bold.eot');
  src: url('../fonts/SFProDisplay-Bold.eot?#iefix') format('embedded-opentype'),
       url('../fonts/SFProDisplay-Bold.woff') format('woff'),
       url('../fonts/SFProDisplay-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


body {
  font-family: 'SF Pro Display';
   font-weight: 400;
    color: var(--BlackColor);
    line-height: 1.5;
    background-color: var(--WhiteColor);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}




.same-section {
    padding: clamp(3rem, 7vw, 5rem) 0;
}

.same-heading {
    margin-bottom: 4rem;
}

.same-heading h2 {
    color: #181818;
       font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.8rem;
}


/* .same-heading h2 .highlight{color: var(--PrimaryColor); font-weight: 600;} */

.same-heading h3 {
    color: var(--BlackColor);
    font-size: 1.4rem;
      font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.6rem;
}

.same-heading p {
    color: #676767;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
}




.bg-gray {
    background: #F6F5F9;
}

.max-wid-50 {
    width: 100%;
    max-width: 50%;
}

.max-wid-80 {
    width: 100%;
    max-width: 80%;
}

.same-heading.text-center .max-wid-50 {
    margin: 0 auto;
}

.same-heading.white-text :is(h2, p,.primary-text) {
    color: var(--WhiteColor);
}

.same-section .section-bottom-btn {
    margin-top: 1.5rem;
}

.section-bottom-btn {
    display: flex;
    gap: 1rem;
    align-items: center;flex-wrap: wrap;
    margin-top: 2rem;
}

.section-bottom-btn.text-center {
    justify-content: center;
}


/* =========================================
   UTILITIES
   ========================================= */
.tag {
  font-size: 0.8rem;
  letter-spacing: 0.15rem;
  color: var(--PrimaryColor);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.7rem;
    border-radius: 50px;
    font-weight: 400;
    font-size: 0.9rem;
    cursor: pointer;
    border: 1px solid transparent;
    /* Animation Properties */
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn svg {
    width: 1.2rem;
    height: 1.2rem;
}

.btn-primary {
    background: var(--PrimaryColor);
    color: var(--WhiteColor);
    border-color: var(--PrimaryColor);
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background: var(--PrimaryColor);
    color: var(--WhiteColor);
    border-color: var(--PrimaryColor);
}

.btn-primary .fluid-canvas,
.btn-secondary .fluid-canvas,
.btn-outline-primary .fluid-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
    z-index: 1;
}

.btn-primary .btn-text,
.btn-secondary .btn-text,
.btn-outline-primary .btn-text {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-outline-primary {
    background: var(--WhiteColor);
    color: var(--PrimaryColor);
    border-color: var(--PrimaryColor);
}

.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
    background: var(--PrimaryColor);
    color: var(--WhiteColor);
    border-color: var(--PrimaryColor);
}


.btn-white {
    background: var(--WhiteColor);
    color: var(--BlackColor);
    border-color: var(--WhiteColor);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.btn-white:hover, .btn-white:focus, .btn-white:active {
    background: var(--PrimaryColor) !important;
    color: var(--WhiteColor) !important;
    border-color: var(--PrimaryColor) !important;
}

.btn-outline-white {
    background: transparent;
    color: var(--WhiteColor);
    border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline-white:hover, .btn-outline-white:focus, .btn-outline-white:active {
    background: var(--WhiteColor) !important;
    color: var(--BlackColor) !important;
    border-color: var(--WhiteColor) !important;
}

.btn-disabled, a.btn-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}




.btn-secondary {
    background: #CDDDFF;
    border: solid 1px #CDDDFF;
    color: #565656;
}

.btn-secondary:hover,.btn-secondary:focus,.btn-secondary:active {
 background: var(--PrimaryColor);
border-color:var(--PrimaryColor);
color: var(--WhiteColor);
}



/* =========================================
   1. NAVBAR
   ========================================= */

.header {
position: sticky;
top: 0;
z-index: 100;
/* background: var(--WhiteColor); */
border-bottom: solid 1px #0000001A;
padding: 1rem 0;
transition: all 0.3s ease;
}

.header.headerfix {
    background: var(--WhiteColor);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid var(--border);
    padding: 0.8rem 0;
}

.header .nav-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.header .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    margin-left: auto;
}
.header .nav-links .nav-actions{margin-left: 3rem;}


.header .nav-links a:not(.btn) {
    font-weight: 300;
    font-size: 0.9rem;
    color: var(--BlackColor);
    padding: 0.2rem;
    position: relative;
}
.header .nav-links a:not(.btn)::before{ position: absolute;
    content: '';
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--PrimaryColor);
    transform: translateX(-50%);
    transition: width 0.3s ease;}

.header .nav-links a:hover:before{    width: 100%;}


.header .nav-links a:hover:not(.btn) {
    color: var(--PrimaryColor);
}



.header .nav-links .btn{margin-left: 1rem;}

/* .header .nav-actions{margin-left: auto;} */

.header .mobile-toggle {
font-size: 1.5rem;
width: 2.6rem;
height: 2.6rem;
background: var(--PrimaryColor);
color: var(--WhiteColor);
border: solid 1px var(--PrimaryColor);
border-radius: 50%;
cursor: pointer;
display: inline-flex; align-items: center;
justify-content: center;
}
.header .mobile-toggle svg{width: 1.3rem;}
.header  .btn-sidebar-close{font-size: 1.5rem;
width: 2.6rem;
height: 2.6rem;
background: var(--PrimaryColor);
color: var(--WhiteColor);
border: solid 1px var(--PrimaryColor);
border-radius: 50%;
cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.header  .btn-sidebar-close svg{width: 1.3rem;}




.hero-section{    padding: 12rem 0 0rem; position: relative; margin-top: -5rem; background: url(../images/banner-bg.jpg)no-repeat center top/cover;}
.hero-section .hero-content{text-align: center;}
.hero-section .hero-content h1{color: var(--BlackColor); font-size: 3.2rem; font-weight: 600; margin: 1rem 0;}
.hero-section .hero-content p{color: #313132E5; font-size: 1rem;line-height: 1.7; width: 100%; max-width: 45%;margin: 0 auto;}
.hero-section .image-wrapper{width: 100%;  max-width:40%; margin: 2rem auto 0;}
.hero-section .primary-text{color: var(--PrimaryColor);}
.primary-text{color: #7E6684; font-size: 0.9rem; font-weight: 400; letter-spacing: 20%;}

.check-list li {font-size: 0.9rem; font-weight: 400; padding: 0.5rem 0 0.5rem 1.7rem; position: relative;}
.check-list li svg{width: 1.1rem; height: 1.1rem;}
.check-list li .check-icon{ position:absolute; left: 0; top: 0.5rem;}

.digitalworld-framework-section{background: var(--BlackColor);}
.digitalworld-framework-section .check-list li{color: var(--WhiteColor);}
.digitalworld-framework-section .sub-heading{font-weight: 600; margin-top: 1.5rem;}











/* =========================================
   FRAMEWORK FUTURE SECTION
   ========================================= */

.framework-future-section .life-card-letter {
    /* padding: 2rem 1.5rem 0.5rem;
    min-height: 190px;
    display: flex;
    align-items: flex-end; */
    font-size: 10rem;
    line-height: 7rem;
    text-align: center;
    -webkit-text-stroke: 1.5px var(--PrimaryColor);
    color: #fff;
}


.framework-future-section .life-card-content {
    padding: 1.4rem ;
    border: 1px solid #EAEAEA;
    border-radius: 1rem;
    background: var(--WhiteColor);z-index: 1;
    position: relative;    min-height: 18rem;
}

.framework-future-section .life-card-tag {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.06rem;
    color: #7E6684;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.framework-future-section .life-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0A0A0A;
    line-height: 1.35;    min-height: 3rem;
    margin-bottom: 0.8rem;
}

.framework-future-section .life-card p {
    font-size: 0.9rem;
    color: #313132E5;
    line-height: 1.7;
    margin: 0;
}







.life-layer-section { background: url(../images/blue-layer-bg.png) no-repeat center top / cover; position: relative;  }
.life-layer-section .same-heading .primary-text { margin-bottom: 1rem; }

.life-layer-section::before{position: absolute; left: 0; right: 0; top: 0; bottom: 0; background: linear-gradient(to top, #000000a1, transparent); content: '';}
.life-layer-section .container{position: relative; z-index: 1;}
/* ── Scene: left-nav | image | right-panel ── */
/* .life-layer-section .layer-scene {
    display: flex;
    align-items: center;
    gap: 3rem;
} */

/* ── Left: layer name nav ── */
.life-layer-section .layer-left-nav {
    flex: 0 0 170px;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.life-layer-section .layer-nav-item {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    padding: 0.35rem 0;
    cursor: pointer;
    font-weight: 400;
    transition: color 0.25s ease, font-weight 0.1s ease;
    position: relative;
    line-height: 1.4;
    white-space: nowrap;
}

.life-layer-section .layer-nav-item:hover,
.life-layer-section .layer-nav-item.active {
    color: rgba(255, 255, 255, 1);
    font-weight: 700;
}

/* Connector line from active nav item toward image */
.life-layer-section .layer-nav-item.active::after {
    content: '';
    position: absolute;
    right: -2.5rem;
    top: 50%;
    width: 50%;
    height: 1px;
    background: #fff;
    transform: translateY(-50%);
}

/* ── Center: image ── */
.life-layer-section .layer-img-wrap {
    position: relative;
    flex: 0 1 470px;
    max-width: 470px;
    overflow: visible;
}

.life-layer-section .layer-img-wrap img,
.life-layer-section .layer-img-wrap svg.layer-svg {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
}

/* ── Right: info panel ── */
.life-layer-section .layer-right-panel {
    flex: 0 0 270px;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.life-layer-section .layer-right-panel.visible {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.life-layer-section .layer-panel-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1.2rem;
    margin-top: 0;
}

.life-layer-section .layer-panel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.life-layer-section .layer-panel-tag {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
    font-weight: 400;
    padding: 0.28rem 0.8rem;
    border-radius: 100px;
    white-space: nowrap;
}

/* ── Inline SVG layer animation ── */
.life-layer-section .layer-svg {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
}

.life-layer-section .svg-layer {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
    will-change: transform;
    pointer-events: all;
    cursor: pointer;
}
.life-layer-section .svg-layer rect,
.life-layer-section .svg-layer path {
    transition: fill 0.35s ease;
}
.life-layer-section .svg-layer.move-up   { transform: translateY(-20px); }
.life-layer-section .svg-layer.move-down { transform: translateY(14px); }

/* Active layer: white card background + dark text */
.life-layer-section .svg-layer.svg-layer-active {
    opacity: 0.7;
}
.life-layer-section .svg-layer.svg-layer-active rect {
    fill: #ffffffa0;
    fill-opacity: 0.7;
}
.life-layer-section .svg-layer.svg-layer-active path {
    fill: #080808;
}

/* ── LIFE Stack accordion (stack-list) ── */
.stack-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stack-row {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    background: rgba(5, 12, 35, 0.4);
    border: 1px solid rgb(255 255 255 / 9%);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.stack-row:hover {
    background: rgba(5, 12, 35, 0.55);
    border-color: rgba(255, 255, 255, 0.24);
}

.stack-num {
    flex: 0 0 auto;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1;
    min-width: 3rem;    filter: blur(1px);
}

.stack-info {
    flex: 0 0 280px;
    min-width: 0;
}

.stack-info h4 {
    color: var(--WhiteColor);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.stack-info p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.stack-tags {
    flex: 1 1 320px;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.stack-tags span {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
    font-weight: 400;
    padding: 0.28rem 0.8rem;
    border-radius: 100px;
    white-space: nowrap;
}

/* Live badge / accordion toggle */
.layer-live-badge {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--LiveColor);
    font-size: 0.8rem;
    font-weight: 500;
        padding: 0.3rem 0.75rem;
    border-radius: 100px;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.layer-live-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--LiveColor);
    flex-shrink: 0;
}

.layer-live-badge:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.3);
}

.layer-live-badge svg {
    width: 1rem;
    height: 1rem;
     color: var(--LiveColor);
    transition: transform 0.3s ease;
}

.stack-row.is-open .layer-live-badge svg {
    transform: rotate(180deg);
}

/* Expanded panel */
.stack-expanded {
    display: none;
    flex-basis: 100%;
    width: 100%;
    margin-top: 1.75rem;
    animation: stackExpandIn 0.25s ease;
}

.stack-row.is-open .stack-expanded {
    display: block;
}

@keyframes stackExpandIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.stack-coming-soon-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
    border-radius: 100px;
}

/* Experience Layer: app cards */
.stack-apps-grid {
       display: grid;
    gap: .9rem;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    transition: .2s;
}

.stack-app-card {
    background: rgba(5, 12, 35, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 1.25rem 1rem;
    text-align: center;position: relative;
}

.stack-app-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 0.75rem;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
}

.stack-app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.stack-app-card h5 {
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    text-align: center;
    margin-bottom: 0.4rem;
}

.stack-app-live {
      align-items: center;
    /* background: #1da2050d; */
    border: 1px solid var(--LiveColor);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.75);
    display: inline-flex;
    font-size: .65rem;
    font-weight: 400;
    gap: .3rem;
    letter-spacing: .02em;
    padding: .15rem .5rem;
    white-space: nowrap;
    position: absolute;
    right: .6rem;
    top: .6rem;
}

.stack-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--LiveColor);
}

.stack-app-actions {
      display: flex;
    gap: 0.5rem;
    margin-top: 0.6rem;

}

.stack-app-actions .btn {
    width: 100%;
    font-size: 0.72rem;
    padding: 0.4rem 0.8rem;
}

/* Communication / Finance Layers: SDK cards */
.stack-sdk-intro {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.stack-sdk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}

.stack-sdk-card {
    position: relative;
    background: rgba(5, 12, 35, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 1.25rem;
}

.stack-sdk-lang {
    display: inline-block;
    background: rgba(27, 88, 233, 0.15);
    color: var(--WhiteColor);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    margin-bottom: 0.75rem;
}

.stack-sdk-card h5 {
    color: var(--WhiteColor);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stack-sdk-card p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
    line-height: 1.55;
    margin-bottom: 1rem;
}

.stack-sdk-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.stack-sdk-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 500;
}

.stack-sdk-links a:hover {
    color: var(--PrimaryColor);
}

.stack-sdk-links svg {
    width: 0.95rem;
    height: 0.95rem;
}

/* .stack-sdk-card.stack-sdk-soon {
    border-style: dashed;
    opacity: 0.6;
} */

.stack-sdk-soon-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
    border-radius: 100px;
}

/* .stack-sdk-card.stack-sdk-market {
    border-color: rgba(27, 88, 233, 0.4);
    background: rgba(27, 88, 233, 0.06);
} */

.stack-sdk-lang-market {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.08em;
    padding-left: 0;
}

.stack-sdk-base {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.75rem;
}

.stack-sdk-base span {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.stack-sdk-base code {
    color: var(--WhiteColor);
    background: rgba(255, 255, 255, 0.08);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-size: 0.78rem;
}

.stack-sdk-viewdocs {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--PrimaryColor);
    font-size: 0.82rem;
    font-weight: 500;
}

.stack-sdk-viewdocs svg {
    width: 0.9rem;
    height: 0.9rem;
}

.stack-sdk-footer {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.78rem;
    margin-top: 1.25rem;
}

.stack-sdk-footer svg {
    width: 0.9rem;
    height: 0.9rem;
}

@media (max-width: 767px) {
    .stack-row {
        padding: 1.25rem;
        gap: 1rem;
    }
    .stack-num {
        font-size: 1.5rem;
        min-width: 2.2rem;
    }
    .stack-info {
        flex: 1 1 100%;
    }
    .layer-live-badge {
        flex-basis: 100%;
        justify-content: center;
    }
}





/* ── Deployment Section ─────────────────────────────────────── */
.deployment-section {
    background: #080808;
}

.deployment-section .deployment-content{border: solid 1px var(--PrimaryColor);    border-radius: 14px;}
.deployment-section .deployment-content .row{margin: 0;}
.deployment-section .deployment-content .col-lg-3{padding: 0;}

.deployment-section .deploy-card {
    border-right: 1px solid var(--PrimaryColor);
    padding: 1.5rem;
    background: #FFFFFF0D;

}
.deployment-section .deployment-content .col-lg-3:last-child .deploy-card{  border-right:0}

.deployment-section .deploy-card-label {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.13em;
    color: var(--PrimaryColor);
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}
.deployment-section .deploy-card h3 {
    font-size: 1.45rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 0.85rem;
}
.deployment-section .deploy-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    min-height: 110px;
    margin-bottom: 1.5rem;
}
.deployment-section .deploy-list {

    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.deployment-section .deploy-list li {
    font-size: 0.85rem;
    color: var(--WhiteColor);
    display: flex;
    align-items: center;
    gap: 0.55rem;
}
.deployment-section .deploy-list li::before {
    content: '—';
    flex-shrink: 0;  color: var(--PrimaryColor);
}


/* ── Clear Software Section ──────────────────────────────── */
.clear-software-section {
    background: #f6f7fb;
}
.clear-software-section .dw-cards-wrap {
    display: flex;
    align-items: stretch;
    gap: 0;
    position: relative;
    margin-bottom: 2.5rem;
}
.clear-software-section .dw-card {
    flex: 1;
    background: #ffffff;
    border: 1px solid #e8eaf0;
    border-radius: 16px;
    padding: 1.5rem;
}
.clear-software-section .dw-card-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--PrimaryColor);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.clear-software-section .dw-card-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #181818;
    margin-bottom: 0.4rem;
    line-height: 1.2;
}
.clear-software-section .dw-card-sub {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 0;
}
.clear-software-section .dw-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.clear-software-section .dw-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid #eef0f4;
    font-size: 0.95rem;
    color: #2c2c2c;
}
.clear-software-section .dw-list li:first-child {
    border-top: 1px solid #eef0f4;
    margin-top: 1.2rem;
}
.clear-software-section .dw-list li:last-child{border-bottom: 0;}
.clear-software-section .dw-list li::before {
    content: '•';
    color: var(--PrimaryColor);
    font-size: 1.1rem;
    line-height: 1;
    flex-shrink: 0;
}
.clear-software-section .dw-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}
.clear-software-section .dw-plus {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    background: var(--PrimaryColor);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1;
    box-shadow: 0 4px 16px rgba(27, 88, 233, 0.35);
}
.clear-software-section .dw-tagline {
    text-align: center;
    margin-top: 4rem;
}
.clear-software-section .dw-tagline p {
    font-size: 1.4rem;
    font-weight: 600;
    color: #181818;
    margin: 0;
}
.clear-software-section  .dw-tagline p span {
    color: var(--PrimaryColor);
}


/* ── AI Life Section ─────────────────────────────────────── */
.ai-life-section {
    background: #fff;
}
.ai-agent-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f8f9fb;
    border: 1px solid #e8eaf0;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    transition: border-color 0.25s ease, background 0.25s ease;
}
.ai-agent-card:hover {
    background: rgba(27, 88, 233, 0.05);
    border-color: rgba(27, 88, 233, 0.35);
}
.ai-agent-icon {
    width: 2.6rem;
    height: 2.6rem;
    flex-shrink: 0;
    background: rgba(27, 88, 233, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--PrimaryColor);
}
.ai-agent-icon svg {
    width: 1.1rem;
    height: 1.1rem;
}
.ai-agent-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #181818;
    margin-bottom: 0.15rem;
    line-height: 1.3;
}
.ai-agent-info p {
    font-size: 0.78rem;
    color: #888;
    margin: 0;
    line-height: 1.4;
}


.zen-section {
    position: relative;
    overflow: hidden;
}

.zen-section  .bg-video{    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    object-fit: cover;
    z-index: -1;}

.zen-section::before{position: absolute; content: '';    mix-blend-mode: color; left: 0; right: 0; top: 0; bottom: 0; background: var(--PrimaryColor);}
.zen-section .container {
    position: relative;
    z-index: 1;
    padding-bottom: 5rem;
}

.zen-section #waveCanvas {
    display: block;
    width: 100%;
    height: 280px;
    position: relative;
    z-index: 0;
}


.main-footer {
  background: #fff;
  padding-top: 4rem;
  border-top: 0.06rem solid #ddd;
}

/* Logo */
.main-footer .footer-logo {
  width: 8rem;
  margin-bottom: 1rem;
}

/* Text */
.main-footer .footer-text {
  font-size: 0.9rem;
  color: #5A5A5A;
  line-height: 1.6;
}

/* Titles */
.main-footer .footer-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  color: var(--BlackColor);
}

/* Links */
.main-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-footer .footer-links li {
  margin-bottom: 0.6rem;
}

.main-footer .footer-links a {
  text-decoration: none;
  font-size: 0.9rem;
  color: #5A5A5A;
  transition: 0.3s;
}

.main-footer .footer-links a:hover {
  color: var(--PrimaryColor);
}

/* Bottom */
.main-footer .footer-bottom {
  border-top: 0.06rem solid #ddd;
  margin-top: 2rem;
  padding: 1rem 0;
}

.main-footer .footer-bottom p {
  font-size: 0.8rem;
  color: #5A5A5A;
  margin: 0;
}

/* =========================================
   LOGO RIGHT-CLICK CONTEXT MENU
   ========================================= */
#logo-context-menu {
    display: none;
    position: fixed;
    z-index: 99999;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14), 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 6px;
    min-width: 220px;
    font-family: inherit;
    animation: ctxFadeIn 0.12s ease;
}
#logo-context-menu.visible {
    display: block;
}
@keyframes ctxFadeIn {
    from { opacity: 0; transform: scale(0.96) translateY(-4px); }
    to   { opacity: 1; transform: scale(1)    translateY(0); }
}
.ctx-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 8px;
    font-size: 0.88rem;
    color: #1a1a1a;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s;
    white-space: nowrap;
}
.ctx-item:hover {
    background: #f4f4f5;
    color: #1a1a1a;
}
.ctx-item svg {
    flex-shrink: 0;
    opacity: 0.55;
}
.ctx-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.07);
    margin: 4px 0;
}

/* =========================================
   DEPLOY MODAL
   ========================================= */
.deploy-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 8, 8, 0.72);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.deploy-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.deploy-modal {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.25s ease;
}
.deploy-modal-overlay.active .deploy-modal {
    transform: translateY(0);
}

.deploy-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: #f4f4f6;
    border: none;
    border-radius: 50%;
    width: 2.2rem;
    height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #444;
    transition: background 0.2s ease;
}
.deploy-modal-close:hover { background: #e8e8ec; }

.deploy-modal-header { margin-bottom: 1.8rem; }
.deploy-modal-header .primary-text { margin-bottom: 0.4rem; }
.deploy-modal-header h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: #181818;
    margin-bottom: 0.4rem;
}
.deploy-modal-header p {
    font-size: 0.88rem;
    color: #777;
    margin: 0;
}

.deploy-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.4rem;
}
.deploy-label span { color: var(--PrimaryColor); }

.deploy-input {
    width: 100%;
    border: 1px solid #e2e4ea;
    border-radius: 10px;
    padding: 0.65rem 0.9rem;
    font-size: 0.88rem;
    color: #181818;
    background: #f8f9fb;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
    font-family: inherit;
    resize: none;
}
.deploy-input:focus {
    border-color: var(--PrimaryColor);
    background: #fff;
}

.deploy-scale-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}
.scale-opt {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    border: 1px solid #e2e4ea;
    border-radius: 10px;
    padding: 0.6rem 0.85rem;
    cursor: pointer;
    font-size: 0.85rem;
    color: #444;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.scale-opt:hover { border-color: var(--PrimaryColor); background: rgba(27,88,233,0.03); }
.scale-opt input[type="radio"] { accent-color: var(--PrimaryColor); }
.scale-opt input[type="radio"]:checked + span { color: var(--PrimaryColor); font-weight: 600; }
.scale-opt:has(input:checked) {
    border-color: var(--PrimaryColor);
    background: rgba(27,88,233,0.05);
}





/* Wrapper */
.dw-cookie-wrapper {
   position: fixed;
    box-sizing: border-box;
    z-index: 2147483647;
    background-color: #fff;
    opacity: 1;
    display: block;
    transform: translateY(0px);
    bottom: 0px;
    right: 0px;
    max-width: 320px;
    width: calc(100% - 20px);    
    box-shadow: 0 -0.3125rem 1.25rem rgba(0,0,0,0.1);
    transition: opacity 0.3s, transform, top, left, right, bottom, max-width, width;
    margin: 1rem;
    border-radius: 10px;
    padding: 2rem;
}

/* Inner layout */
.dw-cookie-card {
    max-width: 75rem; /* 1200px */
    margin: auto;
    display: flex; 
    align-items: center;
   flex-direction: column;
    gap: 1rem; 
}

/* Text */
.dw-cookie-text h4 {
  font-size: 1.2rem;
    color: var(--BlackColor);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.dw-cookie-text p {
      color: #555555;
    font-size: 0.9rem; line-height:1.6 ;
    margin-bottom: 0.5rem;
}

.dw-cookie-text a {
    color: var(--PrimaryColor);
    font-weight: 500;
    text-decoration: none;
}

.dw-cookie-wrapper .dw-cookie-actions .btn{    font-size: 0.9rem;}
/* Buttons */
.dw-cookie-actions {
display: flex;
    gap: 0.75rem;
    flex-direction: column;
    width: 100%;
}

.dw-btn {
    padding: 0.625rem 1.375rem; /* 10px 22px */
    border-radius: 0.625rem; /* 10px */
    border: none;
    font-size: 0.875rem; /* 14px */
    cursor: pointer;
    transition: 0.3s ease;
    white-space: nowrap; text-align: center;
}

.inner-banner{background: url(../images/banner-bg.jpg)no-repeat center top/cover; padding: 3rem 0;}
.inner-banner h1{    font-size: 2.6rem; font-weight: 700; line-height: 1.2; }


.static-pages-outer .same-heading h2{    font-size: 2rem;}
/* .static-pages-outer .same-heading h3{    font-size: 1.4rem;} */
.legal-highlight {
  background: #1b58e90d;
  padding: 1.2rem;
  border-left: 4px solid var(--PrimaryColor);
  margin: 1rem 0 1.5rem;
}
.legal-highlight p{margin-bottom: 0;}

.static-pages-outer .dot-listing{margin: 1rem 0 1rem 1rem;}
.static-pages-outer .dot-listing li {
    padding: 5px 0;
    list-style: disc;
    font-weight: 400;
    font-size: 1rem;
   color: #676767;
    line-height: 1.6;
}



