/* ===========================================================
   Pixel Setup Landing Page
   Part 2A - Global Styles + Hero
   =========================================================== */

/*========================
ROOT VARIABLES
=========================*/

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;

  --secondary: #7c3aed;

  --success: #22c55e;

  --dark: #050816;
  --dark2: #0d1324;
  --card: rgba(255, 255, 255, 0.05);

  --white: #ffffff;

  --text: #e2e8f0;

  --muted: #94a3b8;

  --border: rgba(255, 255, 255, 0.08);

  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);

  --radius: 18px;
}

/*========================
RESET
=========================*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;

  background: var(--dark);

  color: var(--text);

  overflow-x: hidden;

  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1200px;
}

/*========================
SCROLLBAR
=========================*/

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 30px;
}

::-webkit-scrollbar-track {
  background: #08111d;
}

/*========================
BACKGROUND BLURS
=========================*/

.blur {
  position: fixed;

  border-radius: 50%;

  filter: blur(140px);

  opacity: 0.45;

  z-index: -1;
}

.blur-one {
  width: 400px;
  height: 400px;

  background: #2563eb;

  left: -150px;
  top: -120px;
}

.blur-two {
  width: 450px;
  height: 450px;

  background: #7c3aed;

  right: -180px;
  bottom: -100px;
}

/*========================
NAVBAR
=========================*/

.navbar {
  padding: 18px 0;

  backdrop-filter: blur(18px);

  background: rgba(5, 8, 22, 0.6);

  border-bottom: 1px solid rgba(255, 255, 255, 0.05);

  transition: 0.4s;
}

.navbar-brand {
  color: #fff;

  font-size: 28px;

  font-weight: 700;

  display: flex;

  align-items: center;

  gap: 10px;
}

.navbar-brand:hover {
  color: #fff;
}

.brand-icon {
  width: 42px;
  height: 42px;

  border-radius: 12px;

  background: linear-gradient(135deg, #2563eb, #7c3aed);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 20px;
}

.nav-link {
  color: #d6d6d6 !important;

  margin-left: 18px;

  font-weight: 500;

  transition: 0.3s;
}

.nav-link:hover {
  color: #fff !important;
}

.navbar-toggler {
  border: none;

  color: white;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/*========================
BUTTONS
=========================*/

.btn {
  border-radius: 14px;

  padding: 14px 28px;

  font-weight: 600;

  transition: 0.35s;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #7c3aed);

  border: none;

  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);

  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.55);
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.18);

  color: #fff;
}

.btn-outline-light:hover {
  background: white;

  color: #111827;
}

/*========================
HERO
=========================*/

.hero {
  padding-top: 180px;

  padding-bottom: 120px;

  position: relative;
}

.hero-badge {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  background: rgba(37, 99, 235, 0.15);

  color: #8ab6ff;

  padding: 10px 18px;

  border-radius: 100px;

  border: 1px solid rgba(37, 99, 235, 0.35);

  margin-bottom: 25px;

  font-size: 15px;
}

.hero h1 {
  font-size: 65px;

  line-height: 1.05;

  color: #fff;

  margin-bottom: 25px;
}

.hero h1 span {
  color: #5aa8ff;
}

.hero p {
  font-size: 19px;

  color: var(--muted);

  max-width: 560px;

  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;

  gap: 18px;

  flex-wrap: wrap;
}

/*========================
TRUST ITEMS
=========================*/

.trust {
  display: flex;

  flex-wrap: wrap;

  gap: 15px;
}

.trust div {
  display: flex;

  align-items: center;

  gap: 8px;

  color: #cbd5e1;

  font-size: 15px;
}

.trust i {
  color: #22c55e;
}

/*========================
DASHBOARD CARD
=========================*/

.dashboard-card {
  position: relative;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(20px);

  border-radius: 24px;

  overflow: hidden;

  padding: 0;

  box-shadow: var(--shadow);
}

.dashboard-header {
  display: flex;

  align-items: center;

  gap: 8px;

  padding: 20px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  background: rgba(255, 255, 255, 0.03);
}

.dashboard-header span {
  margin-left: 15px;

  color: #fff;

  font-weight: 600;
}

