:root{
  --bg: #0b0f14;
  --bg-alt:#0e141b;
  --panel:#0f1621cc;
  --text:#dbe8ff;
  --muted:#8aa0bf;
  --accent:#4cc9f0;
  --accent-2:#4361ee;
  --success:#7ef29a;
  --warning:#ffd166;
  --danger:#ff6b6b;
  --card:#0c121aaa;
  --border:#1f2a3a;
  --shadow: 0 10px 30px rgba(0,0,0,.35), inset 0 0 0 1px rgba(255,255,255,.02);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
  background-color: var(--bg);
  overflow-x: hidden;
}
:target {
  scroll-margin-top: 50vh;
}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(1200px 800px at 75% -10%, #142034 0%, transparent 55%),
    radial-gradient(800px 600px at -10% 20%, #101a2b 0%, transparent 60%),
    linear-gradient(180deg, #0a0f15 0%, #070a0f 100%);
  letter-spacing: .2px;
  overflow-x: hidden;

}

a{
  color: inherit;
  text-decoration: none;
}

.wrapper{
  max-width: 1200px;
  margin: 0 auto;
  padding-left: max(20px, 3vw);
  padding-right: max(20px, 3vw);
}

/* Nav */
.nav{
  position: sticky;
  top:0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: linear-gradient(180deg, rgba(10,14,20,.9), rgba(10,14,20,.6));
  border-bottom:1px solid var(--border);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
}
.brand{display:flex; align-items:center; gap:12px;}
.logo{width:38px; height:38px; border-radius:12px; object-fit: contain;}
.brand h1{font-size: 20px;margin:0;font-weight: 700;letter-spacing:.5px;}
.badge{
  font-size: 12px;
  padding:6px 10px;
  border:1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background: var(--success);
  box-shadow: 0 0 12px var(--success);
}
.online-status {
  display: inline-flex;
  align-items: center;
  gap: 6px; /* spacing between dot and text */
  font-weight: 600;
  white-space: nowrap;
}

.burger {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
}

.burger .icon {
  display: none;
  transition: opacity 0.25s ease;
}

.burger .menu-icon { display: block; }

.burger.active .menu-icon { display: none; }
.burger.active .close-icon { display: block; }

.burger span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animate burger to X */
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-actions {
  display: flex;              /* normal inline layout */
  align-items: center;
  gap: 10px;
  position: static;
  background: none;
  padding: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
  max-height: none;
  flex-direction: row;
}

 .nav-actions.open {
  max-height: 300px; /* enough space for items */
  opacity: 1;
}

.btn{
  padding:10px 14px;
  border:1px solid var(--border);
  border-radius: 12px;
  background: linear-gradient(180deg, #121a26, #0e1620);
  box-shadow: var(--shadow);
  display:inline-flex;
  gap:10px;
  align-items:center;
  font-weight:600;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn:hover{
  border-color: #244b74 !important;
  background: linear-gradient(180deg, #1a3858, #14263a) !important;
  box-shadow: 0 10px 30px rgba(67,97,238,.25), inset 0 0 0 1px rgba(255,255,255,.04) !important;
  transform: translateY(-1px);
}

/* Hero */
.hero{
  position:relative;
  padding: 100px 0 80px;
  overflow:hidden;
}
.grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items:center;
  padding-left: max(20px, 3vw);
  padding-right: max(20px, 3vw);
}

/* Title & Subtitle */
.kicker{
  color: var(--accent);
  font-weight:700;
  letter-spacing:.8px;
  text-transform: uppercase;
  font-size: 12px;
}
.title{
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.05;
  margin: 10px 0 12px;
  font-weight: 800;
}
.subtitle{
  color: var(--muted);
  font-size: 18px;
  max-width: 680px;
}
.cta{
  margin-top: 32px;
  display:flex;
  gap:16px;
  flex-wrap: wrap;
}
.hero-image{
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image img{
  width: 100%;
  height: auto;
  max-width: 500px;
  border-radius: var(--radius);
  border: none !important;
  outline: none !important;
  box-sizing: border-box;
}

/* Trust bar */
.trust{
  margin: 40px 0 16px;
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  align-items:center;
}
.trust .pill{
  border:1px solid var(--border);
  padding:8px 12px;
  border-radius: 999px;
  color: var(--muted);
  display:flex;
  gap:10px;
  align-items:center;
  background: #0a121c;
}

/* Products */
.section {
  padding: min(8vw, 64px) 0;
  padding-left: max(20px, 3vw);
  padding-right: max(20px, 3vw);
}
.section h2 {
  font-size: 28px;
  margin: 0 0 40px;
  padding-left: max(20px, 3vw);
  padding-right: max(20px, 3vw);
  box-sizing: border-box;
}
.cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:24px;
  padding-left: max(20px, 3vw);
  padding-right: max(20px, 3vw);
}
.card{
  border:1px solid var(--border);
  background: linear-gradient(180deg, rgba(17,25,38,.85), rgba(13,19,28,.75));
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
  margin: 12px;
}
.card:before{
  content:"";
  position:absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0) 20%,
    rgba(255,255,255,0.1) 50%,
    rgba(255,255,255,0) 80%,
    transparent 100%
  );
  animation: shimmer 3s ease-in-out infinite 1s, shimmer-fade-in 1s ease-out forwards;
  opacity: 0;
}
@keyframes shimmer{
  0% {left: -100%; opacity: 0;}
  50% {opacity: 1;}
  100% {left: 100%; opacity: 0;}
}
@keyframes shimmer-fade-in{
  from{ opacity: 0; }
  to{ opacity: 1; }
}
.card .top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom: 10px;
}
.tag{
  font-size: 12px;
  padding:6px 10px;
  border:1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
}
.price{
  font-size: 26px;
  font-weight: 800;
  margin: 6px 0 2px;
}
.desc{
  color: var(--muted);
  font-size: 14px;
  min-height:38px;
}
.pill-btn{
  margin-top: 12px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius: 999px;
  border:1px solid #2b3f5b;
  background: linear-gradient(180deg, #16304b, #122439);
  font-weight:700;
}
.pill-btn:hover{
  filter: brightness(1.1);
}

/* How it works */
.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:24px;
  padding-left: max(20px, 3vw);
  padding-right: max(20px, 3vw);
}
.step{
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:18px;
  background: #0b121a;
  box-shadow: var(--shadow);
  margin: 12px;
}
.num{
  width:30px;
  height:30px;
  border-radius:8px;
  display:grid;
  place-items:center;
  background: linear-gradient(180deg, #2a3f5f, #18283e);
  border:1px solid #27405c;
  font-weight:800;
}

/* FAQ */
.faq{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:24px;
  padding-left: max(20px, 3vw);
  padding-right: max(20px, 3vw);
}
.qa{
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:18px;
  background: #0a121c;
  box-shadow: var(--shadow);
  margin: 12px;
}
.qa h4{margin:0 0 8px;font-size: 16px;}
.qa p{margin:0; color:var(--muted);}

/* Footer */
footer {
  padding: min(6vw, 40px) 0;
  margin-top: 20px;
  border-top: 1px solid var(--border);
  background: #070b11;
  color: #a8b8d6;
  padding-left: max(20px, 3vw);
  padding-right: max(20px, 3vw);
}
.footgrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 24px;
}
.legal{
  padding-left: max(20px, 3vw);
  padding-right: max(20px, 3vw);
  box-sizing: border-box;
  margin-top: 10px;
  font-size: 12px;
  color: #7992b6;
}

/* Discord CTA button (unique style) */
.discord-cta {
  --white: #ffe7ff;
  --bg: #0f172a;
  --radius: 100px;
  outline: none;
  cursor: pointer;
  border: 0;
  position: relative;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #0f172a, #1e293b);
  transition: all 0.2s ease;
  box-shadow:
    inset 0 0.3rem 0.9rem rgba(255, 255, 255, 0.2),
    inset 0 -0.1rem 0.3rem rgba(0, 0, 0, 0.7),
    inset 0 -0.4rem 0.9rem rgba(255, 255, 255, 0.4),
    0 3rem 3rem rgba(0, 0, 0, 0.3),
    0 1rem 1rem -0.6rem rgba(0, 0, 0, 0.8);
}
.discord-cta .wrap {
  font-size: 22px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  padding: 28px 42px;
  border-radius: inherit;
  position: relative;
  overflow: hidden;
}
.discord-cta .wrap p span:nth-child(2) { display: none; }
.discord-cta:hover .wrap p span:nth-child(1) { display: none; }
.discord-cta:hover .wrap p span:nth-child(2) { display: inline-block; }
.discord-cta .wrap p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  transition: all 0.2s ease;
  transform: translateY(2%);
  mask-image: linear-gradient(to bottom, white 40%, transparent);
}
.discord-cta .wrap::before,
.discord-cta .wrap::after {
  content: "";
  position: absolute;
  transition: all 0.3s ease;
}
.discord-cta .wrap::before {
  left: -15%;
  right: -15%;
  bottom: 25%;
  top: -100%;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.12);
}
.discord-cta .wrap::after {
  left: 6%;
  right: 6%;
  top: 12%;
  bottom: 40%;
  border-radius: 22px 22px 0 0;
  box-shadow: inset 0 10px 8px -10px rgba(255, 255, 255, 0.8);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}
