/* =====================================================
   TROZERO HOMEPAGE (app-first dark)
===================================================== */

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body{
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0F1115;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

:root{
  --bg:#0F1115;
  --card: rgba(26,29,36,0.70);
  --stroke: rgba(255,255,255,0.10);
  --muted: rgba(255,255,255,0.74);

  --orange:#F47A2C;
  --orange2:#ff6733;
  --teal:#2ED3C6;

  --r: 18px;
}

.container{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.topbar{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(15,17,21,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
}
.topbar__inner{
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: .2px;
}
.brand__mark{
  width: 34px; height: 34px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}
.nav{
  display: none;
  gap: 16px;
}
.nav__link{
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-weight: 650;
  font-size: 14px;
}
.nav__link:hover{ color: #fff; }

.topbar__actions{
  display: none;
  gap: 10px;
  align-items: center;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 14px;
  min-height: 44px;
  text-decoration: none;
  font-weight: 750;
  border: 1px solid transparent;
  transition: transform .12s ease, filter .2s ease, background .2s ease;
}
.btn:active{ transform: scale(0.98); }

.btn--primary{
  background: linear-gradient(180deg, var(--orange), var(--orange2));
  color: #fff;
}
.btn--primary:hover{ filter: brightness(1.06); }

.btn--ghost{
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
  color: #fff;
}
.btn--ghost:hover{ background: rgba(255,255,255,0.10); }

.btn--full{ width: 100%; }

/* HERO */
.hero{
  position: relative;
  min-height: 100vh;
  padding-top: 64px; /* topbar */
  overflow: hidden;
}
.hero__bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 900ms ease;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.05);
}
body.loaded .hero__bg{ opacity: 1; }

.hero__bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(80% 70% at 70% 15%, rgba(46,211,198,0.18), transparent 55%),
    radial-gradient(70% 70% at 18% 80%, rgba(244,122,44,0.18), transparent 60%),
    linear-gradient(to bottom, rgba(15,17,21,0.25), rgba(15,17,21,0.90));
}

.hero__content{
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px 0 26px;
}

.hero__title{
  font-size: 42px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.6px;
  text-shadow: 0 18px 60px rgba(0,0,0,0.55);
  margin-bottom: 18px;
}

/* PRICING BLOCKS */
.pricing{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding-bottom: 26px;
}

.plan{
  border-radius: 20px;
  background: rgba(26,29,36,0.72);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(16px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
  padding: 18px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plan--featured{
  border-color: rgba(46,211,198,0.20);
  box-shadow:
    0 25px 70px rgba(0,0,0,0.55),
    0 0 0 1px rgba(46,211,198,0.10) inset;
}

.plan__badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  background: rgba(244,122,44,0.20);
  border: 1px solid rgba(244,122,44,0.26);
}

.plan__name{
  text-align: center;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: .2px;
}
.plan__desc{
  text-align: center;
  color: rgba(255,255,255,0.78);
  margin-top: -6px;
}

.plan__list{
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 6px;
}
.plan__list li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255,255,255,0.82);
}
.plan__dot{
  width: 18px; height: 18px;
  border-radius: 999px;
  background: rgba(46,211,198,0.18);
  border: 1px solid rgba(46,211,198,0.28);
  flex: 0 0 18px;
  margin-top: 2px;
}

.plan__cta{
  margin-top: auto;
  display: grid;
  gap: 10px;
}
.plan__sub{
  text-align: center;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
}
.plan__sub:hover{ text-decoration: underline; }

@media (min-width: 900px){
  .nav{ display: flex; }
  .topbar__actions{ display: flex; }

  .hero__content{
    justify-content: flex-end;
    padding: 54px 0 40px;
  }
  .hero__title{ font-size: 54px; }

  .pricing{
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    align-items: stretch;
  }
}
