@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #08090d;
  --surface: rgba(18, 20, 29, 0.82);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f6f0e8;
  --muted: rgba(246, 240, 232, 0.68);
  --accent: #d97945;
  --content-width: min(920px, calc(100vw - 32px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 18%, rgba(217, 121, 69, 0.12), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(217, 121, 69, 0.1), transparent 26%),
    linear-gradient(180deg, #090b10 0%, #08090d 100%);
  line-height: 1.65;
}

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

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

.shell {
  width: var(--content-width);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0;
  backdrop-filter: blur(18px);
  background: rgba(8, 9, 13, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 120px;
  height: 40px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand span {
  display: block;
  color: rgba(246, 240, 232, 0.46);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero {
  padding: 84px 0 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(217, 121, 69, 0.28);
  border-radius: 999px;
  background: rgba(217, 121, 69, 0.08);
  color: #e6aa85;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

h1 {
  margin: 22px 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 8vw, 5.8rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero p {
  margin: 0;
  max-width: 56ch;
  color: var(--muted);
  font-size: 1.02rem;
}

main {
  padding-bottom: 72px;
}

.legal-section {
  margin-top: 26px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.legal-section h2 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
}

.legal-section ul {
  margin: 0;
  padding-left: 18px;
}

.legal-card {
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  background: rgba(255,255,255,0.02);
}

.footer {
  padding: 26px 0 42px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer p {
  margin: 0;
  color: rgba(246, 240, 232, 0.46);
  font-size: 0.9rem;
}

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

  .back-link {
    width: 100%;
  }
}
