* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #02170b;
  --primary: #1dd65f;
  --primary-soft: rgba(29, 214, 95, 0.2);
  --text-main: #ffffff;
  --text-sub: #b8f7cf;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #064c22 0, #02170b 40%, #000 100%);
  color: var(--text-main);
  min-height: 100vh;
  overflow: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='5' stitchTiles='noStitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.7'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
  z-index: 1;
}

.wrapper {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.card {
  position: relative;
  width: min(960px, 100%);
  border-radius: 24px;
  padding: 2.5rem clamp(2rem, 5vw, 3rem);
  background: linear-gradient(135deg, rgba(4, 47, 21, 0.95), rgba(0, 0, 0, 0.95));
  border: 1px solid var(--primary-soft);
  box-shadow: 0 0 60px rgba(29, 214, 95, 0.25);
  overflow: hidden;
  perspective: 1200px;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
}

.glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 10% 0%, rgba(29, 214, 95, 0.15), transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(29, 214, 95, 0.2), transparent 55%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: -1;
}

.grid {
  position: absolute;
  inset: -20%;
  background-image: linear-gradient(rgba(29, 214, 95, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 214, 95, 0.12) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.15;
  transform: translateZ(-120px) rotateX(55deg);
  transform-origin: center;
}

.content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 2rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--primary-soft);
  background-color: rgba(0, 0, 0, 0.6);
  font-size: 0.78rem;
  color: var(--text-sub);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 1.7s infinite;
}

.title-main {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  text-transform: uppercase;
}

.title-highlight {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  text-transform: uppercase;
  color: var(--primary);
  text-shadow: 0 0 14px rgba(29, 214, 95, 0.9);
}

.subtitle {
  margin-top: 1rem;
  color: var(--text-sub);
  line-height: 1.6;
}

.meta {
  margin-top: 1.8rem;
  display: flex;
  gap: 1.2rem;
  color: var(--text-sub);
}

.btn-primary {
  padding: 0.9rem 1.7rem;
  background: linear-gradient(90deg, #46ff96, #0fb14c);
  border-radius: 999px;
  color: black;
  cursor: pointer;
}

.btn-outline {
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-sub);
}

.scene {
  position: relative;
  height: 260px;
  transform-style: preserve-3d;
}

.layer {
  position: absolute;
  border-radius: 18px;
  padding: 1.1rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--primary-soft);
  backdrop-filter: blur(10px);
  transform-style: preserve-3d;
}

.layer-1 { top: 10%; right: 8%; }
.layer-2 { bottom: 2%; left: 5%; }
layer-3 { top: 50%; left: 40%; }

.float-slow { animation: float 7s infinite; }
.float-mid { animation: float 6s infinite; }
.float-fast { animation: float 5s infinite; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.25; }
}
