/* ========== Base ========== */
:root{
  --bg: #0b0f14;
  --panel: rgba(255,255,255,.06);
  --panel-2: rgba(255,255,255,.08);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.68);
  --line: rgba(255,255,255,.12);
  --glow: 0 0 25px rgba(120, 255, 210, .22), 0 0 60px rgba(120, 255, 210, .08);
  --accent: #7dffd5;
  --accent-2: #a48bff;
  --danger: #ff5577;

  --radius: 20px;
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --max: 1100px;
}

*{ box-sizing: border-box; }
html,body{ height: 100%; }
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);
  background: radial-gradient(1200px 600px at 20% -10%, rgba(164,139,255,.18), transparent 60%),
              radial-gradient(900px 500px at 90% 0%, rgba(125,255,213,.14), transparent 55%),
              linear-gradient(180deg, #070a0f, #0b0f14);
  overflow-x: hidden;
}

a{ color: inherit; text-decoration: none; }
ul{ margin: .6rem 0 0; padding-left: 1.1rem; }
li{ color: var(--muted); margin: .35rem 0; }

.wrap{
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.skip{
  position: absolute;
  left: -9999px;
  top: 12px;
  background: #fff;
  color: #000;
  padding: 8px 10px;
  border-radius: 10px;
  z-index: 999;
}
.skip:focus{ left: 12px; }

/* ========== Topbar ========== */
.topbar{
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(8,10,14,.65);
  border-bottom: 1px solid var(--line);
}
.topbar__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand__mark{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(125,255,213,.18), rgba(164,139,255,.18));
  border: 1px solid var(--line);
  box-shadow: var(--glow);
  font-weight: 800;
}
.brand__text small{
  display: block;
  color: var(--muted);
  margin-top: 2px;
}

.nav{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a{
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
}
.nav a:hover{
  color: var(--text);
  border-color: var(--line);
  background: rgba(255,255,255,.04);
}
.nav__cta{
  color: #071016 !important;
  background: linear-gradient(135deg, rgba(125,255,213,.95), rgba(164,139,255,.95));
  border-color: transparent !important;
  font-weight: 700;
}

/* ========== Hero ========== */
.hero{
  position: relative;
  padding: 64px 0 28px;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

/* “stealth” stripes background */
.hero__bg{
  position: absolute;
  inset: 0;
  opacity: .55;
  background:
    linear-gradient(180deg, rgba(0,0,0,.45), transparent 35%, rgba(0,0,0,.65)),
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,.045) 0px,
      rgba(255,255,255,.045) 10px,
      transparent 10px,
      transparent 24px
    );
  z-index: -2;
}
.hero::after{
  content:"";
  position: absolute;
  inset: -200px -100px -100px -100px;
  background:
    radial-gradient(500px 260px at 70% 20%, rgba(125,255,213,.18), transparent 60%),
    radial-gradient(560px 300px at 30% 35%, rgba(164,139,255,.18), transparent 60%);
  z-index: -1;
  filter: blur(10px);
}

.hero__grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
}

.badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  color: var(--muted);
}
.dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: var(--glow);
}

h1{
  margin: 14px 0 10px;
  line-height: 1.02;
  letter-spacing: -.02em;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}
.muted{ color: var(--muted); font-weight: 600; }
.glow{ text-shadow: 0 0 14px rgba(125,255,213,.22); }

.lead{
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 60ch;
}

.hero__actions{
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  box-shadow: none;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  font-weight: 700;
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.06); }
.btn:active{ transform: translateY(0px); }

.btn--primary{
  background: linear-gradient(135deg, rgba(125,255,213,.95), rgba(164,139,255,.92));
  border-color: transparent;
  color: #061015;
  box-shadow: var(--glow);
}
.btn--ghost{
  background: rgba(255,255,255,.03);
}