.discord-cta:hover {
  box-shadow:
    inset 0 0.3rem 0.5rem rgba(255, 255, 255, 0.4),
    inset 0 -0.1rem 0.3rem rgba(0, 0, 0, 0.7),
    inset 0 -0.4rem 0.9rem rgba(255, 255, 255, 0.7),
    0 3rem 3rem rgba(0, 0, 0, 0.3),
    0 1rem 1rem -0.6rem rgba(0, 0, 0, 0.8);
}
.discord-cta:hover .wrap::before {
  transform: translateY(-5%);
}
.discord-cta:hover .wrap::after {
  opacity: 0.4;
  transform: translateY(5%);
}
.discord-cta:hover .wrap p {
  transform: translateY(-4%);
}
.discord-cta:active {
  transform: translateY(4px);
  box-shadow:
    inset 0 0.3rem 0.5rem rgba(255, 255, 255, 0.5),
    inset 0 -0.1rem 0.3rem rgba(0, 0, 0, 0.8),
    inset 0 -0.4rem 0.9rem rgba(255, 255, 255, 0.4),
    0 3rem 3rem rgba(0, 0, 0, 0.3),
    0 1rem 1rem -0.6rem rgba(0, 0, 0, 0.8);
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 200;
}
.modal-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 600px;
  max-height: 80vh;
  width: 90%;
  padding: 24px;
  overflow-y: auto;
  position: relative;
  animation: fadeInUp 0.3s ease;
  margin: 12px;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 20px;
  cursor: pointer;
  transition: color 0.2s ease;
}
.modal-close:hover {
  color: var(--muted);
}