.circle {
  width: 12px;

  height: 12px;

  border-radius: 50%;
}

.red {
  background: #ef4444;
}

.yellow {
  background: #f59e0b;
}

.green {
  background: #22c55e;
}

.dashboard-body {
  padding: 25px;
}

.event {
  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 16px 18px;

  margin-bottom: 15px;

  border-radius: 14px;

  background: rgba(255, 255, 255, 0.04);

  transition: 0.35s;
}

.event:hover {
  transform: translateX(8px);

  background: rgba(255, 255, 255, 0.08);
}

.success span:last-child {
  background: #22c55e;

  color: white;

  padding: 5px 12px;

  border-radius: 100px;

  font-size: 13px;
}

/*========================
FLOATING CARDS
=========================*/

.floating-card {
  position: absolute;

  background: white;

  color: #111827;

  display: flex;

  align-items: center;

  gap: 15px;

  padding: 18px;

  border-radius: 18px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);

  animation: float 4s ease-in-out infinite;
}

.floating-card i {
  font-size: 28px;

  color: var(--primary);
}

.floating-card strong {
  display: block;

  font-size: 18px;
}

.floating-card small {
  color: #6b7280;
}

.floating-left {
  left: -60px;

  top: 120px;
}

.floating-right {
  right: -50px;

  bottom: 40px;
}

/*========================
STATS
=========================*/

.stats-row {
  margin-top: 90px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 20px;

  text-align: center;

  padding: 35px;

  transition: 0.35s;
}

.stat-card:hover {
  transform: translateY(-10px);

  border-color: #2563eb;
}

.stat-card h2 {
  color: white;
  font-size: 28px;
  margin-bottom: 8px;
}
.stat-card p {
  color: var(--muted);

  margin: 0;
}

/*========================
ANIMATION
=========================*/

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}
/*==================================================
PART 2B
Responsive + Glass + Animations + Utilities
==================================================*/

/*==============================
GLASS EFFECT
==============================*/

.glass {
  background: rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(18px);

  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 20px;

  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
}

/*==============================
SECTION SPACING
==============================*/

section {
  position: relative;

  padding: 110px 0;
}

.section-title {
  color: #fff;

  font-size: 48px;

  margin-bottom: 20px;
}

.section-title span {
  background: linear-gradient(90deg, #2563eb, #7c3aed);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: var(--muted);

  max-width: 700px;

  margin: auto;

  font-size: 18px;
}

/*==============================
GRADIENT TEXT
==============================*/

.gradient-text {
  background: linear-gradient(135deg, #2563eb, #7c3aed);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;
}

/*==============================
GRADIENT BORDER
==============================*/

.gradient-border {
  position: relative;

  border-radius: 20px;

  overflow: hidden;
}

.gradient-border::before {
  content: "";

  position: absolute;

  inset: 0;

  padding: 1px;

  border-radius: 20px;

  background: linear-gradient(135deg, #2563eb, #7c3aed);

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;

  mask-composite: exclude;

  pointer-events: none;
}

/*==============================
IMAGE HOVER
==============================*/

.image-hover {
  overflow: hidden;

  border-radius: 20px;
}

.image-hover img {
  transition: 0.7s;
}

.image-hover:hover img {
  transform: scale(1.08);
}

/*==============================
CARD HOVER
==============================*/

.hover-card {
  transition: 0.35s;
}

.hover-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 30px 80px rgba(37, 99, 235, 0.25);
}

/*==============================
ICON BOX
==============================*/

.icon-box {
  width: 70px;

  height: 70px;

  border-radius: 18px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: linear-gradient(135deg, #2563eb, #7c3aed);

  color: white;

  font-size: 30px;

  margin-bottom: 25px;
}

/*==============================
BUTTON SHINE EFFECT
==============================*/

.btn-primary {
  position: relative;

  overflow: hidden;
}

.btn-primary::after {
  content: "";

  position: absolute;

  top: -40%;

  left: -120%;

  width: 60%;

  height: 200%;

  background: rgba(255, 255, 255, 0.35);

  transform: rotate(25deg);
}

.btn-primary:hover::after {
  animation: shine 0.8s;
}

@keyframes shine {
  100% {
    left: 170%;
  }
}

/*==============================
LINK ANIMATION
==============================*/

.nav-link {
  position: relative;
}

.nav-link::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: -5px;

  width: 0;

  height: 2px;

  background: #2563eb;

  transition: 0.35s;
}

.nav-link:hover::after {
  width: 100%;
}

/*==============================
SCROLL NAVBAR
==============================*/

.navbar.scrolled {
  background: #050816;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);

  padding: 14px 0;
}

/*==============================
GLOW EFFECT
==============================*/

.glow {
  position: relative;
}

.glow::before {
  content: "";

  position: absolute;

  width: 250px;

  height: 250px;

  background: #2563eb;

  filter: blur(120px);

  opacity: 0.25;

  z-index: -1;
}

/*==============================
BADGE
==============================*/

.badge-premium {
  display: inline-block;

  padding: 10px 18px;

  border-radius: 100px;

  background: rgba(124, 58, 237, 0.15);

  border: 1px solid rgba(124, 58, 237, 0.35);

  color: #b79dff;

  font-weight: 600;
}

/*==============================
SHADOWS
==============================*/

.shadow-blue {
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.35);
}

.shadow-purple {
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.35);
}

