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

html{
  scroll-behavior:smooth
}

body{
  background:#050608;
  color:#f5f4ef;
  font-family:"DM Sans",sans-serif;
  line-height:1.6;
  overflow-x:hidden
}

body:before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-3;
  background:
    radial-gradient(circle at 78% 20%,rgba(216,164,57,.12),transparent 25%),
    radial-gradient(circle at 20% 55%,rgba(35,55,90,.12),transparent 30%)
}

.noise{
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.035;
  z-index:100;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E")
}

a{
  color:inherit;
  text-decoration:none
}

em,i{
  font-style:normal;
  color:#e9b64f
}

button{
  font:inherit
}

.cursor{
  position:fixed;
  width:180px;
  height:180px;
  border-radius:50%;
  pointer-events:none;
  z-index:-1;
  background:rgba(234,181,77,.045);
  filter:blur(30px);
  transform:translate(-50%,-50%)
}


/* =========================================================
   HEADER
========================================================= */

#header{
  height:78px;
  position:fixed;
  z-index:99;
  top:0;
  left:0;
  right:0;
  padding:0 5.5%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:rgba(5,6,8,.78);
  backdrop-filter:blur(20px);
  border-bottom:1px solid rgba(255,255,255,.07)
}


/* =========================================================
   HEADER BRAND
========================================================= */

#header .brand{
  display:flex;
  align-items:center;
  gap:13px;
  flex-shrink:0;
  width:auto;
  height:58px;
}

#header .brand img{
  width:58px !important;
  height:58px !important;
  max-width:58px !important;
  max-height:58px !important;
  object-fit:contain;
  display:block;
}


/*
   BRAND NAME
   STRIVIOX = same line
   TECHNOLOGIES = below
*/

#header .brand-name{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  font-family:"Manrope",sans-serif;
  font-size:20px;
  line-height:1;
  font-weight:800;
  letter-spacing:2px;
  color:#f5f4ef;
  white-space:nowrap;
}


/* STRIVIOX itself MUST stay in one line */

#header .brand-text{
  display:inline-block;
  white-space:nowrap;
  font-family:"Manrope",sans-serif;
  font-size:20px;
  line-height:1;
  font-weight:800;
  letter-spacing:2px;
  color:#f5f4ef;
}


/* X ONLY = GOLD */

#header .gold-x{
  display:inline;
  color:#e9b64f;
  white-space:nowrap;
}


/* TECHNOLOGIES */

#header .brand-name small{
  display:block;
  font-family:"DM Sans",sans-serif;
  font-size:7px;
  line-height:1;
  font-weight:500;
  letter-spacing:4px;
  color:#969696;
  margin-top:7px;
  white-space:nowrap;
}


/* =========================================================
   NAVIGATION
========================================================= */

nav{
  display:flex;
  gap:28px;
  align-items:center;
  font-size:13px
}

nav>a{
  color:#bfc0c3;
  transition:.25s
}

nav>a:hover,
nav>a.active{
  color:#e9b64f
}

.nav-btn{
  border:1px solid rgba(233,182,79,.7);
  padding:11px 18px;
  border-radius:8px;
  color:#e9b64f!important
}

.nav-btn b{
  margin-left:12px
}

.hamb{
  display:none;
  background:transparent;
  border:0
}

.hamb span{
  display:block;
  width:25px;
  height:2px;
  background:#fff;
  margin:5px
}


/* =========================================================
   HERO
========================================================= */

.hero{
  min-height:820px;
  max-width:1400px;
  margin:auto;
  padding:150px 6% 80px;
  display:grid;
  grid-template-columns:1fr .9fr;
  align-items:center;
  gap:30px;
  position:relative
}

.hero-glow{
  position:absolute;
  width:650px;
  height:500px;
  right:-150px;
  top:100px;
  background:radial-gradient(circle,rgba(230,172,61,.14),transparent 67%);
  filter:blur(10px);
  z-index:-1
}

.pill,
.eyebrow{
  display:inline-flex;
  gap:9px;
  align-items:center;
  border:1px solid rgba(233,182,79,.25);
  background:rgba(233,182,79,.055);
  color:#e9b64f;
  border-radius:100px;
  padding:9px 15px;
  font-size:10px;
  font-weight:800;
  letter-spacing:1.4px
}

.hero h1{
  font:800 clamp(48px,6vw,78px)/1.02 "Manrope";
  letter-spacing:-3px;
  margin:25px 0
}

