/* ====================================
   RESET
==================================== */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

/* ====================================
   ROOT
==================================== */

:root{

  --bg:#050505;
  --bg2:#0d0d0d;

  --yellow:#ffd400;
  --yellow2:#ffb800;
  --yellowSoft:#fff1a8;

  --white:#ffffff;
  --gray:#b9b9b9;

}

/* ====================================
   BODY
==================================== */

body{

  font-family:'Inter',sans-serif;

  width:100%;
  min-height:100vh;

  overflow:hidden;

  display:flex;
  justify-content:center;
  align-items:center;

  background:
    radial-gradient(circle at top left,
      rgba(255,212,0,0.08),
      transparent 25%),

    radial-gradient(circle at bottom right,
      rgba(255,212,0,0.05),
      transparent 25%),

    linear-gradient(
      135deg,
      #000000,
      #050505 45%,
      #0c0c0c
    );

  color:white;

  position:relative;
}

/* ====================================
   GRID EFFECT
==================================== */

body::before{

  content:"";

  position:absolute;
  inset:0;

  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);

  background-size:42px 42px;

  opacity:.35;
}

/* ====================================
   GLOW
==================================== */

.glow{

  position:absolute;

  border-radius:50%;

  filter:blur(120px);

  opacity:.12;

  z-index:1;
}

.glow-1{

  width:400px;
  height:400px;

  background:var(--yellow);

  top:-150px;
  left:-150px;
}

.glow-2{

  width:300px;
  height:300px;

  background:var(--yellow2);

  bottom:-100px;
  right:-100px;
}

/* ====================================
   CONTAINER
==================================== */

.container{

  width:100%;
  max-width:1350px;

  padding:18px;

  position:relative;

  z-index:5;
}

/* ====================================
   MAIN CARD
==================================== */

.card{

  width:100%;

  background:
    rgba(7,7,7,0.92);

  border:
    1px solid rgba(255,212,0,0.12);

  border-radius:32px;

  overflow:hidden;

  backdrop-filter:blur(18px);

  position:relative;

  box-shadow:
    0 0 60px rgba(255,212,0,0.05);
}

/* TOP BORDER */

.card::before{

  content:"";

  position:absolute;

  top:0;
  left:0;

  width:100%;
  height:4px;

  background:
    linear-gradient(
      90deg,
      var(--yellow),
      var(--yellowSoft),
      var(--yellow)
    );
}

/* ====================================
   TOP BAR
==================================== */

.top-bar{

  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:32px 42px 20px;
}

/* ====================================
   BRAND
==================================== */

.brand{

  display:flex;
  align-items:center;
  gap:18px;
}

.logo{

  width:72px;
  height:72px;

  border-radius:20px;

  background:
    linear-gradient(
      135deg,
      var(--yellow),
      var(--yellow2)
    );

  color:black;

  font-size:28px;
  font-weight:800;

  display:flex;
  justify-content:center;
  align-items:center;
}

.brand-text h1{

  font-size:42px;

  font-weight:700;

  letter-spacing:-2px;
}

.brand-text p{

  margin-top:4px;

  color:var(--gray);

  font-size:15px;
}

/* ====================================
   STATUS PILL
==================================== */

.maintenance-pill{

  display:flex;
  align-items:center;
  gap:10px;

  padding:12px 20px;

  border-radius:999px;

  background:
    rgba(255,212,0,0.08);

  border:
    1px solid rgba(255,212,0,0.15);

  color:var(--yellowSoft);

  font-size:14px;
  font-weight:600;
}

.dot{

  width:9px;
  height:9px;

  border-radius:50%;

  background:var(--yellow);

  box-shadow:
    0 0 12px var(--yellow);
}

/* ====================================
   HERO
==================================== */

.hero{

  display:grid;

  grid-template-columns:
    1.1fr .9fr;

  gap:30px;

  align-items:center;

  padding:
    0 42px 24px;
}

/* ====================================
   LEFT SIDE
==================================== */

.tag{

  display:inline-block;

  padding:10px 18px;

  border-radius:999px;

  background:
    rgba(255,255,255,0.04);

  border:
    1px solid rgba(255,255,255,0.06);

  color:var(--yellow);

  font-size:11px;

  letter-spacing:2px;

  margin-bottom:22px;
}

/* TITLE */

.hero-left h2{

  font-size:72px;

  line-height:.95;

  letter-spacing:-4px;

  font-weight:800;

  margin-bottom:24px;

  max-width:650px;
}

/* HIGHLIGHT */

