:root {
  color-scheme: dark;
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.78);
  --soft: rgba(255, 255, 255, 0.56);
  --faint: rgba(255, 255, 255, 0.28);
  --line: rgba(255, 255, 255, 0.16);
  --panel: rgba(26, 17, 37, 0.42);
  --panel-strong: rgba(26, 17, 37, 0.62);
  --gold: #f6c75f;
  --rose: #ff6b5c;
  --violet: #7d5cff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #1a1125 0%, #301b3c 50%, #f73a3a 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: var(--ink);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

a:hover {
  color: var(--gold);
}

.email-address {
  white-space: nowrap;
}

.site-shell {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: brightness(1.18) contrast(1.08);
  mix-blend-mode: lighten;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text strong {
  font-size: 15px;
}

.brand-text span {
  color: var(--soft);
  font-size: 13px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
}

.nav a:hover {
  color: var(--ink);
}

.landing {
  min-height: calc(100vh - 84px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 42px 0 72px;
  overflow: hidden;
}

.logo-hero {
  width: 192px;
  height: 192px;
  object-fit: contain;
  filter: brightness(1.2) contrast(1.1) drop-shadow(0 24px 48px rgba(0, 0, 0, 0.3));
  mix-blend-mode: lighten;
}

.logo-hero.large {
  width: 224px;
  height: 224px;
}

.tagline-space {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 18px 0 42px;
}

.tagline {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2.3vw, 22px);
}

.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 4px 0 32px;
  opacity: 0.46;
}

.divider::before,
.divider::after {
  content: "";
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.divider::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.diamond {
  width: 18px;
  height: 18px;
  border: 2px solid var(--gold);
  transform: rotate(45deg);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.95);
  color: #281a31;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.button:hover {
  color: #281a31;
  background: #fff;
  transform: translateY(-1px);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.26);
}

.button.secondary:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.14);
}

.bottom-note {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.32);
  font-size: 14px;
  white-space: nowrap;
}

.page-header {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 36px 0 28px;
}

.eyebrow {
  margin: 18px 0 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(42px, 7vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
}

.page-meta {
  max-width: 740px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.content {
  display: grid;
  gap: 22px;
  padding: 18px 0 72px;
}

.section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  padding: 24px;
}

.section h2 {
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.16;
  letter-spacing: 0;
}

.section p {
  max-width: 860px;
  margin: 0 0 14px;
  color: var(--muted);
}

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

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.info-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-strong);
  padding: 18px;
}

.info-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  letter-spacing: 0;
}

.info-card p,
.info-card li {
  color: var(--muted);
  font-size: 15px;
}

.info-card ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.legal {
  max-width: 920px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 34px;
  color: var(--soft);
  font-size: 14px;
}

.footer .site-shell {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 820px) {
  .topbar,
  .footer .site-shell {
    align-items: flex-start;
    flex-direction: column;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .landing {
    justify-content: flex-start;
    padding-top: 52px;
  }

  .logo-hero,
  .logo-hero.large {
    width: 176px;
    height: 176px;
  }

  .nav {
    flex-wrap: wrap;
  }
}
