:root{
  --printngo-red: rgb(230, 35, 58);
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(0,0,0,.22);
  --glass: rgba(255,255,255,.10);
  --glass-2: rgba(255,255,255,.14);
}

*{ box-sizing: border-box; }

html, body{
  height: 100%;
}

body{
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--printngo-red);
  color: var(--white);
  overflow-x: hidden;
}

/* ===== Background animated ===== */
.bg{
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-grid{
  position: absolute;
  inset: -20%;
  opacity: .20;
  background-image:
    linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 48px 48px;
  transform: rotate(8deg);
  animation: gridDrift 18s ease-in-out infinite;
}

@keyframes gridDrift{
  0%, 100% { transform: rotate(8deg) translate3d(0,0,0); }
  50% { transform: rotate(8deg) translate3d(-40px, -30px, 0); }
}

.blob{
  position: absolute;
  width: 520px;
  height: 520px;
  filter: blur(30px);
  opacity: .30;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.55), rgba(255,255,255,0) 60%);
  animation: blobFloat 10s ease-in-out infinite;
}

.blob-1{
  top: -140px;
  left: -120px;
}

.blob-2{
  bottom: -180px;
  right: -160px;
  animation-duration: 12s;
}

@keyframes blobFloat{
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(30px, 20px, 0) scale(1.05); }
}

/* ===== Layout ===== */
.wrap{
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px 16px;
  position: relative;
  z-index: 1;
}

.card{
  width: min(980px, 100%);
  padding: 40px 34px 22px;
}

.hero{
  text-align: center;
  padding: 6px 8px 18px;
}

.logo{
  width: 160px;
  max-width: 70vw;
  margin: 6px auto 40px;
  display: block;
  transform-origin: center;
}

.title{
  font-size: clamp(1.8rem, 3.6vw, 3.2rem);
  line-height: 1.08;
  font-weight: 800;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

.underline{
  position: relative;
  display: inline-block;
  padding: 0 .12em;
}

.underline:after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: .08em;
  height: .34em;
  background: rgba(255,255,255,.22);
  border-radius: 999px;
  z-index: -1;
  transform: skewX(-10deg);
}

.subtitle{
  max-width: 760px;
  margin: 0 auto 20px;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.5;
  opacity: .95;
}

/* Buttons */
.actions{
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 18px 0 18px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .01em;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
  border: 1px solid rgba(255,255,255,.22);
  user-select: none;
}

.btn.primary{
  background: #ffffff;
  color: rgb(25,25,25);
  border-color: rgba(255,255,255,.60);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.btn.primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
}

.btn.ghost{
  background: rgba(0,0,0,.12);
  color: #fff;
}

.btn.ghost:hover{
  transform: translateY(-2px);
  background: rgba(0,0,0,.18);
}

/* Pills */
.trust{
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

.pill{
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.12);
  border: 1px solid rgba(255,255,255,.16);
  font-weight: 600;
  font-size: .95rem;
}

/* Features */
.features{
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 10px 8px 8px;
}

.feature{
  display: flex;
  gap: 12px;
  padding: 18px 16px;
  border-radius: 22px;
  background: rgba(0,0,0,.10);
  border: 1px solid rgba(255,255,255,.14);
}

.icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.16);
  flex: 0 0 auto;
  font-size: 1.2rem;
}

.feature h3{
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 800;
}

.feature p{
  margin: 0;
  font-size: .95rem;
  line-height: 1.45;
  opacity: .95;
}

.footer{
  text-align: center;
  padding: 16px 6px 4px;
}

.small{
  margin: 0;
  opacity: .9;
  font-size: .95rem;
}

.small a{
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== Reveal animations ===== */
.reveal{
  opacity: 0;
  transform: translateY(14px);
}

.reveal.is-visible{
  animation: revealUp .72s cubic-bezier(.2,.8,.2,1) forwards;
}

@keyframes revealUp{
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* subtle logo pulse */
.logo.reveal.is-visible{
  animation: revealUp .72s cubic-bezier(.2,.8,.2,1) forwards, logoPulse 6s ease-in-out infinite;
  animation-delay: var(--d, 0ms), 1200ms;
}

@keyframes logoPulse{
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

/* Responsive */
@media (max-width: 900px){
  .features{
    grid-template-columns: 1fr;
  }
  .card{
    padding: 34px 18px 18px;
  }
}
