:root {
  color-scheme: dark;
  --bg: #02180c;
  --bg-deep: #010c06;
  --panel: rgba(8, 31, 19, 0.94);
  --panel-soft: rgba(255, 255, 255, 0.035);
  --border: rgba(255, 255, 255, 0.09);
  --gold: #d9b543;
  --emerald: #34d399;
  --text: #f2f7f3;
  --muted: #9eafa4;
  --dark-text: #06120c;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg-deep);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 90% -10%, rgba(52, 211, 153, 0.15), transparent 34rem),
    radial-gradient(circle at -10% 100%, rgba(217, 181, 67, 0.1), transparent 30rem),
    linear-gradient(180deg, #031a0d 0%, #010c06 100%);
  color: var(--text);
  font-family:
    Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.page-shell {
  width: min(100% - 28px, 820px);
  margin: 0 auto;
  padding: 28px 0 72px;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(217, 181, 67, 0.1);
  border: 1px solid rgba(217, 181, 67, 0.32);
  color: var(--gold);
  font-weight: 900;
  font-size: 19px;
}

.brand-name {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.2px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.nav-links a {
  padding: 8px 11px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
  border: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.hero {
  padding: 28px;
  border-radius: 30px;
  background: var(--panel);
  border: 1px solid rgba(217, 181, 67, 0.28);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  margin-bottom: 18px;
}

.hero-top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 19px;
  display: grid;
  place-items: center;
  font-size: 25px;
  background: rgba(217, 181, 67, 0.1);
  border: 1px solid rgba(217, 181, 67, 0.32);
}

.hero-icon.privacy {
  background: rgba(52, 211, 153, 0.1);
  border-color: rgba(52, 211, 153, 0.32);
}

.eyebrow {
  margin: 0 0 3px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.8px;
}

h1 {
  margin: 0;
  font-size: clamp(27px, 5vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.8px;
}

.hero-copy {
  margin: 20px 0 0;
  color: var(--muted);
  max-width: 700px;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.badge {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  border: 1px solid rgba(217, 181, 67, 0.24);
  background: rgba(217, 181, 67, 0.07);
}

.badge.current {
  color: var(--emerald);
  border-color: rgba(52, 211, 153, 0.25);
  background: rgba(52, 211, 153, 0.07);
}

.section {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 15px;
  padding: 19px;
  margin-bottom: 12px;
  border-radius: 23px;
  background: var(--panel-soft);
  border: 1px solid var(--border);
}

.section-number {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.8px;
  background: rgba(217, 181, 67, 0.08);
  border: 1px solid rgba(217, 181, 67, 0.23);
}

.section h2 {
  margin: 1px 0 7px;
  font-size: 17px;
  line-height: 1.3;
}

.section p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.support-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px;
  margin-top: 18px;
  border-radius: 24px;
  text-decoration: none;
  color: var(--dark-text);
  background: var(--emerald);
  box-shadow: 0 16px 44px rgba(52, 211, 153, 0.16);
}

.support-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.3);
  font-size: 23px;
}

.support-copy {
  min-width: 0;
  flex: 1;
}

.support-label {
  display: block;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.3px;
  opacity: 0.65;
}

.support-title {
  display: block;
  font-size: 16px;
  font-weight: 900;
}

.support-email {
  display: block;
  font-size: 12px;
  font-weight: 700;
  opacity: 0.72;
  overflow-wrap: anywhere;
}

.support-arrow {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.28);
  font-size: 19px;
  font-weight: 900;
}

.footer {
  text-align: center;
  color: #77877e;
  font-size: 11px;
  margin-top: 30px;
}

@media (max-width: 600px) {
  .page-shell {
    width: min(100% - 22px, 820px);
    padding-top: 15px;
  }

  .top-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    padding: 19px;
    border-radius: 24px;
  }

  .hero-top {
    align-items: flex-start;
  }

  .hero-icon {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
    border-radius: 17px;
  }

  .section {
    grid-template-columns: 35px minmax(0, 1fr);
    padding: 15px;
    gap: 11px;
    border-radius: 19px;
  }

  .section-number {
    width: 33px;
    height: 33px;
    border-radius: 11px;
    font-size: 10px;
  }

  .section h2 {
    font-size: 15px;
  }

  .section p {
    font-size: 13px;
  }

  .support-card {
    padding: 15px;
    gap: 11px;
  }

  .support-icon {
    width: 43px;
    height: 43px;
    flex-basis: 43px;
  }
}