/*==============================
FLOATING ANIMATION
==============================*/

.float {
  animation: float 4s ease infinite;
}

.float-delay {
  animation: float 5s ease infinite;

  animation-delay: 1s;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }

  100% {
    transform: translateY(0);
  }
}

/*==============================
FADE UP
==============================*/

.fade-up {
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;

    transform: translateY(35px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

/*==============================
ROTATE
==============================*/

.rotate {
  animation: rotate 12s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

/*==============================
PULSE
==============================*/

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.45);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(37, 99, 235, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
  }
}

/*==============================
CUSTOM SELECTION
==============================*/

::selection {
  background: #2563eb;

  color: white;
}

/*==============================
INPUTS
==============================*/

.form-control,
.form-select {
  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.08);

  color: white;

  border-radius: 14px;

  padding: 15px;
}

.form-control:focus,
.form-select:focus {
  background: rgba(255, 255, 255, 0.05);

  border-color: #2563eb;

  color: white;

  box-shadow: none;
}

.form-control::placeholder {
  color: #94a3b8;
}
.problem-icon {
  width: 50px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  margin: 10px 0 13px 0px;
}
.accordion-body {
  color: #fff;
}
/*==============================
RESPONSIVE
==============================*/

@media (max-width: 1200px) {
  .hero h1 {
    font-size: 56px;
  }

  .floating-left {
    left: -20px;
  }

  .floating-right {
    right: -20px;
  }
}

@media (max-width: 991px) {
  .navbar {
    padding: 15px 0;
  }

  .hero {
    padding-top: 140px;

    text-align: center;
  }

  .hero p {
    margin: auto auto 35px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .trust {
    justify-content: center;

    margin-top: 40px;
  }

  .dashboard-card {
    margin-top: 70px;
  }

  .floating-card {
    display: none;
  }

  .stats-row {
    margin-top: 70px;
  }

  .section-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 44px;
  }

  .section-title {
    font-size: 34px;
  }

  .hero p {
    font-size: 17px;
  }

  .btn {
    width: 100%;
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .stat-card {
    margin-bottom: 25px;
  }

  .dashboard-body {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding-top: 120px;

    padding-bottom: 70px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-badge {
    font-size: 13px;

    padding: 8px 14px;
  }

  .dashboard-header {
    padding: 15px;
  }

  .dashboard-header span {
    font-size: 14px;
  }

  .event {
    padding: 13px;

    font-size: 14px;
  }

  .section-title {
    font-size: 30px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .container {
    padding-left: 20px;

    padding-right: 20px;
  }
}

/*==============================
SMOOTH TRANSITIONS
==============================*/

a,
button,
.card,
.event,
.stat-card,
.navbar,
img {
  transition: 0.35s ease;
}
.timeline-item {
  position: relative;
}
.timeline-number {
  position: absolute;
  z-index: 1;
  left: 9px;
  top: 50px;
}
