:root {
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  color: #172033;
  background: #f7f9fc;
  --surface: #ffffff;
  --muted: #657084;
  --border: #dfe5ed;
  --primary: #2563eb;
  --accent: #eaf2ff;
  --radius: 16px;
}

* {
  box-sizing: border-box;
}
body {
  margin: 0;
  line-height: 1.6;
}
a {
  color: inherit;
}
.container {
  width: min(1060px, calc(100% - 40px));
  margin: 0 auto;
}
.site-header {
  border-bottom: 1px solid var(--border);
  background: rgb(247 249 252 / 0.92);
}
.site-header__inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.identity {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
}
.identity a,
.nav a,
.text-link {
  text-decoration: none;
}
.identity__publisher {
  color: var(--muted);
}
.identity__product {
  font-weight: 700;
}
.identity__separator {
  color: #aeb7c5;
}
.nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
}
.nav a:hover,
.nav a[aria-current='page'],
.text-link:hover {
  color: var(--primary);
}
.hero {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 72px;
  align-items: center;
  padding: 84px 0;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 9px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge svg,
.feature svg,
.fact svg {
  width: 18px;
  height: 18px;
}
h1 {
  max-width: 680px;
  margin: 20px 0 18px;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}
.hero__lead {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}
.hero__actions {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid var(--primary);
  border-radius: 11px;
  background: var(--primary);
  color: white;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.button--outline {
  border-color: var(--border);
  background: var(--surface);
  color: #172033;
}
.weather-panel {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  overflow: hidden;
}
.weather-panel__top {
  padding: 24px;
}
.weather-panel__place {
  color: var(--muted);
  font-size: 12px;
}
.weather-panel__temp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 12px 0;
}
.weather-panel__temp strong {
  font-size: 62px;
  line-height: 1;
  letter-spacing: -0.06em;
}
.weather-panel__temp svg {
  width: 70px;
  height: 70px;
  color: #2563eb;
}
.weather-panel__top > strong {
  font-size: 15px;
}
.weather-panel__hours {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
}
.weather-panel__hours div {
  padding: 14px 8px;
  display: grid;
  justify-items: center;
  gap: 3px;
  border-right: 1px solid var(--border);
  font-size: 12px;
}
.weather-panel__hours div:last-child {
  border-right: 0;
}
.weather-panel__hours span {
  color: var(--muted);
  font-size: 10px;
}
.separator {
  height: 1px;
  border: 0;
  background: var(--border);
}
.section {
  padding: 76px 0;
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 34px;
}
.section-heading h2,
.document-header h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.section-heading p,
.document-header p {
  margin: 0;
  color: var(--muted);
}
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}
.feature {
  padding: 28px 28px 28px 0;
  border-bottom: 1px solid var(--border);
}
.feature svg {
  color: var(--primary);
}
.feature h3 {
  margin: 16px 0 7px;
  font-size: 16px;
}
.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.privacy-note {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}
.privacy-note h3 {
  margin: 0 0 8px;
}
.privacy-note p {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--muted);
}
.document-header {
  padding: 72px 0 50px;
}
.document-header h1 {
  margin: 18px 0 12px;
}
.document-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 70px;
  padding: 48px 0 72px;
}
.document-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  color: var(--muted);
  font-size: 13px;
}
.document-meta strong {
  margin-top: 18px;
  color: #172033;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.document-meta strong:first-child {
  margin-top: 0;
}
.document-section {
  margin-bottom: 36px;
}
.document-section h2 {
  margin: 0 0 10px;
  font-size: 20px;
}
.document-section p,
.document-section li {
  color: var(--muted);
}
.document-section code {
  padding: 2px 5px;
  border-radius: 5px;
  background: #eef2f7;
  color: #344054;
}
.support-list {
  display: grid;
  gap: 14px;
}
.support-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}
.support-card h2 {
  margin: 0 0 8px;
  font-size: 17px;
}
.support-card p,
.support-card ol {
  margin: 0;
  color: var(--muted);
}
.site-footer {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 620px);
  }
  .site-header__inner {
    min-height: 58px;
  }
  .identity__publisher,
  .identity__separator {
    display: none;
  }
  .nav {
    gap: 14px;
  }
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 58px 0;
  }
  h1 {
    font-size: 46px;
  }
  .section {
    padding: 52px 0;
  }
  .section-heading,
  .document-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .feature {
    padding-right: 0;
  }
  .document-header {
    padding: 52px 0 36px;
  }
  .document-header h1 {
    overflow-wrap: anywhere;
    font-size: 34px;
  }
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }
}