.hero h1 span{
  color:#fff
}

.hero h1 em{
  color:#e9b64f
}

.slide{
  display:none
}

.slide.active{
  display:block;
  animation:in .65s ease
}

@keyframes in{
  from{
    opacity:0;
    transform:translateY(12px)
  }
  to{
    opacity:1;
    transform:none
  }
}

.hero-copy p{
  color:#9298a2;
  max-width:590px;
  font-size:16px
}

.actions,
.contact-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:30px
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  border-radius:9px;
  padding:14px 21px;
  font-size:13px;
  font-weight:800;
  transition:.3s
}

.btn.gold{
  background:linear-gradient(135deg,#ffd56f,#d99d2d);
  color:#111;
  box-shadow:0 12px 35px rgba(226,166,54,.13)
}

.btn.gold:hover{
  transform:translateY(-3px);
  box-shadow:0 17px 45px rgba(226,166,54,.28)
}

.btn.glass{
  border:1px solid rgba(233,182,79,.55);
  background:rgba(255,255,255,.015)
}

.btn.glass:hover{
  background:rgba(233,182,79,.08);
  transform:translateY(-3px)
}

.slide-nav{
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:30px
}

.dot{
  width:25px;
  height:2px;
  border:0;
  background:#3a3c41
}

.dot.active{
  background:#e9b64f
}

.slide-nav span{
  font-size:10px;
  color:#62656b;
  margin-left:7px
}


/* =========================================================
   HERO ART
========================================================= */

.hero-art{
  height:500px;
  position:relative;
  display:grid;
  place-items:center
}

.device{
  width:min(610px,100%);
  transform:perspective(1000px) rotateY(-10deg) rotateX(3deg);
  filter:drop-shadow(0 35px 35px rgba(0,0,0,.7));
  z-index:2
}

.device-screen{
  height:340px;
  border:7px solid #252a31;
  border-radius:18px 18px 7px 7px;
  background:#080a0e;
  position:relative;
  overflow:hidden
}

.mini-nav{
  display:flex;
  justify-content:space-between;
  padding:20px 25px;
  font:700 16px Manrope
}

.mini-nav span{
  color:#e9b64f
}

.mini-nav i{
  font-size:7px;
  color:#e9b64f
}

.mini-copy{
  position:absolute;
  top:105px;
  left:50px;
  z-index:2
}

.mini-copy small{
  color:#e9b64f;
  letter-spacing:2px;
  font-size:8px
}

.mini-copy h2{
  font:800 39px/1.02 Manrope;
  margin:12px 0
}

.mini-copy button{
  border:0;
  background:#e9b64f;
  color:#111;
  padding:9px 14px;
  border-radius:5px;
  font-size:10px;
  font-weight:800
}

.mini-copy button span{
  margin-left:12px
}

.globe{
  position:absolute;
  right:-50px;
  bottom:-100px;
  width:320px;
  height:320px;
  border-radius:50%;
  background:radial-gradient(
    circle at 30% 27%,
    #eac66e,
    #624719 28%,
    #14120e 58%,
    #07080b 70%
  );
  box-shadow:0 0 70px rgba(232,178,68,.2)
}

.globe:after{
  content:"";
  position:absolute;
  inset:25px;
  border:1px solid rgba(255,220,130,.25);
  border-radius:50%;
  transform:rotate(45deg)
}

.device-base{
  height:25px;
  width:112%;
  margin-left:-6%;
  background:linear-gradient(#8a9098,#353a40 45%,#15181c);
  border-radius:3px 3px 25px 25px
}

.halo{
  position:absolute;
  width:430px;
  height:430px;
  border-radius:50%;
  border:1px solid rgba(233,182,79,.13)
}

.orbit{
  position:absolute;
  border:1px solid rgba(233,182,79,.18);
  border-radius:50%;
  width:470px;
  height:180px;
  transform:rotate(-25deg)
}

.o2{
  transform:rotate(40deg);
  width:350px;
  height:120px
}

.floating-card{
  position:absolute;
  background:rgba(10,13,18,.86);
  backdrop-filter:blur(12px);
  border:1px solid rgba(233,182,79,.28);
  padding:13px 16px;
  border-radius:10px;
  z-index:4;
  box-shadow:0 15px 35px rgba(0,0,0,.3)
}

.floating-card b,
.floating-card small{
  display:block
}

.floating-card span{
  color:#e9b64f
}

.floating-card small{
  font-size:9px;
  color:#747980
}

.fc1{
  top:70px;
  right:0
}

.fc2{
  bottom:55px;
  left:10px
}

.fc2 b{
  font-size:24px;
  color:#e9b64f
}


/* =========================================================
   TRUST
========================================================= */

.trust{
  max-width:1300px;
  margin:auto;
  border-top:1px solid rgba(255,255,255,.07);
  border-bottom:1px solid rgba(255,255,255,.07);
  padding:22px 5%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:25px;
  color:#676b72;
  font-size:9px;
  letter-spacing:2px
}

.trust b{
  color:#a6a8ad
}

.trust i{
  height:3px;
  width:3px;
  background:#e9b64f;
  border-radius:50%
}


/* =========================================================
   COMMON SECTION
========================================================= */

.section{
  max-width:1300px;
  margin:auto;
  padding:125px 6%
}

.heading h2,
.contact h2{
  font:800 clamp(39px,5vw,60px)/1.05 Manrope;
  letter-spacing:-2.5px;
  margin-top:18px
}

.heading p{
  color:#777d86;
  margin-top:15px
}


/* =========================================================
   ABOUT
========================================================= */

.about-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:90px;
  margin-top:55px
}

.about-text{
  max-width:650px
}

.lead{
  font:600 24px/1.35 Manrope;
  margin-bottom:22px
}

.about-text p:not(.lead){
  color:#8b919b;
  margin:0 0 18px
}

.underlink{
  display:inline-flex;
  gap:12px;
  color:#e9b64f;
  font-weight:800;
  font-size:12px;
  margin-top:14px
}

.manifesto{
  border:1px solid rgba(233,182,79,.27);
  border-radius:15px;
  min-height:340px;
  padding:40px;
  background:
    radial-gradient(circle at 80% 20%,rgba(233,182,79,.12),transparent 38%),
    #090c11;
  display:flex;
  flex-direction:column;
  justify-content:center
}

.big-quote{
  font:80px Georgia;
  color:#e9b64f;
  height:65px
}

.manifesto h3{
  font:700 34px/1.12 Manrope
}

.manifesto hr{
  border:0;
  border-top:1px solid rgba(233,182,79,.2);
  margin:28px 0 13px
}

.manifesto small{
  font-size:9px;
  letter-spacing:3px;
  color:#666
}


/* =========================================================
   SERVICES
========================================================= */

.center{
  text-align:center
}

.services{
  background:linear-gradient(
    180deg,
    transparent,
    rgba(255,255,255,.012),
    transparent
  )
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:15px;
  margin-top:50px
}

.service{
  min-height:265px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:13px;
  padding:27px;
  background:linear-gradient(145deg,#0c1016,#07090d);
  position:relative;
  transition:.35s
}

.service:hover{
  transform:translateY(-7px);
  border-color:rgba(233,182,79,.55);
  box-shadow:0 20px 50px rgba(0,0,0,.35)
}

.service>span{
  position:absolute;
  right:20px;
  top:20px;
  color:#555;
  font-size:10px
}

.service-icon{
  font-size:27px;
  color:#e9b64f;
  margin-bottom:25px
}

.service h3{
  font:700 20px Manrope
}

.service p{
  font-size:12px;
  color:#777e88;
  margin-top:10px;
  max-width:290px
}

.service a{
  position:absolute;
  bottom:24px;
  color:#e9b64f;
  font-size:11px;
  font-weight:800
}

.service a b{
  margin-left:12px
}


/* =========================================================
   PORTFOLIO
========================================================= */

.row{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:20px
}

.work-note{
  font-size:11px;
  color:#686d75;
  max-width:220px
}

.project-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:48px
}

.project{
  height:410px;
  border-radius:15px;
  overflow:hidden;
  position:relative;
  border:1px solid rgba(255,255,255,.09);
  transition:.4s
}

.project:hover{
  transform:translateY(-8px);
  border-color:rgba(233,182,79,.6)
}

.p1{
  background:linear-gradient(
    145deg,
    #171717 5%,
    #333 40%,
    #090a0c 65%,
    #624a20
  )
}

.p2{
  background:linear-gradient(
    145deg,
    #e5e9df,
    #9bb886 45%,
    #29401e
  )
}

.p3{
  background:linear-gradient(
    145deg,
    #11151c,
    #25374e 48%,
    #0b0e13
  )
}

.project:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    transparent 25%,
    rgba(0,0,0,.92)
  )
}

