/* Splash styles (3Dprintify) */
:root{
  --bg:#0c0d10;
  --text: rgba(255,255,255,.92);
  --accent:#ff7a00;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow:hidden;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 2px, transparent 2px, transparent 6px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 2px, transparent 2px, transparent 6px);
}

a{ color: var(--accent); text-decoration:none; }

/* FX */
.fx{ position:fixed; inset:0; pointer-events:none; z-index:0; }
.fx::before{
  content:"";
  position:absolute; inset:-20%;
  background:
    radial-gradient(1200px 520px at 20% 10%, rgba(255,122,0,.10), transparent 62%),
    radial-gradient(900px 420px at 80% 0%, rgba(255,255,255,.06), transparent 58%),
    radial-gradient(1000px 800px at 50% 120%, rgba(0,0,0,.72), transparent 60%);
  opacity:.95;
}

/* Smoke */
.smoke{ position:absolute; inset:0; opacity:.55; filter: blur(24px); mix-blend-mode: screen; }
.smoke i{
  position:absolute; width:48vmin; height:48vmin; border-radius:50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,122,0,.16), rgba(255,255,255,.06) 45%, transparent 70%);
  animation: drift 14s linear infinite;
}
.smoke i:nth-child(1){ top:-15vmin; left:-10vmin; animation-duration: 18s; opacity:.55; }
.smoke i:nth-child(2){ top:10vmin; right:-18vmin; animation-duration: 22s; opacity:.45; }
.smoke i:nth-child(3){ bottom:-22vmin; left:20vmin; animation-duration: 26s; opacity:.40; }
.smoke i:nth-child(4){ bottom:5vmin; right:10vmin; animation-duration: 19s; opacity:.35; }
@keyframes drift{
  0%{ transform: translate3d(-2vmin,0,0) scale(1) rotate(0deg); }
  50%{ transform: translate3d(4vmin,-3vmin,0) scale(1.04) rotate(12deg); }
  100%{ transform: translate3d(-2vmin,0,0) scale(1) rotate(0deg); }
}

/* Sparks */
.sparks{ position:absolute; inset:0; opacity:.6; }
.sparks span{
  position:absolute; width:3px; height:3px; border-radius:999px;
  background: rgba(255,122,0,.85);
  box-shadow: 0 0 12px rgba(255,122,0,.45);
  animation: rise 6.5s linear infinite;
}
.sparks span:nth-child(odd){
  background: rgba(255,255,255,.55);
  box-shadow: 0 0 10px rgba(255,255,255,.18);
}
@keyframes rise{
  0%{ transform: translateY(18vh) scale(.9); opacity:0; }
  15%{ opacity:.75; }
  100%{ transform: translateY(-110vh) scale(1.05); opacity:0; }
}

/* Layout */
.wrap{ position:relative; z-index:1; min-height:100%; display:grid; place-items:center; padding:28px 16px; }
.panel{
  width:min(980px, calc(100% - 24px));
  background: rgba(22,26,32,.40);
  border:1px solid rgba(255,255,255,.12);
  border-radius:24px;
  padding: clamp(22px, 4vw, 54px);
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation: panelFloat 6.5s ease-in-out infinite;
}
@keyframes panelFloat{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}

.top{ display:flex; align-items:center; gap:18px; justify-content:space-between; flex-wrap:wrap; margin-bottom: 18px; }
.brand{ display:flex; align-items:center; gap:16px; min-width:260px; }
.logo{
  width:78px; height:78px;
  border-radius:18px;
  background: rgba(0,0,0,.30);
  border: 1px solid rgba(255,255,255,.10);
  display:grid; place-items:center;
  overflow:hidden;
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
  transition: .25s ease;
  position:relative;
}
.logo::after{
  content:"";
  position:absolute;
  inset:-35%;
  background: radial-gradient(circle at 30% 30%, rgba(255,122,0,.30), transparent 60%);
  opacity:0;
  transition: .25s ease;
  pointer-events:none;
}
.logo img{
  width:82%;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.55));
  transition: .25s ease;
}
.logo:hover{
  box-shadow: 0 0 18px rgba(255,122,0,.25), 0 18px 55px rgba(0,0,0,.40);
  border-color: rgba(255,122,0,.28);
}
.logo:hover::after{ opacity:.9; }
.logo:hover img{
  filter: drop-shadow(0 0 14px rgba(255,122,0,.28)) drop-shadow(0 10px 24px rgba(0,0,0,.55));
  transform: scale(1.02);
}

.title h1{ margin:0; line-height:1.15; font-weight:900; font-size: clamp(26px, 3.2vw, 40px); }
.title p{ margin:8px 0 0; opacity:.86; max-width: 62ch; }
.hint{ margin-top:8px; font-size: 13px; opacity:.62; }

