:root {
  --bg: #0d0d10;
  --panel: rgba(22, 22, 25, 0.9);
  --text: #fbf7ef;
  --muted: #bbb2a5;
  --line: rgba(255, 255, 255, 0.15);
  --line-strong: rgba(255, 255, 255, 0.28);
  --pink: #d91b84;
  --teal: #047b80;
  --gold: #c39a4b;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(217, 27, 132, 0.2) 0%, rgba(217, 27, 132, 0) 28%),
    linear-gradient(315deg, rgba(4, 123, 128, 0.2) 0%, rgba(4, 123, 128, 0) 34%),
    linear-gradient(180deg, #171016 0%, var(--bg) 52%, #071112 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, black 18%, black 72%, transparent);
}

.page {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 28px;
  overflow: hidden;
}

.page::before {
  position: absolute;
  top: 8%;
  left: 50%;
  z-index: -1;
  color: rgba(255, 255, 255, 0.035);
  content: "JAMMY";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9rem;
  line-height: 1;
  transform: translateX(-50%);
  white-space: nowrap;
}

.panel {
  position: relative;
  width: min(620px, calc(100vw - 56px));
  padding: 46px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(18px);
}

.panel::before {
  position: absolute;
  top: 0;
  right: 28px;
  left: 28px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--text);
  background: linear-gradient(145deg, rgba(217, 27, 132, 0.7), rgba(4, 123, 128, 0.62));
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  font-weight: 900;
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.45rem;
  line-height: 1;
  font-weight: 500;
}

.intro {
  max-width: 430px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.actions {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 16px 18px 16px 20px;
  color: var(--text);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 900;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.button:hover {
  background: rgba(217, 27, 132, 0.88);
  border-color: rgba(255, 255, 255, 0.34);
  transform: translateY(-1px);
}

.button:focus-visible {
  outline: 3px solid rgba(195, 154, 75, 0.62);
  outline-offset: 4px;
}

.button-arrow {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--text);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  line-height: 1;
}

@media (max-width: 560px) {
  .page {
    padding: 20px;
  }

  .page::before {
    top: 11%;
    font-size: 4.8rem;
  }

  .panel {
    width: min(100%, calc(100vw - 40px));
    padding: 32px 20px;
  }

  h1 {
    font-size: 2.28rem;
  }

  .intro {
    font-size: 0.95rem;
  }

  .button {
    min-height: 58px;
    padding: 14px 14px 14px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
