/* Brand bits */
.power{
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent2);
  box-shadow: 0 0 0 4px rgba(77,255,154,.16);
  flex: 0 0 auto;
}
.tag{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(77,210,255,.22);
  background: rgba(77,210,255,.10);
  color: rgba(234,241,255,.9);
  font-size: 12px;
  user-select:none;
}

/* Side Zello tab */
.side-tab{
  position: fixed;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(77,255,154,.18);
  border: 1px solid rgba(77,255,154,.35);
  color: var(--fg);
  padding: 12px 22px;
  border-radius: 14px 0 0 14px;
  transition: right .25s ease;
  z-index: 9999;
  text-align: center;
  line-height: 1.15;
  box-shadow: var(--shadow);
  user-select:none;
  font-weight: 900;
  letter-spacing: .2px;
}
.side-tab:hover{ right: 0; }
.side-tab span{ display:block; }

/* HERO */
.hero{
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 6px;
  background:
    linear-gradient(
      180deg,
      rgba(5,7,11,.10) 0%,
      rgba(5,7,11,.35) 55%,
      rgba(5,7,11,.75) 100%
    ),
    url("../img/carousel-1.webp") center / cover no-repeat;
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}
.hero::after{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(900px 500px at 15% 20%, rgba(77,210,255,.18), transparent 60%),
    radial-gradient(800px 500px at 75% 35%, rgba(77,255,154,.10), transparent 65%);
  pointer-events:none;
}
.hero *{ position: relative; }

/* Hero pills */
.hero-pills{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 12px;
  padding: 10px 14px;
  margin-bottom: 10px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.12);
}
.pill{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.28);
  color: rgba(234,241,255,.92);
  font-size: 13px;
  user-select:none;
  white-space: nowrap;
}
.dot{
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(77,210,255,.14);
}

/* Hero text section under image */
.hero-content{
  padding: 34px 0 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero-text{ text-align: center; }
.hero-text p{ margin-left:auto; margin-right:auto; }

h1{
  margin: 0 0 10px;
  font-size: clamp(34px, 4.2vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-shadow: 0 12px 28px rgba(0,0,0,.55);
  text-align: center;
}
.hero-content p{
  margin: 0 0 18px;
  color: rgba(234,241,255,.84);
  max-width: 70ch;
  font-size: 16px;
  text-shadow: 0 10px 22px rgba(0,0,0,.45);
  text-align: center;
}

/* Buttons */
.cta{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  justify-content: center;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.28);
  color: var(--fg);
  font-weight: 750;
  font-size: 14px;
  user-select:none;
}
.btn:hover{ background: rgba(255,255,255,.08); text-decoration:none; }
.btn.primary{
  border-color: rgba(77,210,255,.35);
  background: linear-gradient(135deg, rgba(77,210,255,.22), rgba(77,255,154,.12));
}
.btn.primary:hover{
  background: linear-gradient(135deg, rgba(77,210,255,.28), rgba(77,255,154,.16));
  border-color: rgba(77,255,154,.38);
}

/* Typography blocks */
.section-title{
  margin: 0 0 10px;
  font-size: 26px;
  letter-spacing: -0.02em;
}
.lead{
  color: var(--muted);
  margin: 0 0 14px;
  font-size: 15px;
  max-width: 70ch;
}

/* Overlays + bullets */
.overlay{
  background: linear-gradient(180deg, rgba(0,0,0,.30), rgba(0,0,0,.52));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.overlay.soft{
  background: rgba(0,0,0,.26);
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}

.bullets{
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display:grid;
  gap: 10px;
}
.bullets li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  color: rgba(234,241,255,.88);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.bullets li:last-child{ border-bottom: 0; }
.chk{
  width: 18px; height: 18px; border-radius: 6px;
  background: rgba(77,255,154,.16);
  border: 1px solid rgba(77,255,154,.32);
  margin-top: 2px;
  flex: 0 0 auto;
}

/* Photo blocks */
.photo{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  min-height: 440px;
  background: #0a0f18;
  position: relative;
}
.photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
  filter: saturate(1.08) contrast(1.06);
  transform: scale(1.01);
}
.photo .cap{
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(0,0,0,.42);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(234,241,255,.86);
  font-size: 13px;
  backdrop-filter: blur(8px);
  text-align: center;
  white-space: nowrap;
}

/* Vendors */
.vendor-strip{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.vendor{
  position: relative;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  min-height: 160px;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.vendor::before{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(600px 220px at 30% 20%, rgba(77,210,255,.14), transparent 60%);
  opacity: .9;
}
.vendor a{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 16px;
  text-align: center;
  text-decoration:none;
}
.vendor-logo{
  max-width: 140px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.45));
  opacity: .95;
}
.vendor .name{
  font-weight: 850;
  letter-spacing: .15px;
  margin-top: 4px;
}
.vendor .desc{
  color: var(--muted);
  font-size: 13px;
  max-width: 30ch;
}
.vendor:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(0,0,0,.55);
  border-color: rgba(77,210,255,.35);
}
.vendor:hover .vendor-logo{ opacity: 1; }

/* Footer */
footer{
  padding: 34px 0 46px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: var(--muted);
  font-size: 13px;
}
.foot{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  justify-content: space-between;
  align-items:center;
}
