:root {
  --bg: #0f1115;
  --bg-deep: #080a0f;
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.64);
  --faint: rgba(255, 255, 255, 0.44);
  --line: rgba(255, 255, 255, 0.12);
  --violet: #9393ac;
  --violet-bright: #c4b5fd;
  --green: #5f8f78;
  --content: 880px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100svh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -18%, rgba(147, 147, 172, 0.22), transparent 28rem),
    radial-gradient(circle at 86% 92%, rgba(95, 143, 120, 0.13), transparent 24rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, var(--bg), var(--bg-deep));
  background-repeat: no-repeat, no-repeat, repeat, repeat, repeat;
  background-size: auto, auto, 48px 48px, 48px 48px, auto;
  font-family: Verdana, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration-color: rgba(196, 181, 253, 0.7);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--violet-bright);
}

.landing-page {
  display: grid;
  grid-template-rows: 1fr auto;
}

.landing {
  display: grid;
  align-content: center;
  justify-items: center;
  width: min(720px, calc(100% - 40px));
  min-height: calc(100svh - 86px);
  margin: 0 auto;
  padding: clamp(4rem, 12vh, 8rem) 0;
  text-align: center;
}

.landing-logo {
  width: clamp(96px, 16vw, 150px);
  height: auto;
  margin-bottom: clamp(1.25rem, 3vw, 1.9rem);
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1.1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0.75rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.22rem, 2.2vw, 1.55rem);
  line-height: 1.25;
  letter-spacing: 0;
}

p {
  color: var(--muted);
}

.landing-text {
  position: relative;
  width: min(620px, 100%);
  padding-left: clamp(1rem, 3vw, 1.35rem);
  text-align: left;
}

.landing-text::before {
  position: absolute;
  top: 0.18rem;
  bottom: 0.18rem;
  left: 0;
  width: 3px;
  content: "";
  background: #0a7b62;
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(10, 123, 98, 0.34);
}

.landing p {
  max-width: 620px;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 2.1vw, 1.14rem);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1120px, calc(100% - 40px));
  min-height: 86px;
  margin: 0 auto;
  color: var(--faint);
  border-top: 1px solid var(--line);
  font-family: Verdana, sans-serif;
  font-size: 0.78rem;
}

.site-footer nav {
  display: inline-flex;
  gap: 1rem;
}

.legal-header {
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 0;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
  font-family: Verdana, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

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

.legal-page {
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(4rem, 8vw, 6rem);
}

.eyebrow {
  margin-bottom: 0.85rem;
  color: var(--violet-bright);
  font-family: Verdana, sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-section {
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
}

.legal-section:first-of-type {
  margin-top: 2rem;
}

.legal-section p,
.legal-section address {
  max-width: 720px;
  margin-bottom: 0.8rem;
  color: var(--muted);
  font-family: Verdana, sans-serif;
  font-size: 0.96rem;
}

address {
  font-style: normal;
}

strong {
  color: var(--text);
}

@media (max-width: 700px) {
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }

  .landing {
    min-height: calc(100svh - 120px);
  }
}