.project-content{
  position:absolute;
  z-index:2;
  bottom:0;
  padding:28px;
  width:100%
}

.project-content>span{
  color:#e9b64f;
  font-size:9px;
  letter-spacing:1.8px;
  font-weight:800
}

.project h3{
  font:700 29px Manrope;
  margin:7px 0
}

.project p{
  font-size:12px;
  color:#a2a6ad;
  max-width:290px
}

.project-content>b{
  display:inline-block;
  font-size:8px;
  color:#777;
  margin-top:20px;
  border:1px solid #36383c;
  padding:6px 8px;
  border-radius:5px
}

.project-content>a{
  display:inline-block;
  margin-top:20px;
  color:#e9b64f;
  font-size:11px;
  font-weight:800
}


/* =========================================================
   PRICING
========================================================= */

.price-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:50px
}

.price-card{
  position:relative;
  border:1px solid rgba(255,255,255,.09);
  border-radius:14px;
  padding:29px 24px;
  background:#090c11;
  min-height:455px
}

.price-card.popular{
  border-color:rgba(233,182,79,.7);
  background:linear-gradient(
    145deg,
    rgba(233,182,79,.09),
    #090c11 48%
  )
}

.price-card label{
  position:absolute;
  right:15px;
  top:15px;
  background:#e9b64f;
  color:#111;
  border-radius:20px;
  padding:5px 8px;
  font-size:7px;
  font-weight:900
}