.blobs-wrapper {
  position: relative;
  width: 100%;
  height: 0; /* just a wrapper, no height impact */
  overflow: visible;
}


.blobs {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 200vh; /* covers scrolling area */
  z-index: 0;
  overflow: visible;
  pointer-events: none;
}

/* Generic blob style */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px); /* slightly more blur for bigger blobs */
  opacity: 0.1;
  mix-blend-mode: screen;
  pointer-events: none;
  will-change: transform;
}

/* Blob 1 — top-left */
.blob1 {
  width: 35vw;  /* bigger */
  height: 35vw;
  min-width: 400px;
  min-height: 400px;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(circle, var(--accent), var(--accent-2));
  top: 5%;
  left: 5%;
  animation: float1 25s ease-in-out infinite alternate; /* 50% slower */
}

/* Blob 2 — top-right */
.blob2 {
  width: 40vw;
  height: 40vw;
  min-width: 450px;
  min-height: 450px;
  max-width: 750px;
  max-height: 750px;
  background: radial-gradient(circle, var(--accent-2), var(--accent));
  top: 30%;
  left: 60%;
  animation: float2 28s ease-in-out infinite alternate; /* 50% slower */
  animation-delay: 2s;
}

/* Blob 3 — bottom-middle */
.blob3 {
  width: 30vw;
  height: 30vw;
  min-width: 350px;
  min-height: 350px;
  max-width: 600px;
  max-height: 600px;
  background: radial-gradient(circle, var(--accent), var(--accent-2));
  top: 70%;
  left: 40%;
  animation: float3 35s ease-in-out infinite alternate; /* 50% slower */
  animation-delay: 4s;
}