/* Brand (no wrap inside) */
.heroTitle{
  display:inline-flex;
  align-items:baseline;
  gap:10px;
  flex-wrap:wrap;
}
.brandText{
  display:inline-flex;
  align-items:baseline;
  white-space:nowrap;
}
.brandWhite{ color: rgba(255,255,255,.95); font-weight: 900; }
.brandGradient{
  font-weight: 900;
  background: linear-gradient(90deg,#ff7a00,#ff9c2a,#ffd36b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.typeCaret{ display:inline-block; margin-left:6px; opacity:.85; transform: translateY(-1px); }

@media (max-width: 420px){
  .brandText{ transform: scale(0.92); transform-origin: left baseline; }
}

.divider{ border:0; height:1px; background: linear-gradient(90deg,transparent, rgba(255,122,0,.25), transparent); margin: 18px 0 22px; }

.content{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items: stretch;
}
.card{
  background: rgba(22,26,32,.35);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  padding: 18px 18px 16px;
  box-shadow: 0 18px 55px rgba(0,0,0,.40);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display:flex;
  flex-direction: column;
  height:100%;
  position:relative;
  overflow:hidden;
}
.card h2{ margin:0 0 10px; font-size:18px; font-weight:850; }
.card p{ margin:0; opacity:.90; }
.push{ flex:1 1 auto; }

.mini{ margin-top:12px; font-size: 13.5px; line-height:1.7; opacity:.78; }

.actions{
  margin-top: 16px;
  display:flex;
  justify-content:center; /* button centered */
}

/* Bigger premium button + arrow slide */
.btn{
  display:inline-flex;
  align-items:center;
  gap:12px;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 750;
  color:#fff;
  text-decoration:none;
  background: linear-gradient(90deg, #ff7a00, #ff9c2a);
  box-shadow: 0 10px 30px rgba(255,122,0,.22);
  transition: .25s ease;
  will-change: transform, box-shadow;
}
.btnBig{
  font-size: 18px;
  padding: 16px 34px;
  font-weight: 850;
}
.btn:hover{
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 0 12px rgba(255,122,0,.60),
    0 0 30px rgba(255,122,0,.30),
    0 15px 40px rgba(255,122,0,.25);
}
.btnArrow{ transition: transform .25s ease; }
.btn:hover .btnArrow{ transform: translateX(6px); }

/* Preview image block (frame + glow + scan) */
.previewImage{
  margin-top: 16px;
  display:flex;
  justify-content:center;
  position:relative;
}
.previewImage img{
  width: min(360px, 100%);
  max-width: 360px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
  background: rgba(0,0,0,.18);
  display:block;
  transform: translateZ(0);
  transition: .28s ease;
  opacity: .96;
}
.previewImage:hover img{
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 0 18px rgba(255,122,0,.18), 0 18px 60px rgba(0,0,0,.38);
  border-color: rgba(255,122,0,.25);
}
.previewScan{
  position:absolute;
  left: 8%;
  right: 8%;
  height: 2px;
  top: 10%;
  background: linear-gradient(90deg, transparent, rgba(255,122,0,.85), transparent);
  opacity:.0;
  filter: drop-shadow(0 0 10px rgba(255,122,0,.35));
  pointer-events:none;
}
.previewImage:hover .previewScan{
  opacity:.95;
  animation: previewScan 1.9s ease-in-out infinite;
}
@keyframes previewScan{
  0%{ transform: translateY(0); opacity:0; }
  15%{ opacity:.95; }
  100%{ transform: translateY(210px); opacity:0; }
}

/* Meter (nur HUD) */
.meter{
  margin-top:16px;
  height:10px;
  border-radius:999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  overflow:hidden;
}
.meter i{
  display:block;
  height:100%;
  width:42%;
  background: linear-gradient(90deg, rgba(255,122,0,.15), rgba(255,122,0,.75), rgba(255,255,255,.18));
  animation: sweep 2.2s ease-in-out infinite;
}
@keyframes sweep{
  0%{ transform: translateX(-40%); opacity:.65; }
  50%{ opacity:1; }
  100%{ transform: translateX(210%); opacity:.65; }
}

.foot{ margin-top:18px; font-size:13px; opacity:.62; }

/* HUD */
.hudBox{
  margin-top:12px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;
  background: rgba(0,0,0,.18);
  padding:12px 12px 10px;
  overflow:hidden;
  position:relative;
}
.hudBox::after{
  content:"";
  position:absolute;
  left:-20%;
  top:-30%;
  width: 140%;
  height: 60px;
  background: linear-gradient(90deg, transparent, rgba(255,122,0,.18), transparent);
  transform: rotate(12deg);
  opacity:.9;
  animation: scan 2.8s linear infinite;
  pointer-events:none;
  filter: blur(.2px);
}
@keyframes scan{
  0%{ transform: translateY(-40px) rotate(12deg); opacity:0; }
  15%{ opacity:.9; }
  100%{ transform: translateY(220px) rotate(12deg); opacity:0; }
}

.hudGrid{ display:grid; grid-template-columns: 1fr 1fr; gap:10px; }
.hudItem{
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  padding:10px 10px 9px;
  background: rgba(255,255,255,.04);
}
.hudLabel{ font-size:12px; opacity:.70; }
.hudValue{ margin-top:4px; font-weight:900; font-size:18px; line-height:1.2; }
.hudUnit{ font-weight:800; font-size:13px; opacity:.78; margin-left:2px; }
.hudSub{ margin-top:4px; font-size:12px; opacity:.68; }
.hudRow{
  display:flex; align-items:center; gap:8px;
  margin-top:10px; font-size:12.5px; opacity:.80;
}
.hudDot{
  width:8px; height:8px; border-radius:999px;
  background: rgba(255,122,0,.95);
  box-shadow: 0 0 12px rgba(255,122,0,.35);
}
.hudSep{ opacity:.55; }
.hudRight{ margin-left:auto; font-weight:900; opacity:.92; }

/* Responsive */
@media (max-width: 860px){
  .content{ grid-template-columns: 1fr; }
  .logo{ width:72px; height:72px; }
  .previewImage img{ max-width: 420px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .panel, .smoke i, .sparks span, .meter i, .hudBox::after, .previewImage:hover .previewScan{ animation:none !important; }
  .hint{ display:none; }
  .btn:hover{ transform:none; }
  .previewImage:hover img{ transform:none; }
}