.price-card>small{
  font-size:9px;
  letter-spacing:1.5px;
  color:#e9b64f
}

.price-card h3{
  font:700 25px Manrope;
  margin:8px 0
}

.price-card>p{
  font-size:11px;
  color:#777d87;
  min-height:50px
}

.amount{
  font:800 28px Manrope;
  margin:25px 0
}

.amount span{
  font:500 9px;
  color:#696d74
}

.price-card ul{
  list-style:none;
  color:#a7acb5;
  font-size:11px;
  line-height:2.3;
  margin-bottom:22px
}

.price-card .btn{
  width:100%;
  font-size:11px
}

.price-foot{
  text-align:center;
  color:#5d6269;
  font-size:9px;
  margin-top:20px
}


/* =========================================================
   WHY STRIVOIX
========================================================= */

.why{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:100px;
  align-items:center
}

.why-art{
  height:430px;
  display:grid;
  place-items:center;
  position:relative
}

.circle{
  position:absolute;
  border:1px solid rgba(233,182,79,.3);
  border-radius:50%
}

.c1{
  width:310px;
  height:310px;
  box-shadow:
    0 0 80px rgba(233,182,79,.07),
    inset 0 0 50px rgba(233,182,79,.05)
}

.c2{
  width:210px;
  height:210px;
  border-style:dashed
}

.sx{
  font:800 55px Manrope;
  letter-spacing:4px
}

.sx span{
  color:#e9b64f
}

.why>div:last-child>h2{
  font:800 clamp(39px,5vw,55px)/1.05 Manrope;
  letter-spacing:-2px;
  margin:18px 0 40px
}

.why-item{
  display:grid;
  grid-template-columns:45px 1fr;
  gap:15px;
  padding:19px 0;
  border-top:1px solid rgba(255,255,255,.08)
}

.why-item>b{
  color:#e9b64f;
  font-size:10px
}

.why-item h3{
  font-size:14px
}

.why-item p{
  font-size:11px;
  color:#777d86;
  margin-top:4px
}


/* =========================================================
   CONTACT
========================================================= */

.contact{
  text-align:center;
  position:relative;
  border-top:1px solid rgba(233,182,79,.12);
  border-bottom:1px solid rgba(233,182,79,.12);
  overflow:hidden
}

.contact-glow{
  position:absolute;
  width:650px;
  height:330px;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  background:rgba(233,182,79,.07);
  filter:blur(80px);
  z-index:-1
}

.contact h2{
  margin:20px auto 14px
}

.contact>p{
  color:#777d86
}

.contact-actions{
  justify-content:center
}

.btn.big{
  padding:16px 24px
}

.contact-note{
  color:#4f545b;
  font-size:9px;
  margin-top:25px
}


/* =========================================================
   FOOTER
========================================================= */

.footer-top{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:35px
}

.footer-top>div:first-child{
  width:100%
}

.footer-nav{
  display:flex;
  gap:25px
}


/*
   IMPORTANT:
   Footer logo image styling removed.
   Footer-la logo image use panna vendam.
*/

footer .logo{
  display:none
}


