/* =========================================
   RESET & VARIABLES
   ========================================= */
html {
    scroll-behavior: smooth;
}

:root {
    /* Colors */
    --PrimaryColor: #FF5300;
    --BlackColor: #000;
    --WhiteColor: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}





body {
 font-family: "Inter", sans-serif;
   font-weight: 400;
    color: var(--WhiteColor);
    line-height: 1.5;
    background-color: var(--BlackColor);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}




.same-section {
    padding: clamp(5rem, 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.3rem;
}


/* .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: #545454;
    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) {
    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: transparent;
    color: var(--WhiteColor);
    border-color: #303030;
}

.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
    background: var(--PrimaryColor);
    color: var(--WhiteColor);
    border-color: var(--PrimaryColor);
}




.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: #0A0A0A;
padding: 1rem 0;
transition: all 0.3s ease;
}

.header.headerfix {
    background: var(--BlackColor);
    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(--WhiteColor);
    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: 2rem;}

/* .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;}




/* =========================================
   2. HERO
   ========================================= */

.hero-section {
   padding: 6rem 0 0;
   background: var(--BlackColor);
}

.hero-section .hero-content h1 {
  font-size: 2.6rem;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--WhiteColor);
}


.hero-section .hero-content p{
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
    max-width: 60%;

    color: #FFFFFFCC;
}

.hero-section .dashboard-img-bx{   background:radial-gradient(circle at 30% 50%, rgb(27 0 167) 0%, rgba(20, 15, 50, 0.9) 40%, #000 80%); padding-top: 3rem;  margin:3rem auto 0; display: flex; align-items: center; justify-content: center; border-radius: 20px;}
.hero-section .dashboard-img-bx img{width: 100%; max-width: 70%;}



.dark-feature-strip{padding: 3rem 0;}

.dark-feature-strip .strip-item {
  padding: 1rem;
  position: relative;    min-height: 140px;
}

.dark-feature-strip .strip-item svg {
  width: 1.4rem;
  height: 1.4rem;
  margin-bottom: 0.6rem;
  color: #fff;
}

.dark-feature-strip .strip-item h6 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.dark-feature-strip .strip-item p {
  font-size: 0.8rem;
  color: #FFFFFFCC;
  width: 100%; max-width: 80%;
}

/* Vertical divider */
.dark-feature-strip .col:not(:last-child) .strip-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background: rgba(255,255,255,0.2);
}


.gradient-border-top{   border-top: 1px solid;
  border-image: linear-gradient(90deg, transparent, #ffffff40, transparent) 1;}

.gradient-border-bottom{   border-bottom: 1px solid;
  border-image: linear-gradient(90deg, transparent, #ffffff40, transparent) 1;}
.gradient-bg-section{    background: radial-gradient(circle at center, #5b466a94 0%, rgb(50 38 60 / 30%) 40%, #000 80%);}

/* Step row */

 .step-row {
  position: relative;
}

/* Step card */
.step-card {
  position: relative;
  padding: 1.5rem;
  border: 1px solid #FFFFFF33;
  border-radius:0;
  height: 100%;
  background:transparent;
}

/* Top dot */
.step-card::before {
  content: "";
  position: absolute;
  top: -0.2rem;
  left: -0.2rem;
  width: 0.5rem;
  height: 0.5rem;
  background: #D9D9D9;
}

.step-card::after {
  content: "";
  position: absolute;
  bottom: -0.2rem;
  right: -0.2rem;
  width: 0.5rem;
  height: 0.5rem;
  background: #D9D9D9;
}


.step-card .icon-bx{width: 3rem; height: 3rem; color: var(--WhiteColor);}
.step-card .icon-bx svg{width: 1.7rem; height: 1.7rem;}

/* Big number */
.step-card .step-number {
  font-size: 3.2rem;
  line-height: normal;
  font-weight: 700;
  color: #FFFFFF1A;
  display: block;
  margin-bottom: 0.2rem;
}

/* Text */
.step-card h6 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--WhiteColor);
  margin-bottom: 0.3rem;    width: 100%;
    max-width: 80%;
}

.step-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #FFFFFFCC;
}

.sync-section{padding: 0;     background: #161019;}

.sync-section .sync-list {
  list-style: none;
  padding: 0;
  margin:2rem 0 0;
}

.sync-section .sync-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--WhiteColor);
}

/* Icon box */
.sync-section .sync-list li .icon-bx {
  background: #D9D9D91A;width: 2.5rem; height: 2.5rem; border-radius: 10px; display: flex; align-items: center;justify-content: center;
}


.sync-section .sync-list li .icon-bx svg {
  width: 1.2rem;
  height: 1.2rem;
  color: #fff;
}



.assets-section .dashboard-img-bx{position: relative;overflow: hidden;}
.assets-section .dashboard-img-bx:before{position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(to top, #000000, transparent);
    content: '';}


/* Card */
.device-section .device-card {
  border: 1px solid #FFFFFF0A;
  border-radius: 0.5rem;
  position: relative;
  height: 100%;
  background: #FFFFFF0A;
}

/* Corner dots */
.device-section .device-card::before,
.device-section .device-card::after {
  content: "";
  position: absolute;
      width: 0.5rem;
    height: 0.5rem;
  background: #fff;
}

.device-section .device-card::before {
  top: -0.2rem;
  left: -0.2rem;
}

.device-section .device-card::after {
  bottom: -0.2rem;
  right: -0.2rem;
}

/* Image */
.device-section .card-img {
    height: 16rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.device-section .card-img img {
  max-height: 100%;
}

/* Content */
.device-section .card-content {
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: #0E0B10;
}

.device-section .card-tag {
  font-size: 0.7rem;
  background: #5B466A;
  padding: 0.2rem 0.5rem;
  border-radius: 0.2rem;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.device-section .card-content h6 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--WhiteColor);
    margin: 0.5rem 0;
}

.device-section .card-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #FFFFFFCC;
}

.cta-section{ background: radial-gradient(
    circle at center,
    #ffffff29 0%,
    #000 70%
  );}

.cta-section .same-heading h2{color: #D4A0FF;}
.cta-section .same-heading p{color: #FFFFFFCC;}
.cta-section .section-bottom-btn .btn-outline-light{border: solid 1px #303030;}
.cta-section .section-bottom-btn .btn-primary{background: #FFFFFF; color: #373737; border: solid 1px var(--WhiteColor);}



.footer {
  color: var(--WhiteColor);
  padding: 3rem 0 1rem;
}

/* Logo */
.footer .footer-logo {
 margin-bottom: 1rem;
 display: block;
}


/* Links */
.footer .footer-links {
  list-style: none;
  padding: 0;
}

.footer .footer-links li {
  margin-bottom: 0.6rem;
}

.footer .footer-links a {
  text-decoration: none;
  font-size: 0.85rem;
  color: #ccc;
  transition: 0.2s ease;
}

.footer .footer-links a:hover {
  color: #fff;
}

/* Divider */
.footer .footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 2rem 0 1rem;
}

/* Bottom */
.footer .footer-copy {
  font-size: 0.75rem;
  color: #777;margin-bottom: 0;
}

.footer .footer-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.15rem;
  color: #aaa;
}