/* Schleifbar Coming Soon – styles */
:root{
  --yellow: #FFD100; /* "100 yellow" look */
  --dark: #0B0B0B;
  --grey: #3A3A3A;
  --text: #F7F7F7;
  --muted: rgba(247,247,247,.78);
  --card: rgba(10,10,10,.52);
  --cardBorder: rgba(255,255,255,.10);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--text);
  background:#000;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  overflow-x:hidden;
}

a{color:inherit}
a:hover{opacity:.9}
a:focus-visible{outline:2px solid var(--yellow); outline-offset:3px; border-radius:8px}

.topbar{
  position:fixed;
  top:0; left:0; right:0;
  height:64px;
  background:var(--yellow);
  z-index:50;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.topbar__inner{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 clamp(14px, 3vw, 28px);
  gap:16px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}
.brand__logo{
  height:40px;
  width:auto;
  display:block;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.25));
}
.mini-nav{
  display:flex;
  gap:14px;
  font-weight:800;
  letter-spacing:.02em;
}
.mini-nav a{
  text-decoration:none;
  color:#111;
  background: rgba(255,255,255,.55);
  padding:10px 12px;
  border-radius:12px;
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
}
.mini-nav a:hover{background: rgba(255,255,255,.7)}

.stage{
  position:relative;
  min-height:100svh;
  padding-top:64px;
  padding-bottom:64px;
}

.bg-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.06);
  filter: grayscale(1) contrast(1.1) brightness(.65);
  z-index:0;
}

.veil{
  position:absolute;
  inset:0;
  background:
    radial-gradient(1100px 650px at 30% 30%, rgba(0,0,0,.25), rgba(0,0,0,.72)),
    linear-gradient(to bottom, rgba(0,0,0,.30), rgba(0,0,0,.62));
  z-index:1;
}

.grain{
  position:absolute;
  inset:-40px;
  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='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity:.35;
  z-index:2;
  pointer-events:none;
  transform: translateZ(0);
}

.hero{
  position:relative;
  z-index:10;
  min-height: calc(100svh - 64px - 64px);
  display:grid;
  place-items:center;
  padding: clamp(18px, 3vw, 34px);
}

.hero__card{
  width:min(920px, 96vw);
  background: var(--card);
  border: 1px solid var(--cardBorder);
  border-radius: 24px;
  padding: clamp(18px, 3vw, 34px);
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  transform: translateZ(0);
  will-change: transform;
}

.kicker{
  display:inline-block;
  margin:0 0 10px 0;
  padding:8px 12px;
  border-radius: 999px;
  background: rgba(255,209,0,.18);
  border: 1px solid rgba(255,209,0,.30);
  color: var(--yellow);
  font-weight:800;
  letter-spacing:.08em;
  text-transform: uppercase;
  font-size: .85rem;
}

.headline{
  margin:0;
  font-family: Anton, Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-weight:400;
  letter-spacing:.02em;
  line-height: .95;
  font-size: clamp(40px, 5.6vw, 86px);
  text-transform: uppercase;
}
.headline__accent{
  color: var(--yellow);
  text-shadow: 0 12px 28px rgba(0,0,0,.5);
}

.subline{
  margin: 14px 0 0 0;
  max-width: 55ch;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 18px);
  line-height:1.5;
}

.contact{
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 16px;
}
.contact__title{
  font-weight:800;
  letter-spacing:.05em;
  text-transform: uppercase;
  font-size: .9rem;
  color: rgba(255,255,255,.9);
  margin-bottom: 10px;
}
.contact__grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 14px;
}
.contact__name{
  font-weight:800;
  color: rgba(255,255,255,.95);
  margin-bottom: 4px;
}
.contact__block{
  color: rgba(255,255,255,.85);
  line-height: 1.55;
}
.label{
  color: rgba(255,255,255,.65);
  width: 44px;
  display:inline-block;
}
.contact a{
  color: rgba(255,255,255,.95);
  text-decoration:none;
  border-bottom: 1px solid rgba(255,209,0,.55);
}
.contact a:hover{border-bottom-color: rgba(255,209,0,1)}

.cta-row{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top: 18px;
  flex-wrap:wrap;
}
.cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight:900;
  letter-spacing:.04em;
  text-transform: uppercase;
  color:#111;
  background: var(--yellow);
  padding: 12px 16px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
}
.cta:hover{transform: translateY(-1px)}
.hint{
  color: rgba(255,255,255,.78);
  font-weight:600;
}

.snow{
  position:fixed;
  inset:0;
  width:100vw;
  height:100vh;
  z-index:9999; /* over header/footer + content */
  pointer-events:none;
}

.footer{
  position:fixed;
  left:0; right:0; bottom:0;
  height:64px;
  background: var(--grey);
  z-index:50;
  box-shadow: 0 -10px 30px rgba(0,0,0,.35);
}
.footer__inner{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 0 clamp(14px, 3vw, 28px);
  gap:16px;
  color: rgba(255,255,255,.9);
  font-weight:700;
}
.footer a{color:rgba(255,255,255,.95); text-decoration:none}
.footer a:hover{color:#fff}
.dot{opacity:.6; padding:0 6px}

.legal{
  padding-top: 64px;
  padding-bottom: 64px;
}
.legal .hero__card{
  background: rgba(10,10,10,.64);
}
.legal h1{
  margin-top: 0;
}
.legal p, .legal li{
  color: rgba(255,255,255,.85);
  line-height:1.6;
}
.legal .small{
  color: rgba(255,255,255,.75);
  font-size: .95rem;
}

/* Mobile refinements */
@media (max-width: 720px){
  .contact__grid{grid-template-columns: 1fr}
  .mini-nav a{padding:8px 10px; border-radius:10px}
  .brand__logo{height:34px}
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .bg-video{transform:none}
  .cta:hover{transform:none}
}