/* Dramatic floating keyframes — slower, same big movement */
@keyframes float1 {
  0%   { transform: translate(0, 0) rotate(0deg); }
  25%  { transform: translate(200px, 150px) rotate(30deg); }
  50%  { transform: translate(-180px, 200px) rotate(-25deg); }
  75%  { transform: translate(150px, -100px) rotate(15deg); }
  100% { transform: translate(-100px, -180px) rotate(-35deg); }
}

@keyframes float2 {
  0%   { transform: translate(0, 0) rotate(0deg); }
  25%  { transform: translate(-220px, 170px) rotate(-20deg); }
  50%  { transform: translate(180px, -160px) rotate(25deg); }
  75%  { transform: translate(-150px, 120px) rotate(-15deg); }
  100% { transform: translate(120px, -180px) rotate(35deg); }
}

@keyframes float3 {
  0%   { transform: translate(0, 0) rotate(0deg); }
  25%  { transform: translate(160px, -200px) rotate(25deg); }
  50%  { transform: translate(-180px, 150px) rotate(-30deg); }
  75%  { transform: translate(140px, -100px) rotate(20deg); }
  100% { transform: translate(-120px, 180px) rotate(-25deg); }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .blob1, .blob2, .blob3 {
    opacity: 0.4;
    filter: blur(120px);
  }
}




@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsiveness - Anpassungen für alle Auflösungen */
@media (max-width: 1350px) {
  .wrapper,
  .section,
  .cards,
  .grid,
  .steps,
  .faq,
  footer {
    padding-left: max(12px, 2vw);
    padding-right: max(12px, 2vw);
  }
}


/* Tablet and smaller desktops layout changes */
@media (max-width: 1000px) {
  .grid {
    grid-template-columns: 1fr; /* single column grid */
  }
  .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footgrid {
    grid-template-columns: 1fr 1fr;
  }
  .section {
    padding: min(5vw, 36px) 0;
  }
  .card,
  .step,
  .qa,
  .modal-box {
    margin: 10px;
  }
}

/* Mobile and large smartphone layout */
@media (max-width: 620px) {
  .cards,
  .faq,
  .steps,
  .wrapper,
  .section,
  .grid,
  footer {
    padding-left: max(8px, 5vw);
    padding-right: max(8px, 5vw);
    grid-template-columns: 1fr;
  }
  .footgrid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 40px 0;
  }
  footer {
    padding: 36px 0;
    margin-top: 20px;
  }
  .card,
  .step,
  .qa,
  .modal-box {
    margin: 7px;
  }
  
}

/* Very small mobile fallback screens */
@media (max-width: 420px) {
  .title {
    font-size: 24px;
  }
  .subtitle {
    font-size: 14px;
  }
  .section,
  footer {
    padding: 22px 0;
  }
  .card,
  .step,
  .qa,
  .modal-box {
    margin: 4px;
    padding: 10px;
  }
}

@media (max-width: 768px) {
  .burger {
    display: flex;
  }
    .nav-actions {
    display: flex; /* still flex but collapsible */
    position: absolute;
    top: 60px;
    right: 16px;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(15, 22, 33, 0.85);
    backdrop-filter: blur(12px);
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
  }

    .nav-actions.open {
    max-height: 300px; /* show on toggle */
    opacity: 1;
  }

}
