@font-face {
  font-family: Inter;
  src: url("fonts/InterVariable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #071321;
  --blue: #0874f9;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: #dfe4ea;
  font-synthesis: none;
}

* { box-sizing: border-box; }
body { min-width: 320px; margin: 0; background: #dfe4ea; }
a { color: inherit; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 10;
  padding: 10px 12px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.phone-page {
  width: min(100%, 430px);
  min-height: 100dvh;
  margin: 24px auto;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 80px rgba(7, 17, 31, .2);
}

.mobile-header {
  min-height: 66px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid #e3e7ec;
  background: #fff;
}
.brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -.07em;
  text-decoration: none;
}
.header-actions { display: flex; align-items: center; gap: 10px; }
.call-action {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #526176;
  font-size: 10.5px;
  font-weight: 750;
  text-decoration: none;
}
.call-action svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.header-date {
  min-height: 44px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--blue);
  color: #0067e8;
  background: #fff;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.privacy-intro {
  padding: 54px 22px 50px;
  color: #fff;
  background: var(--ink);
}
.privacy-intro > p {
  margin: 0 0 14px;
  color: #86beff;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.privacy-intro h1 {
  max-width: 360px;
  margin: 0 0 22px;
  font-size: clamp(44px, 12vw, 54px);
  line-height: .92;
  letter-spacing: -.07em;
}
.privacy-intro span { color: #aeb9c7; font-size: 11px; font-weight: 650; }

.privacy-content { padding: 0 22px; background: #fff; }
.privacy-content section {
  padding: 34px 0 36px;
  border-bottom: 1px solid #dce2ea;
}
.privacy-content section:last-child { border-bottom: 0; }
.section-number {
  margin: 0 0 12px;
  color: #0067e8;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
}
.privacy-content h2 {
  margin: 0 0 14px;
  font-size: 23px;
  line-height: 1.05;
  letter-spacing: -.045em;
}
.privacy-content section > p:not(.section-number) {
  margin: 0 0 12px;
  color: #526176;
  font-size: 14px;
  line-height: 1.68;
}
.privacy-content section > p:last-child { margin-bottom: 0; }
.privacy-content section a { color: #0067e8; font-weight: 800; }

.privacy-footer {
  padding: 24px 22px 26px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 7px;
  color: #fff;
  background: var(--blue);
  font-size: 11px;
  font-weight: 720;
}
.privacy-footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}
.privacy-footer span { opacity: .8; }
a:focus-visible { outline: 3px solid #88beff; outline-offset: 2px; }

@media (max-width: 520px) {
  body { background: #fff; }
  .phone-page { width: 100%; margin: 0; box-shadow: none; }
}

@media (max-width: 350px) {
  .mobile-header { padding-inline: 12px; }
  .header-actions { gap: 7px; }
  .call-action span { display: none; }
  .header-date { padding-inline: 9px; font-size: 10.5px; }
  .privacy-intro, .privacy-content { padding-inline: 18px; }
}

@media (min-width: 561px) {
  .phone-page {
    width: min(1120px, calc(100% - 24px));
    margin: 24px auto;
  }

  .mobile-header {
    min-height: 72px;
    padding-inline: clamp(26px, 5vw, 52px);
  }

  .brand { font-size: 30px; }
  .header-actions { gap: 16px; }
  .header-date { padding-inline: 16px; }

  .privacy-intro {
    min-height: 300px;
    padding: 62px clamp(38px, 7vw, 80px) 54px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .privacy-intro h1 {
    max-width: 700px;
    font-size: clamp(56px, 8vw, 72px);
  }

  .privacy-content { padding: 0 clamp(38px, 7vw, 80px); }
  .privacy-content section { padding-block: 42px; }
  .privacy-content h2 { font-size: 27px; }
  .privacy-content section > p:not(.section-number) { font-size: 14px; }

  .privacy-footer {
    min-height: 116px;
    padding: 30px clamp(38px, 7vw, 80px);
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 720px) {
  .privacy-content section {
    min-height: 176px;
    display: grid;
    grid-template-columns: 44px minmax(170px, 230px) minmax(0, 1fr);
    align-content: start;
    gap: 0 clamp(20px, 3.5vw, 42px);
  }

  .section-number {
    grid-column: 1;
    grid-row: 1 / span 3;
  }

  .privacy-content h2 {
    grid-column: 2;
    grid-row: 1 / span 3;
    margin: 0;
  }

  .privacy-content section > p:not(.section-number) {
    grid-column: 3;
    margin-bottom: 10px;
  }
}

@media (min-width: 960px) {
  .phone-page { width: min(1120px, calc(100% - 40px)); }
  .privacy-intro { min-height: 330px; }
  .privacy-content section {
    min-height: 190px;
    padding-block: 48px;
    grid-template-columns: 48px 240px minmax(0, 1fr);
  }
  .privacy-content h2 { font-size: 30px; }
  .privacy-content section > p:not(.section-number) { max-width: 640px; font-size: 15px; }
}