.highlight{

  background:
    linear-gradient(
      90deg,
      var(--yellow),
      var(--yellowSoft)
    );

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* DESCRIPTION */

.description{

  font-size:18px;

  line-height:1.8;

  color:var(--gray);

  max-width:650px;

  margin-bottom:28px;
}

/* ====================================
   BUTTONS
==================================== */

.buttons{

  display:flex;

  gap:16px;

  flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{

  height:54px;

  padding:0 24px;

  border-radius:16px;

  display:inline-flex;
  align-items:center;
  gap:10px;

  text-decoration:none;

  font-weight:600;

  transition:.3s;
}

.btn-primary{

  background:
    linear-gradient(
      135deg,
      var(--yellow),
      var(--yellow2)
    );

  color:black;
}

.btn-primary:hover{

  transform:translateY(-3px);
}

.btn-secondary{

  background:
    rgba(255,255,255,0.03);

  border:
    1px solid rgba(255,255,255,0.08);

  color:white;
}

/* ====================================
   RIGHT SIDE
==================================== */

.hero-right{

  position:relative;

  display:flex;
  justify-content:center;
  align-items:center;
}

/* MAIN UI CARD */

.main-ui{

  width:100%;
  max-width:360px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.05),
      rgba(255,255,255,0.03)
    );

  border:
    1px solid rgba(255,255,255,0.08);

  border-radius:28px;

  padding:22px;
}

/* UI HEADER */

.ui-header{

  display:flex;
  justify-content:space-between;
  align-items:center;

  margin-bottom:20px;
}

.ui-dots{

  display:flex;
  gap:8px;
}

.ui-dots span{

  width:10px;
  height:10px;

  border-radius:50%;

  background:
    rgba(255,255,255,0.18);
}

.ui-header p{

  font-size:12px;

  letter-spacing:2px;

  color:var(--gray);
}

/* STATUS LIST */

.status-list{

  display:flex;
  flex-direction:column;
  gap:12px;
}

.status-item{

  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:15px;

  border-radius:16px;

  background:
    rgba(255,255,255,0.03);

  border:
    1px solid rgba(255,255,255,0.05);
}

.status-left{

  display:flex;
  align-items:center;
  gap:12px;
}

.status-left i{

  color:var(--yellow);
}

.status-active{

  padding:7px 12px;

  border-radius:999px;

  background:
    rgba(255,212,0,0.08);

  color:var(--yellowSoft);

  font-size:11px;

  font-weight:600;
}

/* ====================================
   FLOATING CARD
==================================== */

.floating-card{

  position:absolute;

  right:-10px;

  bottom:35px;

  width:180px;

  background:
    rgba(10,10,10,0.96);

  border:
    1px solid rgba(255,212,0,0.12);

  border-radius:18px;

  padding:16px;

  display:flex;
  gap:12px;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.35);
}

.floating-card i{

  color:var(--yellow);

  font-size:18px;

  margin-top:2px;
}

.floating-card h3{

  font-size:15px;

  line-height:1.2;

  margin-bottom:5px;
}

.floating-card p{

  font-size:13px;

  line-height:1.45;

  color:var(--gray);
}

/* ====================================
   BOTTOM FEATURES
==================================== */

.bottom-grid{

  display:grid;

  grid-template-columns:
    repeat(3,1fr);

  gap:14px;

  padding:
    0 42px 20px;
}

.bottom-box{

  background:
    rgba(255,255,255,0.03);

  border:
    1px solid rgba(255,255,255,0.05);

  border-radius:18px;

  padding:18px;
}

.bottom-box i{

  color:var(--yellow);

  font-size:18px;

  margin-bottom:10px;
}

.bottom-box h3{

  font-size:17px;

  margin-bottom:5px;
}

.bottom-box p{

  color:var(--gray);

  font-size:14px;

  line-height:1.5;
}

/* ====================================
   FOOTER
==================================== */

footer{

  text-align:center;

  padding:0 0 18px;

  color:
    rgba(255,255,255,0.35);

  font-size:13px;
}

/* ====================================
   RESPONSIVE
==================================== */

@media(max-width:1200px){

  .hero{

    grid-template-columns:1fr;
  }

  .floating-card{

    position:relative;

    right:auto;
    bottom:auto;

    width:100%;

    margin-top:20px;
  }

}

@media(max-width:768px){

  body{

    overflow-y:auto;
  }

  .top-bar{

    flex-direction:column;

    align-items:flex-start;

    gap:20px;
  }

  .hero-left h2{

    font-size:48px;
  }

  .bottom-grid{

    grid-template-columns:1fr;
  }

}

@media(max-width:600px){

  .buttons{

    flex-direction:column;
  }

  .btn-primary,
  .btn-secondary{

    width:100%;

    justify-content:center;
  }

}