:root {
  --bg: #07010a;
  --surface: rgba(22, 8, 24, 0.88);
  --surface-strong: rgba(18, 6, 20, 0.96);
  --border: rgba(255, 74, 165, 0.16);
  --border-strong: rgba(255, 91, 183, 0.34);
  --text: #fff5fb;
  --muted: #cfb7c8;
  --muted-strong: #e7d6e1;
  --accent: #ff4fb6;
  --accent-strong: #ff6fcb;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.52);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 999px;
  --max-width: 1080px;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 76, 170, 0.18), transparent 20%),
    radial-gradient(circle at 82% 16%, rgba(255, 42, 95, 0.16), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(255, 84, 184, 0.09), transparent 30%),
    linear-gradient(180deg, #060107 0%, #0c0310 42%, #070109 100%);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(9, 1, 10, 0.94), rgba(9, 1, 10, 0.72));
  border-bottom: 1px solid rgba(255, 87, 177, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.24);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand__mark {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 74, 165, 0.18), rgba(255, 74, 165, 0.04));
  border: 1px solid var(--border-strong);
  box-shadow: 0 0 24px rgba(255, 66, 173, 0.2);
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__text {
  display: grid;
  gap: 0.05rem;
}

.brand__text strong {
  font-size: 1rem;
  font-weight: 700;
}

.brand__text small,
.hero__lead,
.legal-section p,
.legal-section li,
.note-card p,
.footer p {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 87, 177, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 600;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6fcb, #ff397a);
  border-color: transparent;
  box-shadow: 0 16px 32px rgba(255, 57, 122, 0.28);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 111, 203, 0.36);
  background: rgba(255, 255, 255, 0.07);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, #ff86d5, #ff4f8f);
}

.btn:focus-visible,
.back-link:focus-visible,
.section-link:focus-visible,
.footer a:focus-visible,
.legal-section a:focus-visible {
  outline: 2px solid rgba(255, 123, 205, 0.7);
  outline-offset: 3px;
}

.hero {
  padding: clamp(2rem, 6vw, 4.5rem) 0 1.5rem;
}

.hero__panel,
.legal-section,
.note-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero__panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1.35rem, 3vw, 2.4rem);
  background:
    radial-gradient(circle at top right, rgba(255, 95, 190, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(30, 10, 31, 0.96), rgba(12, 3, 18, 0.96));
}

.hero__grid,
.legal-stack {
  display: grid;
  gap: 1.15rem;
}

.hero__grid {
  align-items: start;
}

.hero__copy {
  max-width: 64ch;
}

.hero__copy > * + * {
  margin-top: 0.95rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
}

.hero__copy h1,
.legal-section h2 {
  margin: 0;
  font-family: var(--font-display);
}

.hero__copy h1 {
  font-size: clamp(2.3rem, 6vw, 4.2rem);
  line-height: 1.05;
}

.hero__lead {
  margin: 0;
  max-width: 60ch;
  font-size: clamp(1rem, 2.4vw, 1.08rem);
  line-height: 1.8;
}

.hero__meta,
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__meta {
  margin-top: 1.15rem;
}

.hero__actions {
  margin-top: 1.1rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.82rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 87, 177, 0.18);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.85rem;
}

.hero__support {
  display: grid;
  gap: 0.7rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted-strong);
  font-size: 0.94rem;
}

.back-link::before {
  content: "←";
  color: var(--accent-strong);
}

.note-card {
  background:
    linear-gradient(180deg, rgba(25, 8, 28, 0.98), rgba(12, 3, 17, 0.96));
}

.note-card strong {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.note-card p {
  margin: 0;
}

.legal-wrap {
  padding: 0 0 clamp(2.5rem, 6vw, 4.5rem);
}

.legal-section,
.note-card,
.footer__panel {
  padding: clamp(1.2rem, 3vw, 1.75rem);
}

.legal-section h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.1;
}

.legal-section p,
.legal-section li {
  font-size: clamp(0.98rem, 2.4vw, 1.04rem);
  line-height: 1.85;
}

.legal-section p {
  margin: 0.95rem 0 0;
}

.legal-section ul {
  margin: 0.9rem 0 0;
  padding-left: 1.3rem;
}

.legal-section li + li {
  margin-top: 0.55rem;
}

.legal-section a,
.note-card a,
.footer a {
  color: var(--accent);
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.9rem;
  color: var(--muted-strong);
  font-size: 0.95rem;
}

.section-link::after {
  content: "→";
  color: var(--accent-strong);
}

.footer {
  padding: 0 0 3rem;
}

.footer__panel {
  background: linear-gradient(180deg, rgba(18, 6, 20, 0.92), rgba(11, 3, 15, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__panel p {
  margin: 0;
}

.footer__panel p + p {
  margin-top: 0.65rem;
}

@media (min-width: 800px) {
  .hero__grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }
}

@media (max-width: 799px) {
  .nav {
    min-height: auto;
    padding: 1rem 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand {
    width: 100%;
  }

  .nav .btn {
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__meta {
    gap: 0.55rem;
  }

  .tag {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .legal-section {
    border-radius: 24px;
  }
}
