* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  background: #111111;
  color: #ffffff;

  font-family: "Inter", sans-serif;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}


/* --------------------------------------------------
   HOME
-------------------------------------------------- */

.home {
  min-height: 100dvh;

  display: flex;
  flex-direction: column;

  padding: 48px 64px 42px;
}

.center-content {
  flex: 1;

  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-placeholder {
  width: 116px;
  height: 116px;

  border: 2px solid #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.footer {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  font-size: 16px;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 42px;
}

.footer-link {
  font-weight: 400;
  opacity: 0.9;

  transition: opacity 160ms ease;
}

.footer-link:hover {
  opacity: 0.55;
}

.linkedin-link {
  width: 22px;
  height: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0.9;

  transition: opacity 160ms ease;
}

.linkedin-link:hover {
  opacity: 0.55;
}

.linkedin-link svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}


/* --------------------------------------------------
   PRIVACY POLICY
-------------------------------------------------- */

.privacy-body {
  background: #111111;
  color: #ffffff;
}

.privacy-header {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  padding: 42px 64px;

  font-size: 14px;
}

.back-link {
  color: #c5c5c5;

  font-weight: 400;

  transition: color 160ms ease;
}

.back-link:hover {
  color: #ffffff;
}

.privacy-page {
  width: min(1040px, calc(100% - 96px));
  margin: 0 auto;

  padding: 72px 0 64px;
}

.privacy-title {
  margin-bottom: 72px;
}

.privacy-title h1 {
  max-width: 900px;

  font-size: clamp(52px, 7vw, 88px);
  font-weight: 700;
  line-height: 0.98;

  letter-spacing: -0.055em;
}

.last-updated {
  margin-top: 22px;

  color: #858585;

  font-size: 14px;
  font-weight: 400;
}

.policy-section {
  padding: 38px 0;

  border-top: 1px solid #2c2c2c;
}

.policy-section h2 {
  margin-bottom: 20px;

  color: #ffffff;

  font-size: 21px;
  font-weight: 600;
  line-height: 1.3;

  letter-spacing: -0.025em;
}

.policy-section h3 {
  margin-top: 28px;
  margin-bottom: 10px;

  color: #ffffff;

  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.policy-section p {
  max-width: 980px;

  margin-bottom: 12px;

  color: #b7b7b7;

  font-size: 16px;
  font-weight: 400;
  line-height: 1.62;

  letter-spacing: -0.01em;
}

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

.policy-section ul {
  max-width: 980px;

  margin: 2px 0 18px 20px;

  color: #b7b7b7;
}

.policy-section li {
  margin-bottom: 7px;
  padding-left: 6px;

  font-size: 16px;
  font-weight: 400;
  line-height: 1.58;
}

.policy-section a {
  color: #ffffff;

  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.policy-section a:hover {
  opacity: 0.65;
}

.contact-section {
  padding-bottom: 54px;
}

.privacy-email {
  display: inline-block;

  margin-top: 4px;

  font-size: clamp(20px, 4vw, 30px);
  font-weight: 600;

  letter-spacing: -0.025em;

  text-decoration: none !important;
}

.privacy-footer {
  padding: 28px 0 8px;

  border-top: 1px solid #2c2c2c;

  display: flex;
  align-items: center;
  justify-content: space-between;

  color: #777777;

  font-size: 13px;
}

.privacy-footer a {
  transition: color 160ms ease;
}

.privacy-footer a:hover {
  color: #ffffff;
}


/* --------------------------------------------------
   RESPONSIVE
-------------------------------------------------- */

@media (max-width: 700px) {
  .home {
    padding: 30px 24px 28px;
  }

  .footer {
    align-items: center;

    font-size: 13px;
  }

  .footer-right {
    gap: 18px;
  }

  .linkedin-link {
    width: 20px;
    height: 20px;
  }

  .privacy-header {
    padding: 28px 24px;
  }

  .privacy-page {
    width: calc(100% - 48px);

    padding-top: 48px;
    padding-bottom: 44px;
  }

  .privacy-title {
    margin-bottom: 56px;
  }

  .privacy-title h1 {
    font-size: 50px;
    font-weight: 700;
  }

  .last-updated {
    margin-top: 18px;
  }

  .policy-section {
    padding: 32px 0;
  }

  .policy-section h2 {
    margin-bottom: 16px;

    font-size: 19px;
  }

  .policy-section p,
  .policy-section li {
    font-size: 15px;
  }

  .privacy-footer {
    align-items: flex-start;
    gap: 24px;
  }
}

@media (max-width: 520px) {
  .footer {
    align-items: flex-end;
  }

  .footer-right {
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }
}
