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

html,
body {
  height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background-color: #fdfcfb;
  color: #111;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

.atmosphere {
  position: fixed;
  top: 0;
  width: 42vw;
  max-width: 520px;
  height: 220px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  filter: blur(40px);
}

.atmosphere--left {
  left: -8%;
  background: radial-gradient(
    ellipse 80% 100% at 30% 0%,
    rgba(120, 110, 100, 0.45) 0%,
    transparent 70%
  );
}

.atmosphere--right {
  right: -8%;
  background: radial-gradient(
    ellipse 80% 100% at 70% 0%,
    rgba(120, 110, 100, 0.4) 0%,
    transparent 70%
  );
}

.nav-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 28px 20px 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  background: #1a1a1a;
  border-radius: 999px;
  padding: 10px 12px 10px 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-icon {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #e85d04;
  position: relative;
}

.nav__logo-icon::before,
.nav__logo-icon::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 1px;
}

.nav__logo-icon::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav__logo-icon::after {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  color: #f5f5f5;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nav__link:hover {
  opacity: 0.85;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 999px;
  white-space: nowrap;
  margin-left: 4px;
}

.nav__cta:hover {
  background: #f0f0f0;
}

main {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px 48px;
  min-height: calc(100vh - 80px);
}

.hero {
  text-align: center;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin-top: clamp(48px, 8vh, 88px);
  margin-bottom: clamp(24px, 4vh, 40px);
}

.hero span {
  display: block;
}

.bin-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex: 1;
  min-height: 360px;
  margin-bottom: auto;
}

.bin-visual {
  position: relative;
  display: inline-block;
  line-height: 0;
}

.bin-glow {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: min(480px, 82vw);
  height: min(480px, 82vw);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(230, 81, 0, 0.55) 0%,
    rgba(230, 81, 0, 0.35) 30%,
    rgba(230, 81, 0, 0.15) 50%,
    transparent 72%
  );
  pointer-events: none;
}

.bin-image {
  position: relative;
  z-index: 1;
  width: min(420px, 78vw);
  height: auto;
  object-fit: contain;
  display: block;
}

.footer-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: auto;
  padding-top: 24px;
  padding-bottom: 32px;
}

.message-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #d32f2f;
  color: #fff;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(211, 47, 47, 0.35);
  transition: background 0.2s ease, transform 0.15s ease;
}

.message-now:hover {
  background: #c62828;
}

.message-now:active {
  transform: scale(0.98);
}

.tagline {
  font-size: 0.9375rem;
  font-weight: 400;
  color: #4a4a4a;
  text-align: center;
  letter-spacing: 0.01em;
}

@media (max-width: 640px) {
  .nav {
    gap: 16px;
    padding: 8px 10px 8px 12px;
  }

  .nav__links {
    gap: 20px;
  }

  .nav__link {
    font-size: 0.8125rem;
  }

  .nav__cta {
    font-size: 0.75rem;
    padding: 7px 14px;
  }
}
