:root {
  --surface: #F7F7F7;
  --ink: #2E2E2E;
  --accent: #2B7FFF;
  --blue-start: #0062FF;
  --blue-end: #003EA3;
  --phone-gap-after-cta: 120px;
}

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

html {
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--blue-start);
}

body {
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--blue-start);
  font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--surface);
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--blue-start);
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: visible;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  position: sticky;
  top: 0;
  z-index: 30;
  background: transparent;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 38px;
  width: auto;
  display: block;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border: 0;
  border-radius: 8px;
  background: var(--accent, #2b7fff);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: filter .2s ease, transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn-primary:hover {
  filter: brightness(1.06);
}

.btn-primary.btn-primary--block {
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 400;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border: 1px solid var(--accent, #2b7fff);
  border-radius: 8px;
  background: transparent;
  color: var(--accent, #2b7fff);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.btn-outline:hover {
  background: rgba(43, 127, 255, 0.08);
}

.btn-outline.btn-outline--block {
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 400;
}

.btn-outline.btn-outline--inverse {
  border-color: var(--surface);
  color: var(--surface);
}

.btn-outline.btn-outline--inverse:hover {
  background: rgba(247, 247, 247, 0.12);
}

@media (max-width: 768px) {
  header {
    padding: 24px 32px 24px 48px;
  }
}
