/* ================= FONT ================= */
@font-face {
  font-family: 'Neue Machina';
  src: url('fonts/NeueMachina-Regular.woff2') format('woff2');
  font-weight: 400;
}

@font-face {
  font-family: 'Neue Machina';
  src: url('fonts/NeueMachina-Bold.woff2') format('woff2');
  font-weight: 700;
}

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Neue Machina', sans-serif;
}

body {
  height: 100vh;
  background: #0a0920;
  color: #e6e6f0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;

  padding: 0 24px; /* ← THIS is the key */
  padding-left: clamp(16px, 5vw, 80px);
  padding-right: clamp(16px, 5vw, 80px);
}

/* ================= GRID ================= */
.grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 0;
}

/* ================= ORBS ================= */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  z-index: 0;
}

.orb1 {
  width: 350px;
  height: 350px;
  background: #6c63ff;
  top: 15%;
  left: 20%;
  animation: float1 12s ease-in-out infinite;
}

.orb2 {
  width: 400px;
  height: 400px;
  background: #4f46e5;
  bottom: 15%;
  right: 20%;
  animation: float2 14s ease-in-out infinite;
}

.orb3 {
  width: 300px;
  height: 300px;
  background: #3b82f6;
  top: 60%;
  left: 50%;
  transform: translateX(-50%);
  animation: float3 16s ease-in-out infinite;
}

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

@keyframes float2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(30px); }
}

@keyframes float3 {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -25px); }
}

/* ================= LOGO ================= */
.logo {
  position: absolute;
  top: 20px;
  left: 20px;

  width: 75px;
  height: 75px;
  object-fit: cover;

  border-radius: 35% 35% 35% 35% / 30% 30% 40% 40%;

  z-index: 3;
  opacity: 0.95;

  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.logo:hover {
  transform: rotate(360deg);
}

/* ================= CONTENT ================= */
.container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 20px;

  transform: translateY(-40px) scale(1.5);
  transform-origin: center;
}

/* ================= BADGE ================= */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  text-decoration: none;
  color: #cfd3ff;
  margin-bottom: 30px;
  transition: all 0.25s ease;
}

.badge:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

/* ================= HEADLINE ================= */
h1 {
  font-size: 88px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -1px;
}

h1 span {
  color: #9aa0ff;
}

/* ================= CONTACT ================= */
.contact {
  margin-top: 20px;
  font-size: 16px;
  color: rgba(230, 230, 240, 0.6);
}

.contact a {
  color: rgba(230, 230, 240, 0.9);
  text-decoration: none;
  border-bottom: 1px solid rgba(230, 230, 240, 0.3);
  transition: all 0.2s ease;
}

.contact a:hover {
  color: #ffffff;
  border-color: rgba(255,255,255,0.8);
}

/* ================= MOBILE ================= */
@media (max-width: 600px) {
  .container {
    transform: translateY(-20px) scale(1.15);
  }

  h1 {
    font-size: 48px;
  }

  .logo {
    width: 60px;
    height: 60px;
  }
}