:root {
  --bg: #0a0a0b;
  --ink: #f2efe6;
  --mute: #9c958a;
  --line: rgba(242, 239, 230, 0.1);
  --yellow: #f0c000;
  --yellow-ink: #141008;
  --font-display: "Syne", "Segoe UI", sans-serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100dvh;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% -10%, rgba(240, 192, 0, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(240, 192, 0, 0.08), transparent 50%),
    linear-gradient(180deg, #101012 0%, var(--bg) 45%, #070708 100%);
}

.grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(242, 239, 230, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 239, 230, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.45;
  animation: drift 14s ease-in-out infinite alternate;
}

.orb-a {
  width: min(48vw, 380px);
  height: min(48vw, 380px);
  left: -8%;
  top: 18%;
  background: rgba(240, 192, 0, 0.22);
}

.orb-b {
  width: min(40vw, 300px);
  height: min(40vw, 300px);
  right: -6%;
  bottom: 12%;
  background: rgba(240, 192, 0, 0.12);
  animation-delay: -5s;
}

.hero {
  position: relative;
  z-index: 1;
  flex: 1;
  width: min(640px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(5rem, 16vh, 8rem) 0 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.85rem;
}

.place {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
}

.brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 11vw, 5.8rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #fff8e8 0%, var(--ink) 55%, #c9b98a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.status {
  margin: 0.15rem 0 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}

.dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 0 rgba(240, 192, 0, 0.45);
  animation: pulse 2s ease-out infinite;
}

.lead {
  margin: 0.15rem 0 0;
  max-width: 28rem;
  color: var(--mute);
  font-size: 1.02rem;
  line-height: 1.55;
  font-weight: 400;
}

.lead span {
  color: var(--ink);
  font-weight: 500;
}

.actions {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0.9rem 1.3rem;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--yellow);
  color: var(--yellow-ink);
}

.btn-primary:hover {
  background: #ffd21a;
}

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.03);
}

.btn-ghost:hover {
  border-color: rgba(240, 192, 0, 0.4);
}

.site-foot {
  position: relative;
  z-index: 1;
  padding: 1.35rem 1.25rem 1.6rem;
  text-align: center;
  border-top: 1px solid var(--line);
}

.site-foot p {
  margin: 0.2rem 0;
  color: var(--mute);
  font-size: 0.8rem;
}

.credit a {
  color: var(--yellow);
  text-decoration: none;
  font-weight: 600;
}

.credit a:hover {
  text-decoration: underline;
}

.anim {
  opacity: 0;
  transform: translateY(12px);
  animation: rise 0.65s ease forwards;
}

.place.anim { animation-delay: 0.05s; }
.brand.anim { animation-delay: 0.14s; }
.status.anim { animation-delay: 0.26s; }
.lead.anim { animation-delay: 0.38s; }
.actions.anim { animation-delay: 0.5s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(240, 192, 0, 0.45); }
  70% { box-shadow: 0 0 0 10px rgba(240, 192, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(240, 192, 0, 0); }
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(4%, 5%, 0) scale(1.06); }
}

@media (max-width: 560px) {
  .actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .btn {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .anim,
  .orb,
  .dot {
    animation: none !important;
  }
  .anim {
    opacity: 1;
    transform: none;
  }
}
