:root{
  --bg:#07070b;
  --panel:#0f0f16;
  --panel2:#151524;
  --text:#f3f3f7;
  --muted:#b7b7c6;
  --brand:#FC77A6; /* jouw roze */
  --brand2:#FF4F7B;
  --danger:#ff4f7b;
  --border:rgba(255,255,255,.09);
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --radius:18px;
  --glow: rgba(252,119,166,.35);
  --glow2: rgba(255,79,123,.25);
  --ring: rgba(252,119,166,.18);
  --ok: #50f5a1;
  --warn: #ffd27a;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background:
    radial-gradient(1100px 550px at 20% -10%, rgba(252,119,166,.26), transparent 60%),
    radial-gradient(1100px 600px at 80% 0%, rgba(255,79,123,.20), transparent 55%),
    radial-gradient(900px 700px at 50% 120%, rgba(252,119,166,.12), transparent 65%),
    var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

::selection{ background: rgba(252,119,166,.35); }

a{ color:inherit; text-decoration:none; }
.container{ max-width:1180px; margin:0 auto; padding:24px; }

/* --- Ambient overlays --- */
body::before{
  content:"";
  position:fixed; inset:0;
  pointer-events:none;
  opacity:.10;
  mix-blend-mode: overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
body::after{
  content:"";
  position:fixed; inset:-2px;
  pointer-events:none;
  background:
    radial-gradient(900px 420px at var(--mx, 50%) var(--my, 20%), rgba(252,119,166,.12), transparent 60%);
  opacity:.9;
  transition: opacity .2s ease;
}

/* --- Top progress bar --- */
.progress{
  position:fixed; top:0; left:0; right:0;
  height:2px;
  z-index:99;
  background: rgba(255,255,255,.04);
}
.progress > span{
  display:block;
  height:100%;
  width:0%;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  box-shadow: 0 0 18px rgba(252,119,166,.35);
}

/* --- Nav --- */
.nav{
  position:sticky; top:0; z-index:30;
  background: rgba(7,7,11,.62);
  backdrop-filter: blur(14px);
  border-bottom:1px solid rgba(255,255,255,.07);
}
.nav-inner{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  gap:14px;
  padding:14px 24px;
  max-width:1180px; margin:0 auto;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:950; letter-spacing:.2px;
}
.logo-mark{
  width:22px; height:22px; border-radius:8px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 0 0 5px rgba(252,119,166,.12), 0 18px 40px rgba(252,119,166,.20);
  position:relative;
  overflow:hidden;
}
.logo-mark::after{
  content:"";
  position:absolute; top:-120%; left:-30%;
  width:42%; height:320%;
  background: rgba(255,255,255,.22);
  transform: rotate(25deg);
  animation: shine 3.8s ease-in-out infinite;
}
@keyframes shine{
  0%,70%{ left:-40%; }
  100%{ left:140%; }
}

.nav-links{
  display:flex; gap:10px; flex-wrap:wrap; align-items:center;
  justify-content:center;
}
.pill{
  position:relative;
  padding:9px 12px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  border-radius:999px;
  color:var(--muted);
  transition: transform .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease, background .18s ease;
}
.pill:hover{
  transform: translateY(-1px);
  color:var(--text);
  border-color: rgba(252,119,166,.35);
  background: rgba(252,119,166,.06);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}
.pill.active{
  border-color: rgba(252,119,166,.40);
  background: rgba(252,119,166,.10);
  color:var(--text);
}
.pill .count{
  display:inline-flex; align-items:center; justify-content:center;
  min-width:22px; height:18px;
  padding:0 6px;
  border-radius:999px;
  margin-left:6px;
  font-size:12px;
  border:1px solid rgba(252,119,166,.35);
  background: rgba(252,119,166,.10);
  color: var(--text);
}

.nav-right{
  display:flex; align-items:center; gap:10px;
  justify-content:flex-end;
}
.icon-btn{
  width:38px; height:38px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  color:var(--text);
  display:inline-flex; align-items:center; justify-content:center;
  cursor:pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.icon-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(252,119,166,.35);
  background: rgba(252,119,166,.06);
  box-shadow: 0 14px 34px rgba(0,0,0,.40);
}
.btn-login{
  border:0;
  height:38px;
  padding:0 14px;
  border-radius:999px;
  font-weight:950;
  cursor:pointer;
  color:#0b0b10;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}
.btn-login:hover{
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow: 0 18px 50px rgba(252,119,166,.18);
}

/* --- Hero --- */
.hero{
  margin-top:22px;
  padding:38px;
  border-radius: 26px;
  position:relative;
  overflow:hidden;
  box-shadow: 0 22px 70px rgba(0,0,0,.62);
  border: 1px solid rgba(255,255,255,.07);
  background: linear-gradient(180deg, rgba(18,18,26,.78), rgba(18,18,26,.34));
}
.hero::before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(560px 260px at 18% 12%, rgba(252,119,166,.22), transparent 65%),
    radial-gradient(420px 220px at 80% 18%, rgba(255,79,123,.18), transparent 60%);
  opacity:.95;
  pointer-events:none;
}
.hero::after{
  content:"";
  position:absolute; inset:-60px;
  background: conic-gradient(from 180deg at 50% 50%,
      rgba(252,119,166,.12),
      rgba(255,79,123,.08),
      rgba(252,119,166,.12));
  filter: blur(34px);
  opacity:.55;
  animation: floaty 8s ease-in-out infinite;
  pointer-events:none;
}
@keyframes floaty{
  0%,100%{ transform: translate3d(-8px,-8px,0) rotate(-2deg); }
  50%{ transform: translate3d(10px,12px,0) rotate(2deg); }
}

.hero-inner{ position:relative; z-index:2; display:grid; grid-template-columns: 1.35fr .65fr; gap:18px; align-items:center; }
@media (max-width: 920px){ .hero-inner{ grid-template-columns: 1fr; } }

.kicker{
  display:inline-flex; align-items:center; gap:8px;
  padding:7px 11px;
  border:1px solid rgba(252,119,166,.35);
  background: rgba(252,119,166,.10);
  border-radius:999px;
  font-size:13px;
  width:fit-content;
}
.hero h1{
  margin:14px 0 10px;
  font-size:52px;
  line-height:1.00;
  letter-spacing:-.6px;
}
.gradient-word{
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero p{
  margin:0 0 18px;
  color:rgba(243,243,247,.82);
  max-width:72ch;
}
.actions{ display:flex; gap:12px; flex-wrap:wrap; align-items:center; }

.btn{
  border:0;
  padding:12px 16px;
  border-radius:14px;
  font-weight:950;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:10px;
  position:relative;
  overflow:hidden;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, border-color .18s ease, background .18s ease;
}
.btn-primary{
  color:#0b0b10;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 16px 50px rgba(252,119,166,.14);
}
.btn-primary:hover{ transform: translateY(-2px); filter: brightness(1.06); }
.btn-primary::after{
  content:"";
  position:absolute; top:-120%; left:-30%;
  width:40%; height:320%;
  background: rgba(255,255,255,.22);
  transform: rotate(25deg);
  transition: left .6s ease;
}
.btn-primary:hover::after{ left:120%; }

.btn-ghost{
  color:var(--text);
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
}
.btn-ghost:hover{
  transform: translateY(-2px);
  border-color: rgba(252,119,166,.35);
  background: rgba(252,119,166,.06);
  box-shadow: 0 18px 60px rgba(0,0,0,.48);
}

/* --- Sections + reveal --- */
.section{ margin-top:28px; }
.section-title{
  margin:0 0 10px;
  font-size:22px;
  letter-spacing:.2px;
}
.section-sub{ margin:0 0 14px; color:var(--muted); max-width:78ch; }

.reveal{
  opacity:0;
  transform: translateY(20px);
  filter: blur(2px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1), filter .75s ease;
  transition-delay: var(--d, 0ms);
}
.reveal.in{
  opacity:1;
  transform: translateY(0);
  filter: blur(0);
}

/* --- Fancy gradient border wrapper --- */
.neo{
  position:relative;
  border-radius: 22px;
}
.neo::before{
  content:"";
  position:absolute; inset:-1px;
  border-radius: inherit;
  background: conic-gradient(from 180deg,
    rgba(252,119,166,.40),
    rgba(255,79,123,.20),
    rgba(252,119,166,.10),
    rgba(252,119,166,.40));
  opacity:.0;
  filter: blur(6px);
  transition: opacity .22s ease;
}
.neo:hover::before{ opacity:.8; }

/* --- Why/Terminal split section --- */
.split{
  display:grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 22px;
  align-items:center;
}
@media (max-width: 960px){
  .split{ grid-template-columns: 1fr; }
}

.perks{
  display:flex;
  flex-direction:column;
  gap: 28px; /* meer afstand */
}
.perk{
  display:flex;
  gap: 16px;
  align-items:flex-start;
  padding: 12px 10px;
  border-radius: 18px;
  border: 1px solid transparent;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.perk:hover{
  transform: translateY(-3px);
  border-color: rgba(252,119,166,.22);
  background: rgba(252,119,166,.05);
}
.perk-icon{
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(252,119,166,.28);
  background: rgba(252,119,166,.10);
  box-shadow: 0 18px 55px rgba(0,0,0,.55);
  position:relative;
  overflow:hidden;
  flex: 0 0 auto;
}
.perk-icon::after{
  content:"";
  position:absolute; top:-120%; left:-30%;
  width:40%; height:320%;
  background: rgba(255,255,255,.16);
  transform: rotate(25deg);
  transition: left .7s ease;
}
.perk:hover .perk-icon::after{ left:130%; }
.perk h3{
  margin: 0 0 6px;
  font-size: 22px;
  letter-spacing:-.2px;
}
.perk p{
  margin:0;
  color: var(--muted);
  line-height:1.55;
}

/* --- Terminal card --- */
.terminal{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(10,10,14,.55);
  overflow:hidden;
  box-shadow: 0 28px 90px rgba(0,0,0,.70);
}
.term-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.term-dots{
  display:flex;
  align-items:center;
  gap: 8px;
}
.dot{ width:10px; height:10px; border-radius:999px; background:#ff5f57; }
.dot.y{ background:#febc2e; }
.dot.g{ background:#28c840; }
.term-right{
  display:flex;
  align-items:center;
  gap: 10px;
}
.badge-live{
  border-radius: 12px;
  border: 1px solid rgba(252,119,166,.25);
  background: rgba(252,119,166,.08);
  padding: 8px 12px;
  font-weight: 950;
  font-size: 12px;
  display:inline-flex;
  align-items:center;
  gap: 8px;
}
.pulse{
  width: 8px; height: 8px; border-radius:999px;
  background: var(--brand2);
  box-shadow: 0 0 0 0 rgba(255,79,123,.55);
  animation: pulse 1.2s ease-in-out infinite;
}
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(255,79,123,.45); }
  70%{ box-shadow: 0 0 0 10px rgba(255,79,123,0); }
  100%{ box-shadow: 0 0 0 0 rgba(255,79,123,0); }
}

.term-body{
  padding: 14px 16px 18px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(243,243,247,.92);
  min-height: 250px;
  max-height: 320px;
  overflow:auto;
}
.log-line{
  opacity:0;
  transform: translateY(6px);
  animation: logIn .22s ease forwards;
}
@keyframes logIn{
  to{ opacity:1; transform: translateY(0); }
}
.tag{
  display:inline-block;
  min-width: 36px;
  font-weight: 950;
  letter-spacing: .3px;
}
.tag.inf{ color: var(--brand2); }
.tag.dbg{ color: var(--warn); }
.tag.ok{ color: var(--ok); }
.tag.err{ color: var(--danger); }
.muted{ color: rgba(183,183,198,.75); }

/* --- Shop cards (same as ultra) --- */
.shop-head{ text-align:center; }
.shop-head h2{ margin:0 0 8px; font-size:38px; letter-spacing:-.35px; }
.shop-head p{ margin:0; color:var(--muted); }

.search-row{
  display:flex; justify-content:center;
  margin-top:16px;
}
.input{
  width:min(560px, 100%);
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(252,119,166,.25);
  background: rgba(255,255,255,.03);
  color:var(--text);
  outline:none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.input:focus{
  border-color: rgba(252,119,166,.45);
  box-shadow: 0 0 0 7px rgba(252,119,166,.12);
}
.input:hover{ transform: translateY(-1px); }

.tabs{
  margin-top:14px;
  display:flex; gap:10px; flex-wrap:wrap;
  justify-content:center;
}
.tab{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  color:var(--muted);
  cursor:pointer;
  transition: transform .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease, background .18s ease;
}
.tab:hover{ transform: translateY(-1px); border-color: rgba(252,119,166,.30); color:var(--text); background: rgba(252,119,166,.06); }
.tab.active{
  border-color: rgba(252,119,166,.40);
  background: rgba(252,119,166,.10);
  color:var(--text);
}

.products{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:16px;
}
.product{
  grid-column: span 4;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(15,15,22,.55);
  border-radius: 24px;
  overflow:hidden;
  position:relative;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  transform-style: preserve-3d;
}
.product:hover{
  transform: translateY(-8px);
  border-color: rgba(252,119,166,.24);
  box-shadow: 0 34px 110px rgba(0,0,0,.66);
}
.product::before{
  content:"";
  position:absolute; inset:-1px;
  background:
    radial-gradient(560px 260px at var(--gx, 20%) var(--gy, 0%), rgba(252,119,166,.20), transparent 60%),
    radial-gradient(360px 220px at 90% 10%, rgba(255,79,123,.10), transparent 65%);
  opacity:0;
  transition: opacity .22s ease;
}
.product:hover::before{ opacity:1; }

.product-media{
  height:220px;
  background:
    radial-gradient(760px 260px at 30% 20%, rgba(252,119,166,.20), transparent 55%),
    radial-gradient(760px 280px at 70% 30%, rgba(255,79,123,.16), transparent 56%),
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,0));
  border-bottom:1px solid rgba(255,255,255,.08);
  position:relative;
}
.product-media .mark{
  position:absolute;
  left:16px; top:14px;
  width:66px; height:66px;
  border-radius:18px;
  background: linear-gradient(135deg, rgba(252,119,166,.22), rgba(255,79,123,.14));
  border:1px solid rgba(252,119,166,.25);
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 18px 55px rgba(0,0,0,.55);
  transform: translateZ(22px);
}
.product-media .mark span{
  font-weight:1000;
  font-size:28px;
  letter-spacing:-1px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.badges{
  position:absolute;
  right:14px; top:14px;
  display:flex; gap:8px;
  transform: translateZ(18px);
}
.badge-mini{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
  color: var(--text);
  backdrop-filter: blur(10px);
}
.badge-mini.red{
  border-color: rgba(252,119,166,.35);
  background: rgba(252,119,166,.10);
}
.badge-mini.warn{
  border-color: rgba(255,196,71,.25);
  background: rgba(255,196,71,.08);
  color:#ffd27a;
}

.product-body{
  padding:16px;
  position:relative;
  z-index:2;
}
.product-title{ margin:0; font-size:18px; font-weight:950; transform: translateZ(14px); }
.product-desc{ margin:8px 0 12px; color:var(--muted); font-size:13px; transform: translateZ(10px); }
.meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.price{
  font-weight:1000;
  font-size:22px;
  letter-spacing:-.2px;
  color: var(--brand2);
}
.bullets{
  margin:10px 0 0;
  padding:0;
  list-style:none;
  color: var(--muted);
  display:grid;
  gap:8px;
  font-size:13px;
}
.bullets li{ display:flex; gap:10px; align-items:center; }
.check{
  width:18px; height:18px;
  border-radius:999px;
  border:1px solid rgba(252,119,166,.35);
  background: rgba(252,119,166,.10);
  display:inline-flex; align-items:center; justify-content:center;
  color: var(--brand2);
  font-weight:1000;
  line-height:1;
}

.purchase{
  margin-top:14px;
  width:100%;
  border-radius:14px;
  padding:12px 14px;
  border:1px solid rgba(252,119,166,.35);
  background: rgba(255,255,255,.02);
  color: var(--brand2);
  font-weight:1000;
  cursor:pointer;
  position:relative;
  overflow:hidden;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.purchase::after{
  content:"";
  position:absolute; top:-120%; left:-30%;
  width:40%; height:320%;
  background: rgba(255,255,255,.16);
  transform: rotate(25deg);
  transition: left .7s ease;
}
.purchase:hover{
  transform: translateY(-2px);
  background: rgba(252,119,166,.10);
  box-shadow: 0 18px 60px rgba(252,119,166,.12);
}
.purchase:hover::after{ left:130%; }

/* --- Toast --- */
.toast-wrap{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:120;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.toast{
  min-width: 260px;
  max-width: 360px;
  padding:12px 14px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(10,10,14,.72);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 70px rgba(0,0,0,.65);
  transform: translateY(8px);
  opacity:0;
  animation: toastIn .35s ease forwards;
}
.toast .t-title{ font-weight:950; margin-bottom:4px; }
.toast .t-body{ color:var(--muted); font-size:13px; }
.toast .t-dot{
  display:inline-block;
  width:8px; height:8px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 0 0 4px rgba(252,119,166,.12);
  margin-right:8px;
  vertical-align:middle;
}
@keyframes toastIn{
  to{ transform: translateY(0); opacity:1; }
}
@keyframes toastOut{
  to{ transform: translateY(8px); opacity:0; }
}

/* --- Responsive --- */
@media (max-width: 1050px){
  .product{ grid-column: span 6; }
}
@media (max-width: 660px){
  .hero{ padding:26px; }
  .hero h1{ font-size:38px; }
  .nav-inner{ grid-template-columns: 1fr auto; }
  .nav-links{ display:none; }
  .product{ grid-column: span 12; }
}

.footer{
  margin:52px 0 26px;
  color:var(--muted);
  font-size:13px;
  text-align:center;
  opacity:.9;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation:none !important; transition:none !important; }
  body::after{ display:none; }
}
