:root {
  --bg: #050506;
  --bg-alt: #0c0c10;
  --gold: #d4af37;
  --gold-soft: rgba(212, 175, 55, 0.8);
  --text: #f5f5f5;
}

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

body {
  font-family: "Poppins", system-ui, sans-serif;
  background: radial-gradient(circle at top left, #232329 0, var(--bg) 45%, #000 100%);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.noise-overlay {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.06;
  mix-blend-mode: soft-light;
  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='.8' numOctaves='4' stitchTiles='noStitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.7'/%3E%3C/svg%3E");
  z-index: 1;
}

.wrapper {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  padding: 40px 24px;
}

.card {
  border-radius: 22px;
  padding: 32px 24px;
  background: linear-gradient(145deg, var(--bg-alt), #050608);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  animation: card-in 700ms ease-out forwards;
  opacity: 0;
  transform: translateY(14px) scale(0.98);
}

@keyframes card-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.logo-mark {
  width: 120px;
  height: 120px;
  border-radius: 26px;
  background: radial-gradient(circle at 30% 0, #fef6d0 0, var(--gold) 28%, #8c6a12 65%, #151515 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(0,0,0,0.9);
  position: relative;
  overflow: hidden;
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(120deg, rgba(255,255,255,0.15), transparent 60%);
  transform: translateX(-100%) rotate(-10deg);
  animation: sheen 5s ease-in-out infinite 1s;
}

@keyframes sheen {
  10% { transform: translateX(30%) rotate(-10deg); }
  100% { transform: translateX(130%) rotate(-10deg); }
}

.logo-kanji {
  font-size: 72px;
  font-weight: 600;
  color: #1a1303;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.5),
    0 5px 20px rgba(0,0,0,0.9);
}

.brand {
  text-align: center;
}

.brand-title {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 6px;
}

.brand-name {
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
}

.tagline {
  margin-top: 12px;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.6);
}

.pill {
  margin-top: 20px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.3);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold-soft);
  box-shadow: 0 0 12px rgba(212,175,55,0.8);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.25);
    opacity: 0.4;
  }
}

.footer {
  margin-top: 10px;
  font-size: 0.75rem;
  text-align: center;
  color: rgba(255,255,255,0.4);
}

.footer span {
  color: var(--gold-soft);
}

@media (min-width: 720px) {
  .card {
    padding: 40px 38px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .logo-wrap {
    flex-direction: row;
    gap: 26px;
  }

  .brand {
    text-align: left;
  }
}

