@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@600;700;800&display=swap");

:root {
  --bg: #120a23;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-2: rgba(255, 255, 255, 0.075);
  --ink: #f7ecff;
  --muted: #d9c8ec;
  --brand: #ff46b6;
  --brand-2: #ff9df2;
  --accent: #8d6bff;
  --border: 1px solid rgba(255, 255, 255, 0.09);
  --shadow: 0 18px 40px rgba(3, 0, 20, 0.45);
  --font-display: "Unbounded", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--ink);
  background:
    radial-gradient(78% 52% at 18% 0%, rgba(82, 154, 255, 0.18), transparent 64%),
    radial-gradient(72% 50% at 88% 12%, rgba(126, 92, 255, 0.22), transparent 66%),
    radial-gradient(72% 56% at 20% 82%, rgba(78, 224, 255, 0.08), transparent 70%),
    linear-gradient(180deg, #0b1024 0%, #111534 46%, #071427 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Inter, Roboto, "Noto Sans", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
.brand span {
  font-family: var(--font-display);
}

.brand span {
  font-size: 90%;
}

a {
  color: #ffb7f6;
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--brand-2);
}

.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 20px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: var(--border);
  background: rgba(18, 10, 35, 0.84);
  backdrop-filter: blur(14px);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  white-space: nowrap;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.navlinks {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 16px;
  font-size: 14px;
}

.hero,
.doc,
.quick-links,
.pay-note {
  position: relative;
  overflow: hidden;
  border: var(--border);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero {
  margin-top: 26px;
  padding: 30px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--brand-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4.8vw, 54px);
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff, #ffd8f5, #ff9df2, #ffffff);
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  margin: 34px 0 12px;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.22;
}

h3 {
  margin: 22px 0 8px;
  color: var(--brand-2);
  font-size: 18px;
}

p {
  margin: 0 0 14px;
}

ul,
ol {
  margin: 0 0 18px 20px;
  padding: 0;
}

li {
  margin: 7px 0;
}

.lead,
.doc p,
.doc li,
.small {
  color: var(--muted);
}

.lead {
  max-width: 780px;
  font-size: 18px;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 11px;
  border: var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #f1d9ff;
  font-size: 13px;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
  margin-top: 18px;
  padding: 16px;
}

.quick-links a,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border: var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  font-weight: 800;
  text-align: center;
}

.quick-links a:hover,
.button:hover {
  background: linear-gradient(135deg, rgba(255, 70, 182, 0.13), rgba(141, 107, 255, 0.11));
  border-color: rgba(255, 157, 242, 0.25);
}

.doc {
  margin-top: 18px;
  padding: 30px;
}

.notice {
  margin: 18px 0;
  padding: 16px;
  border-left: 3px solid var(--brand);
  border-radius: 14px;
  background: rgba(255, 70, 182, 0.09);
}

.notice p:last-child {
  margin-bottom: 0;
}

.pay-note {
  margin-top: 18px;
  padding: 22px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.doc-footer {
  margin-top: 34px;
  padding-top: 18px;
  border-top: var(--border);
}

footer {
  padding: 28px 0 42px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 10px;
  font-size: 13px;
}

@media (max-width: 720px) {
  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .navlinks {
    justify-content: flex-start;
  }

  .hero,
  .doc {
    padding: 20px;
  }
}
