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

html, body {
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #eb7b2a;
  background-image: radial-gradient(70% 150% at 50% 28%, #ffb545 2%, #eb4d2a 100%);
  background-attachment: fixed;
  font-family: 'Inter', sans-serif;
  padding: 24px;
}

body::before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%20width%3D%22512%22%20height%3D%22512%22%20preserveAspectRatio%3D%22none%22%3E%20%3Cline%20x1%3D%22256%22%20y1%3D%220%22%20x2%3D%22256%22%20y2%3D%22512%22%20stroke%3D%22rgba(235,77,42,0.102)%22%20stroke-width%3D%221.01px%22%20vector-effect%3D%22non-scaling-stroke%22%20stroke-linecap%3D%22square%22%20%2F%3E%3C%2Fsvg%3E");
  background-size: 16px;
  background-repeat: repeat;
}

/* ── Card wrapper ── */

.card-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* ── Card ── */

.card {
  width: 100%;
  max-width: 580px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.08),
    0 12px 48px rgba(0, 0, 0, 0.06);
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
  position: relative;
  z-index: 1;
}

.card-content {
  padding: 44px 36px 36px;
}

/* ── Label ── */

.label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  color: #d97730;
  margin-bottom: 20px;
}

/* ── Company name ── */

.company-name {
  font-family: 'Geologica', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #584d4d;
  margin-bottom: 18px;
}

/* ── Tagline ── */

.tagline {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.92rem;
  line-height: 2;
  color: #6b6b6b;
}


/* ── Footer ── */

.footer {
  margin-top: auto;
  padding: 16px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  color: rgba(88, 77, 77);
  position: relative;
  z-index: 1;
}

/* ── Animation ── */

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

/* ── Responsive ── */

@media (max-width: 480px) {
  .card-content {
    padding: 32px 28px 28px;
  }

  .company-name {
    font-size: 2rem;
  }
}
