:root{
  --bg:#07111f;
  --bg2:#050b14;
  --card:#0c1a2b;
  --card2:#0f2238;
  --line:rgba(255,255,255,.10);
  --text:#e8f0ff;
  --muted:#a9b7d0;
  --accent:#4fd1c5;
  --accent2:#7c5cff;
}

html{
  scroll-behavior: smooth;
}

body{
  padding-top: 30px;
  /* padding-left: 30px;
  padding-right: 30px; */
  background: radial-gradient(circle at top,#11213b 0,#07111f 35%,#050b14 100%);
  color: var(--text);
}

.navbar{
  backdrop-filter: blur(18px);
  background: rgba(5,11,20,.72) !important;
}

.nav-link,
.navbar-brand{
  color: #fff !important;
}

.nav-link{
  opacity: .82;
}

.nav-link:hover,
.nav-link.active{
  opacity: 1;
}

.section-pad{
  padding: 5.5rem 0;
}

.soft{
  color: var(--muted);
}

.glass{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

.feature-card,
.metric,
.form-card{
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(15,34,56,.98), rgba(10,20,35,.98));
  border: 1px solid var(--line);
}

.brand-badge{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-weight: 700;
}

.chip{
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem .8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: var(--muted);
}

.btn-accent{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border: 0;
  color: #fff;
}

.btn-accent:hover{
  filter: brightness(1.05);
  color: #fff;
}

.hero{
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-blob{
  position: absolute;
  inset: auto -8% -15% auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,92,255,.55), rgba(124,92,255,0) 70%);
  filter: blur(12px);
  pointer-events: none;
}

.hero-blob2{
  position: absolute;
  top: 12%;
  left: -10%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,209,197,.4), rgba(79,209,197,0) 70%);
  filter: blur(10px);
  pointer-events: none;
}

.shadow-soft{
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
}

.border-soft{
  border-color: var(--line) !important;
}

.form-control,
.form-select{
  background: #081220;
  border-color: rgba(255,255,255,.12);
  color: #fff;
}

.form-control:focus,
.form-select:focus{
  background: #081220;
  color: #fff;
  box-shadow: 0 0 0 .25rem rgba(79,209,197,.15);
  border-color: rgba(79,209,197,.45);
}

.form-floating > .form-control,
.form-floating > .form-select{
  height: calc(3.5rem + 2px);
  min-height: calc(3.5rem + 2px);
  line-height: 1.25;
}

.form-floating > label{
  color: #a9b7d0;
}

.table-dark{
  --bs-table-bg: rgba(255,255,255,.03);
}

.navbar-toggler{
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 12px;
  padding: .45rem .6rem;
  background: linear-gradient(135deg, rgba(79,209,197,.14), rgba(124,92,255,.18));
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

.navbar-toggler:focus{
  box-shadow: 0 0 0 .25rem rgba(79,209,197,.15);
}

.navbar-toggler-icon{
  width: 1.35em;
  height: 1.35em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.98%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.4' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* .navbar-brand{
  min-height: 60px;
  display: flex;
  align-items: center;
}

.brand-logo{
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

@media (max-width: 575.98px){
  .navbar-brand{
    min-height: 52px;
  }

  .brand-logo{
    height: 30px;
    max-width: 120px;
  }
} */

.navbar{
  min-height: 80px;
  padding-top: .75rem;
  padding-bottom: .75rem;
}

.navbar-brand{
  min-height: 60px;
  display: flex;
  align-items: center;
  padding: 0;
}

.brand-logo{
  height: 60px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  display: block;
}

@media (max-width: 575.98px){
  .navbar{
    min-height: 72px;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .navbar-brand{
    min-height: 60px;
  }

  .brand-logo{
    height: 60px;
    max-width: 150px;
  }
}