:root {
  --bg: #07100b;
  --bg-deep: #040806;
  --surface: rgba(12, 23, 17, .78);
  --surface-strong: rgba(16, 29, 21, .9);
  --text: #f6f8f6;
  --muted: #a8b2ab;
  --green: #75df98;
  --line: rgba(231, 244, 235, .12);
  --line-strong: rgba(231, 244, 235, .2);
  --shadow: 0 28px 80px rgba(0, 0, 0, .34);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  background: var(--bg-deep);
}

body {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: transparent;
  font-family: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 8%, rgba(54, 142, 82, .12), transparent 30%),
    radial-gradient(circle at 82% 52%, rgba(67, 152, 94, .08), transparent 32%),
    linear-gradient(180deg, #08110c 0%, #050a07 72%, #040806 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .11;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent, black 22%, black 78%, transparent);
}

::selection {
  color: #041008;
  background: var(--green);
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
  padding: 164px 0 72px;
}

.topnav {
  position: fixed;
  top: 20px;
  left: 50vw;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(1280px, calc(100vw - 38px));
  height: 82px;
  padding: 0 10px 0 22px;
  translate: -50% 0;
  border: 1px solid rgba(238, 248, 241, .24);
  border-radius: 999px;
  background: rgba(10, 20, 14, .46);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.11), 0 20px 54px rgba(0,0,0,.3);
  backdrop-filter: blur(28px) saturate(135%) contrast(1.05);
  -webkit-backdrop-filter: blur(28px) saturate(135%) contrast(1.05);
}

.topnav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border: 1px solid rgba(231,244,235,.18);
  border-radius: 999px;
  color: #07100b;
  background: var(--green);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-decoration: none;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.topnav a:hover,
.topnav a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(231,244,235,.24);
  color: #07100b;
  background: #92ecae;
}

.topnav .legal-brand {
  justify-content: flex-start;
  min-width: 64px;
  margin-right: auto;
  padding: 0;
  border: 0;
  color: var(--text);
  background: transparent;
}

.topnav .legal-brand:hover,
.topnav .legal-brand:focus-visible {
  transform: none;
  border-color: transparent;
  background: transparent;
}

.legal-brand-logo {
  position: relative;
  display: grid;
  flex: 0 0 64px;
  width: 64px;
  height: 50px;
  place-items: center;
  overflow: hidden;
  border: 0;
  background: transparent;
}

.legal-brand-logo img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  font-weight: 560;
  letter-spacing: -.06em;
  line-height: .92;
  text-wrap: balance;
}

.lead {
  max-width: 650px;
  margin: 28px 0 54px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.75;
}

.card {
  position: relative;
  margin-bottom: 14px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(145deg, var(--surface-strong), var(--surface));
  box-shadow: 0 20px 58px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
}

h2 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 1.24rem;
  font-weight: 650;
  letter-spacing: -.025em;
  line-height: 1.2;
}

p {
  margin: 0 0 12px;
  color: #b8c1ba;
}

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

strong {
  color: #eef3ef;
  font-weight: 700;
}

ul {
  margin: 4px 0 10px 20px;
  padding: 0;
  color: #b8c1ba;
}

li {
  margin-bottom: 5px;
  padding-left: 4px;
}

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

.card a,
footer a {
  color: #91eaaa;
  text-underline-offset: 3px;
  transition: color .2s ease;
}

.card a:hover,
.card a:focus-visible,
footer a:hover,
footer a:focus-visible {
  color: #fff;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding: 24px 2px 0;
  border-top: 1px solid var(--line);
  color: #89938c;
  font-size: .76rem;
  letter-spacing: .05em;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #cbd3cd;
  font-weight: 750;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.footer-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a {
  color: #8d9790;
  text-decoration: none;
}

@media (max-width: 700px) {
  .shell {
    width: calc(100% - 28px);
    padding: 118px 0 52px;
  }

  .topnav {
    top: 10px;
    width: calc(100vw - 20px);
    height: 68px;
    padding: 0 7px 0 10px;
  }

  .topnav a {
    min-height: 48px;
    padding-inline: 14px;
    font-size: .63rem;
  }

  .topnav .legal-brand {
    min-width: 58px;
  }

  .legal-brand-logo {
    flex-basis: 58px;
    width: 58px;
    height: 46px;
  }

  h1 {
    font-size: clamp(3.2rem, 17vw, 5.4rem);
  }

  .lead {
    margin: 22px 0 42px;
  }

  .card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  h2 {
    font-size: 1.08rem;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .topnav a {
    padding-inline: 11px;
  }
}