.stats{
  margin-top: 18px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.stat{
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  min-width: 160px;
}
.stat__num{
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -.02em;
}
.stat__label{
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: .95rem;
}

/* ========== Card / Toilet illustration ========== */
.hero__card{
  position: relative;
}
.card{
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card--glass{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  backdrop-filter: blur(12px);
}
.card__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
.pill{
  font-size: .85rem;
  color: var(--muted);
  background: rgba(0,0,0,.25);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
}
.signal{
  display: inline-flex;
  gap: 4px;
  align-items: flex-end;
}
.signal i{
  display:block;
  width: 4px;
  border-radius: 3px;
  background: rgba(125,255,213,.85);
  box-shadow: 0 0 12px rgba(125,255,213,.24);
}
.signal i:nth-child(1){ height: 8px; opacity: .55; }
.signal i:nth-child(2){ height: 12px; opacity: .75; }
.signal i:nth-child(3){ height: 16px; }

.card__body{
  padding: 18px 18px 20px;
}
.card__title{
  margin: 0 0 6px;
  font-size: 1.2rem;
}
.card__text{
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Little “toilet” made with CSS shapes */
.toilet{
  position: relative;
  height: 230px;
  display: grid;
  place-items: center;
  padding: 16px 0 0;
}
.toilet__lid{
  width: 180px;
  height: 55px;
  border-radius: 22px 22px 18px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,.16));
  border: 1px solid rgba(255,255,255,.22);
  transform: rotate(-2deg);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.toilet__bowl{
  width: 190px;
  height: 120px;
  margin-top: -18px;
  border-radius: 30px 30px 44px 44px;
  background: linear-gradient(180deg, rgba(255,255,255,.26), rgba(255,255,255,.10));
  border: 1px solid rgba(255,255,255,.18);
  position: relative;
}
.toilet__bowl::after{
  content:"";
  position: absolute;
  inset: 18px 30px 20px 30px;
  border-radius: 24px 24px 36px 36px;
  background: radial-gradient(80px 50px at 50% 35%, rgba(125,255,213,.25), rgba(0,0,0,.25));
  border: 1px solid rgba(255,255,255,.10);
}
.toilet__base{
  width: 150px;
  height: 70px;
  margin-top: -14px;
  border-radius: 24px 24px 34px 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.14);
}
.toilet__shadow{
  width: 240px;
  height: 26px;
  margin-top: -10px;
  border-radius: 999px;
  background: radial-gradient(closest-side, rgba(0,0,0,.55), transparent);
  filter: blur(1px);
  opacity: .8;
}

.meter{
  display: grid;
  gap: 8px;
  margin: 10px 0 14px;
}
.meter span{
  color: var(--muted);
  font-size: .9rem;
}
.meter__bar{
  height: 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.25);
  overflow: hidden;
}
.meter__bar b{
  display:block;
  height: 100%;
  width: 82%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(125,255,213,.9), rgba(164,139,255,.9));
  box-shadow: var(--glow);
}

.chips{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip{
  font-size: .85rem;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--muted);
}

/* Footprints */
.footprints{
  position: absolute;
  right: 12px;
  bottom: -10px;
  display: flex;
  gap: 10px;
  opacity: .5;
  filter: blur(.2px);
}
.footprints span{
  display: inline-block;
  transform: rotate(12deg);
  animation: drift 3.8s ease-in-out infinite;
}
.footprints span:nth-child(2){ animation-delay: .2s; }
.footprints span:nth-child(3){ animation-delay: .4s; }
.footprints span:nth-child(4){ animation-delay: .6s; }
.footprints span:nth-child(5){ animation-delay: .8s; }
.footprints span:nth-child(6){ animation-delay: 1s; }

@keyframes drift{
  0%,100%{ transform: translateY(0) rotate(12deg); opacity: .35; }
  50%{ transform: translateY(-6px) rotate(12deg); opacity: .65; }
}

/* ========== Sections ========== */
.section{
  padding: 54px 0;
}
.section--alt{
  background: rgba(255,255,255,.02);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__head{
  margin-bottom: 18px;
}
.section__head h2{
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -.02em;
}
.section__head p{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 75ch;
}

.grid3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.tile{
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
}
.tile h3{ margin: 0 0 6px; }
.tile p{ margin: 0; color: var(--muted); line-height: 1.6; }

/* Features */
.features{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
}
.feature{
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.feature__icon{
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(125,255,213,.18), rgba(164,139,255,.18));
  border: 1px solid var(--line);
  box-shadow: var(--glow);
  font-size: 1.5rem;
}
.feature h3{ margin: 0; }
.feature p{ margin: 6px 0 0; color: var(--muted); line-height: 1.6; }
.fineprint{ color: rgba(255,255,255,.5); font-size: .85rem; }

/* Pricing */
.pricing{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.price{
  position: relative;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
}
.price h3{ margin: 0 0 6px; }
.price__tag{
  margin: 0 0 12px;
  color: var(--muted);
}
.price--featured{
  background: linear-gradient(180deg, rgba(125,255,213,.12), rgba(255,255,255,.03));
  border-color: rgba(125,255,213,.28);
  box-shadow: var(--shadow), var(--glow);
  transform: translateY(-6px);
}
.ribbon{
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(125,255,213,.18);
  border: 1px solid rgba(125,255,213,.35);
  color: var(--text);
  font-weight: 800;
  font-size: .85rem;
}

/* CTA + form */
.cta{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
}
.form{
  display: grid;
  gap: 10px;
}
label span{
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: .9rem;
}
input{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.25);
  color: var(--text);
  outline: none;
}
input:focus{
  border-color: rgba(125,255,213,.45);
  box-shadow: 0 0 0 4px rgba(125,255,213,.10);
}

/* Footer */
.footer{
  padding: 28px 0 40px;
}
.footer__inner{
  display: grid;
  gap: 6px;
  color: var(--muted);
}
.footer__small{ font-size: .9rem; }

/* ========== Responsive ========== */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .pricing{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .cta{ grid-template-columns: 1fr; }
  .price--featured{ transform: none; }
}