/* =========================================================
   DESKTOP / TABLET
========================================================= */

@media(max-width:1100px){

  nav{
    gap:16px
  }

  .hero{
    grid-template-columns:1fr
  }

  .hero-art{
    height:430px
  }

  .service-grid{
    grid-template-columns:repeat(2,1fr)
  }

  .price-grid{
    grid-template-columns:repeat(2,1fr)
  }

  .about-grid,
  .why{
    grid-template-columns:1fr
  }

  .why-art{
    height:300px
  }

  .project-grid{
    grid-template-columns:1fr 1fr
  }

  .p3{
    grid-column:span 2
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:760px){

  #header{
    height:68px
  }

  .hamb{
    display:block
  }

  .hamb span{
    transition:.25s
  }


  nav{
    display:none;
    position:absolute;
    top:68px;
    left:0;
    right:0;
    padding:18px 7%;
    background:rgba(5,6,8,.98);
    flex-direction:column;
    align-items:stretch;
    border-bottom:1px solid rgba(255,255,255,.08)
  }

  nav.open{
    display:flex
  }

  .nav-btn{
    text-align:center
  }


  /* MOBILE HEADER BRAND */

  #header .brand{
    gap:9px;
    height:50px
  }

  #header .brand img{
    width:48px !important;
    height:48px !important;
    max-width:48px !important;
    max-height:48px !important
  }

  #header .brand-name{
    font-size:17px;
    letter-spacing:1.5px
  }

  #header .brand-text{
    font-size:17px;
    letter-spacing:1.5px;
    white-space:nowrap
  }

  #header .gold-x{
    display:inline;
    color:#e9b64f;
    white-space:nowrap
  }

  #header .brand-name small{
    font-size:6px;
    letter-spacing:3px;
    margin-top:6px
  }


  .hero{
    padding:110px 6% 65px
  }

  .hero h1{
    font-size:44px;
    letter-spacing:-2px
  }

  .hero-art{
    height:330px
  }

  .device-screen{
    height:225px
  }

  .mini-copy{
    top:65px;
    left:25px
  }

  .mini-copy h2{
    font-size:27px
  }

  .globe{
    width:190px;
    height:190px;
    bottom:-65px
  }

  .halo{
    width:290px;
    height:290px
  }

  .orbit{
    width:320px;
    height:130px
  }

  .fc1{
    top:15px;
    right:-5px
  }

  .fc2{
    bottom:20px;
    left:-5px
  }

  .trust{
    gap:11px;
    flex-wrap:wrap;
    line-height:1.2
  }

  .trust i{
    display:none
  }

  .section{
    padding:85px 6%
  }

  .heading h2,
  .contact h2{
    font-size:39px
  }

  .service-grid,
  .project-grid,
  .price-grid{
    grid-template-columns:1fr
  }

  .p3{
    grid-column:auto
  }

  .project{
    height:340px
  }

  .price-card{
    min-height:0
  }

  .row{
    align-items:flex-start;
    flex-direction:column
  }

  .footer-top{
    flex-direction:column
  }

  .footer-nav{
    flex-wrap:wrap
  }

  .footer-bottom{
    flex-direction:column;
    gap:8px
  }

  .wa{
    right:15px;
    bottom:16px
  }

  .top{
    right:15px;
    bottom:77px
  }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media(max-width:430px){

  .hero h1{
    font-size:39px
  }

  .actions .btn,
  .contact-actions .btn{
    width:100%
  }

  .manifesto{
    padding:30px
  }

  .manifesto h3{
    font-size:28px
  }
}/* ================= EMAIL BUTTON ================= */

.contact-email{
  display:inline-flex;
  align-items:center;
  gap:18px;
  margin-top:25px;
  padding:13px 18px;
  border:1px solid rgba(233,182,79,.28);
  border-radius:9px;
  background:rgba(255,255,255,.02);
  transition:.3s ease;
}

.contact-email span{
  font-size:8px;
  font-weight:800;
  letter-spacing:1.8px;
  color:#777d86;
}

.contact-email a{
  color:#e9b64f;
  font-size:12px;
  font-weight:800;
}

.contact-email b{
  margin-left:10px;
  font-size:14px;
}

.contact-email:hover{
  border-color:rgba(233,182,79,.65);
  background:rgba(233,182,79,.06);
  transform:translateY(-2px);
}

@media(max-width:430px){
  .contact-email{
    width:100%;
    justify-content:center;
    gap:10px;
    flex-wrap:wrap;
  }
}