:root {
  --bg: #000000;
  --panel: rgba(255, 255, 255, 0.035);
  --panel-strong: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --soft: rgba(255, 255, 255, 0.82);
  --red: #b01616;
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.08), transparent 32rem),
    linear-gradient(180deg, #050505 0%, #000000 42%, #050505 100%);
  color: var(--text);
  font-family: "Poppins", sans-serif;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: 4px;
}

.glass-back {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 22px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.info-shell {
  width: min(1040px, calc(100% - 44px));
  margin: 0 auto;
  padding: 112px 0 56px;
}

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

.brand-mark {
  font-family: "Anton", sans-serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.info-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.info-button-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 16px;
  color: #ffffff;
  font-family: "Anton", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.info-hero {
  max-width: 780px;
  margin-bottom: 34px;
}

.eyebrow {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 10vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
}

.lead {
  margin: 18px 0 0;
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.14rem);
  line-height: 1.75;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 24px;
  align-items: start;
}

.policy-content {
  display: grid;
  gap: 16px;
}

.policy-card,
.support-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  padding: 24px;
}

.policy-card h2,
.support-card h2 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
}

.policy-card h3 {
  margin: 22px 0 8px;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.policy-card p,
.policy-card li,
.support-card p {
  color: var(--soft);
  font-size: 0.94rem;
  line-height: 1.78;
}

.policy-card p,
.support-card p {
  margin: 0 0 12px;
}

.policy-card p:last-child,
.support-card p:last-child {
  margin-bottom: 0;
}

.policy-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.policy-card li + li {
  margin-top: 8px;
}

.policy-card a,
.support-card a {
  color: #ffffff;
  text-decoration-color: rgba(176, 22, 22, 0.85);
  text-underline-offset: 4px;
}

.support-card {
  position: sticky;
  top: 24px;
}

.support-links {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.support-links a {
  min-height: 36px;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  text-decoration: none;
}

.support-links a:hover,
.support-links a:focus-visible {
  color: #ffffff;
}

.site-footer {
  width: 100%;
  background: #050505;
  border-top: 1px solid var(--line);
  color: #ffffff;
  padding: 58px max(24px, 6vw) calc(72px + env(safe-area-inset-bottom));
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 1.45fr) repeat(4, minmax(120px, 1fr));
  gap: 34px;
}

.footer-logo,
.footer-tagline,
.footer-group h2 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
}

.footer-logo {
  display: inline-block;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.footer-tagline {
  margin: 12px 0 10px;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}

.footer-brand p:not(.footer-tagline) {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.footer-group h2 {
  margin: 0 0 14px;
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.footer-group a {
  display: block;
  width: fit-content;
  min-height: 28px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
  text-decoration: none;
  transition: color 0.18s ease;
}

.footer-group a + a {
  margin-top: 7px;
}

.footer-group a:hover,
.footer-group a:focus-visible,
.footer-logo:hover,
.footer-logo:focus-visible {
  color: #ffffff;
}

.footer-contact a:first-of-type::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 9px 1px 0;
  border-radius: 999px;
  background: var(--red);
}

.footer-bottom {
  width: min(1180px, 100%);
  margin: 42px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.76rem;
  line-height: 1.6;
}

@media (min-width: 701px) and (max-width: 1040px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .support-card {
    position: static;
  }

  .footer-inner {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .info-shell {
    width: min(100% - 32px, 1040px);
    padding: 88px 0 42px;
  }

  .info-top {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 38px;
  }

  .info-actions {
    width: 100%;
  }

  .info-button-link {
    flex: 1 1 140px;
  }

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

  .policy-card,
  .support-card {
    padding: 20px;
    border-radius: 18px;
  }

  .support-card {
    position: static;
  }

  .site-footer {
    padding: 44px 22px calc(58px + env(safe-area-inset-bottom));
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-group a {
    min-height: 34px;
    font-size: 0.92rem;
  }

  .footer-bottom {
    flex-direction: column;
    margin-top: 30px;
  }
}
