/* style.css */
/* Supa Nice — minimal, cooler, responsive one-pager (no yellow, no clutter) */

* { 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: rgba(255,255,255,0.92);
  background: #0a0a0d;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Background atmosphere (subtle, premium) */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 600px at 20% 15%, rgba(120, 92, 255, 0.22), transparent 55%),
    radial-gradient(800px 520px at 80% 35%, rgba(0, 197, 255, 0.16), transparent 55%),
    radial-gradient(900px 650px at 35% 90%, rgba(255, 255, 255, 0.06), transparent 60%);
  opacity: 0.95;
}

body::after{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;                 /* light “film grain” */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* Layout */
.wrap{
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: clamp(1.25rem, 3vw, 2.5rem);
}

/* Card */
.card{
  width: min(880px, 100%);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(14, 14, 18, 0.72);
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 90px rgba(0,0,0,0.45);
  padding: clamp(1.25rem, 3vw, 2.25rem);
}

/* Top row */
.top{
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.logo{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.22), transparent 55%),
    linear-gradient(135deg, rgba(120,92,255,0.85), rgba(0,197,255,0.75));
  box-shadow: 0 18px 50px rgba(120,92,255,0.16);
}

.title h1{
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  font-weight: 720;
}

.kicker{
  margin: 0.15rem 0 0 0;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.62);
}

/* Copy */
.tagline{
  margin: 0.2rem 0 1.25rem 0;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: rgba(255,255,255,0.86);
  max-width: 65ch;
}

.hi{
  color: rgba(255,255,255,0.96);
  text-decoration: underline;
  text-decoration-color: rgba(0,197,255,0.5);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

/* Bullets */
.bullets{
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem 0;
  display: grid;
  gap: 0.55rem;
}

.bullets li{
  position: relative;
  padding-left: 1.1rem;
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
}

.bullets li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: rgba(255,255,255,0.28);
  box-shadow: 0 0 0 3px rgba(0,197,255,0.10);
}

/* Buttons */
.actions{
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  text-decoration: none;
  font-weight: 650;
  letter-spacing: -0.01em;
  transition: transform 120ms ease, background-color 120ms ease, border-color 120ms ease, opacity 120ms ease;
}

.btn:hover{ transform: translateY(-1px); }

.primary{
  background: rgba(255,255,255,0.92);
  color: #0a0a0d;
  border-color: rgba(255,255,255,0.18);
}
.primary:hover{ opacity: 0.95; }

.ghost{
  background: transparent;
  color: rgba(255,255,255,0.86);
}
.ghost:hover{
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.22);
}

/* Footer */
.footer{
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 1rem;
}

.meta{
  font-size: 0.92rem;
  color: rgba(255,255,255,0.56);
}

/* Responsive refinement: on wide screens, make it feel more “editorial” */
@media (min-width: 880px){
  .card{ padding: 2.4rem; }
  .bullets{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1.25rem;
    margin-bottom: 1.9rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  html:focus-within { scroll-behavior: auto; }
  .btn{ transition: none; }
}