:root {
  --bg: #02070d;
  --panel: rgba(3, 16, 29, .78);
  --panel-2: rgba(6, 24, 42, .56);
  --line: rgba(73, 184, 255, .34);
  --line-strong: rgba(73, 184, 255, .72);
  --blue: #16aaff;
  --blue-soft: #63c6ff;
  --white: #f4f8fc;
  --muted: rgba(244, 248, 252, .72);
  --shadow: 0 28px 80px rgba(0, 0, 0, .52);
  --radius: 28px;
  --max: 1180px;
  --hero-title-font: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--white);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 49% 4%, rgba(22, 170, 255, .22), transparent 20%),
    radial-gradient(circle at 78% 20%, rgba(22, 170, 255, .12), transparent 24%),
    linear-gradient(180deg, rgba(2, 7, 13, .08), #02070d 88%);
  pointer-events: none;
  z-index: -1;
}

.page-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(2, 7, 13, .36), rgba(2, 7, 13, .64)),
    url("assets/bg.png");
  background-size: cover;
  background-position: center;
  opacity: .82;
  z-index: -2;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 12px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(calc(100% - 32px), var(--max));
  margin: 16px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(73, 184, 255, .28);
  border-radius: 999px;
  background: rgba(2, 12, 22, .68);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .35);
}

.brand-mini {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: .14em;
}
.brand-mini img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(22,170,255,.38));
}
.brand-mini span { font-size: 14px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}
.nav-links a { text-decoration: none; transition: color .2s ease; }
.nav-links a:hover { color: var(--white); }

.header-actions { display: flex; align-items: center; gap: 10px; min-width: max-content; }
.language-switch {
  display: flex;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(73,184,255,.26);
  border-radius: 999px;
  background: rgba(0, 25, 45, .68);
}
.lang-btn {
  border: 0;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--muted);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}
.lang-btn.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(22,170,255,.95), rgba(0,97,160,.95));
  box-shadow: 0 0 15px rgba(22,170,255,.26);
}

.outline-btn,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.outline-btn {
  padding: 10px 15px;
  border: 1px solid var(--line);
  color: #dff4ff;
  background: rgba(0, 40, 70, .48);
}
.primary-btn {
  padding: 15px 22px;
  color: #fff;
  background: linear-gradient(135deg, #17b6ff, #006daf);
  box-shadow: 0 15px 35px rgba(0, 145, 255, .26);
}
.secondary-btn {
  padding: 14px 21px;
  border: 1px solid var(--line);
  color: var(--white);
  background: rgba(3, 16, 29, .54);
}
.outline-btn:hover,
.primary-btn:hover,
.secondary-btn:hover { transform: translateY(-2px); }

.section-shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(440px, 1.08fr);
  gap: clamp(28px, 4vw, 68px);
  align-items: center;
  min-height: calc(100vh - 84px);
  padding: clamp(40px, 7vh, 78px) 0 64px;
}

.hero-copy { min-width: 0; }
.logo-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.logo-lockup img {
  width: 82px;
  filter: drop-shadow(0 0 18px rgba(255,255,255,.18)) drop-shadow(0 0 26px rgba(0,132,255,.2));
}
.logo-lockup p {
  margin: 0;
  font-size: 30px;
  letter-spacing: .24em;
  font-weight: 850;
  color: #e4e7eb;
  text-shadow: 0 2px 2px #000;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-soft);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .17em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
font-size: clamp(36px, 4.2vw, 58px);
  letter-spacing: -.045em;
  text-wrap: balance;
}
html[lang="ru"] h1 {
  font-size: clamp(38px, 4.2vw, 58px);
  letter-spacing: -.04em;
}
.hero-text {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.5;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.status-card {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  max-width: 560px;
  margin-top: 30px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(2, 12, 22, .64);
  backdrop-filter: blur(10px);
}
.status-card p { margin: 0; color: var(--muted); line-height: 1.35; }
.status-card strong { display: block; color: var(--white); }
.pulse {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #26c6ff;
  box-shadow: 0 0 0 9px rgba(38,198,255,.12), 0 0 22px rgba(38,198,255,.7);
  flex: 0 0 auto;
}

.hero-media {
  position: relative;
  min-height: 620px;
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 10% 0 0 8%;
  background: radial-gradient(circle, rgba(22,170,255,.28), transparent 56%);
  filter: blur(8px);
}
.hero-laptop {
  position: absolute;
  right: -12%;
  top: 12%;
  width: 92%;
  filter: drop-shadow(0 34px 54px rgba(0,0,0,.72));
  transform: perspective(1400px) rotateY(-11deg) rotateZ(2deg);
  transform-origin: center;
}
.hero-phone {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32%;
  min-width: 185px;
  filter: drop-shadow(0 34px 48px rgba(0,0,0,.78));
  transform: rotate(-7deg);
}

.platform-section,
.app-section,
.windows-section,
.community-section,
.bot-section,
.notice-section { padding: 70px 0; }
.section-heading {
  max-width: 700px;
  margin: 0 auto 28px;
  text-align: center;
}
.section-heading h2,
.app-content h2,
.bot-card h2,
.notice-card h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.section-heading p,
.app-content p,
.bot-card p,
.notice-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feature-card,
.notice-card,
.bot-card,
.community-card,
.windows-card,
.app-section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(3,16,29,.82), rgba(5, 24, 42, .5));
  box-shadow: var(--shadow), inset 0 0 34px rgba(22,170,255,.05);
  backdrop-filter: blur(14px);
}
.feature-card {
  padding: 24px;
  min-height: 230px;
}
.feature-card h3 { margin: 20px 0 10px; font-size: 21px; }
.feature-card p { color: var(--muted); line-height: 1.5; }
.feature-icon {
  display: inline-block;
  width: 48px;
  height: 48px;
  position: relative;
  color: var(--blue-soft);
  filter: drop-shadow(0 0 10px rgba(22,170,255,.45));
}
.feature-icon::before,
.feature-icon::after { content: ""; position: absolute; border-color: currentColor; }
.lock-icon::before { left: 9px; top: 20px; width: 30px; height: 24px; border: 3px solid; border-radius: 6px; }
.lock-icon::after { left: 15px; top: 5px; width: 18px; height: 20px; border: 3px solid; border-bottom: 0; border-radius: 14px 14px 0 0; }
.cloud-icon::before { left: 3px; top: 23px; width: 42px; height: 18px; border: 3px solid; border-top: 0; border-radius: 0 0 12px 12px; }
.cloud-icon::after { left: 10px; top: 12px; width: 28px; height: 22px; border: 3px solid; border-bottom: 0; border-radius: 24px 24px 0 0; }
.user-icon::before { left: 16px; top: 5px; width: 16px; height: 16px; border: 3px solid; border-radius: 50%; }
.user-icon::after { left: 7px; top: 28px; width: 34px; height: 20px; border: 3px solid; border-bottom: 0; border-radius: 24px 24px 0 0; }
.card-icon::before { left: 4px; top: 12px; width: 40px; height: 26px; border: 3px solid; border-radius: 7px; }
.card-icon::after { left: 9px; top: 22px; width: 30px; border-top: 3px solid; }

.app-section {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 48px;
  align-items: center;
  padding: 40px;
}
.app-preview {
  min-height: 500px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(22,170,255,.2), transparent 58%);
}
.app-preview img {
  max-height: 560px;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,.74));
  transform: rotate(-4deg);
}

.windows-card {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}

.windows-card::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto 45%;
  height: 75%;
  background: radial-gradient(circle, rgba(22,170,255,.26), transparent 62%);
  pointer-events: none;
}

.windows-content {
  position: relative;
  z-index: 2;
}

.windows-content h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -.035em;
}

.windows-content p {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.windows-mark {
  width: 66px;
  height: 66px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0, 46, 78, .42);
  box-shadow: 0 0 24px rgba(22,170,255,.22), inset 0 0 18px rgba(22,170,255,.08);
}

.windows-mark span {
  display: block;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--blue-soft), var(--blue));
}

.windows-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.windows-actions span {
  color: var(--muted);
  font-size: 14px;
}

.windows-download::before {
  content: "↓";
  margin-right: 9px;
  font-size: 1.08em;
}

.windows-preview {
  position: relative;
  z-index: 2;
  min-height: 260px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(22,170,255,.18), transparent 62%);
}

.windows-preview img {
  width: min(100%, 560px);
  filter: drop-shadow(0 32px 54px rgba(0,0,0,.72));
  transform: perspective(1200px) rotateY(-8deg) rotateZ(1deg);
}


.community-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, .92fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}

.community-card::before {
  content: "";
  position: absolute;
  inset: -35% 42% auto -12%;
  height: 85%;
  background: radial-gradient(circle, rgba(22,170,255,.22), transparent 62%);
  pointer-events: none;
}

.community-content {
  position: relative;
  z-index: 2;
}

.community-content h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -.035em;
}

.community-content p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.community-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.community-btn {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  color: var(--white);
  text-decoration: none;
  background: rgba(2, 12, 22, .54);
  box-shadow: inset 0 0 24px rgba(22,170,255,.04);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.community-btn:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  background: rgba(5, 28, 48, .72);
}

.community-btn strong,
.community-btn small {
  display: block;
}

.community-btn strong {
  font-size: 17px;
  line-height: 1.15;
}

.community-btn small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.community-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 0 22px rgba(22,170,255,.24);
}

.telegram-community .community-icon {
  background: linear-gradient(135deg, #35baff, #0069aa);
}
.community-icon svg {
  width: 28px;
  height: 28px;
  display: block;
  fill: currentColor;
}

.telegram-community .community-icon svg {
  transform: translateX(-1px);
}


.whatsapp-community .community-icon {
  background: linear-gradient(135deg, #30d66b, #087d3d);
}

.community-preview {
  position: relative;
  z-index: 2;
  min-height: 280px;
  border: 1px solid rgba(73,184,255,.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at 30% 30%, rgba(22,170,255,.23), transparent 34%),
    linear-gradient(145deg, rgba(0, 36, 63, .45), rgba(2, 12, 22, .4));
  overflow: hidden;
}

.community-preview::before,
.community-preview::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(73,184,255,.2);
}

.community-preview::before {
  width: 260px;
  height: 260px;
  right: -90px;
  top: -80px;
}

.community-preview::after {
  width: 190px;
  height: 190px;
  left: -60px;
  bottom: -70px;
}

.community-bubble {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(2, 12, 22, .66);
  color: #fff;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 45px rgba(0,0,0,.35), 0 0 26px rgba(22,170,255,.12);
}

.community-bubble-one {
  width: 96px;
  height: 96px;
  left: 12%;
  top: 20%;
  border-radius: 28px;
  color: var(--blue-soft);
  font-size: 52px;
  font-weight: 900;
}

.community-bubble-two {
  width: 68px;
  height: 68px;
  right: 20%;
  top: 18%;
  border-radius: 22px;
  color: #30d66b;
  font-size: 42px;
  font-weight: 900;
}

.community-bubble-three {
  width: 116px;
  height: 60px;
  right: 12%;
  bottom: 20%;
  border-radius: 999px;
  color: var(--blue-soft);
  font-size: 24px;
  font-weight: 900;
}

.store-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 16px; }
.store-badge {
  width: 174px;
  height: 54px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 10px;
  color: #fff;
  text-align: left;
  text-decoration: none;
  background: linear-gradient(180deg, #161616, #020202);
}
.store-badge svg { width: 28px; height: 28px; flex: 0 0 auto; }
.store-badge.apple svg { fill: #fff; }
.store-badge span,
.store-badge em,
.store-badge strong { display: block; }
.store-badge em { font-style: normal; font-size: 8px; line-height: 1; }
.store-badge strong { font-size: 17px; line-height: 1; }
.gp-blue { fill: #00a0ff; } .gp-green { fill: #00d084; } .gp-yellow { fill: #ffd34d; } .gp-red { fill: #ff4b55; }
.qr-row { display: flex; gap: 14px; }
.qr-row img,
.bot-qr {
  width: 116px;
  height: 116px;
  object-fit: contain;
  padding: 6px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 14px;
  background: #fff;
}

.bot-card {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
}
.telegram-mark {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 42px;
  background: linear-gradient(135deg, #35baff, #0069aa);
  box-shadow: 0 0 30px rgba(22,170,255,.35);
}
.notice-card { padding: 38px; text-align: center; }
.notice-card strong { color: var(--blue); letter-spacing: .16em; }
.site-footer {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto 24px;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}
.site-footer a { color: var(--blue-soft); text-decoration: none; font-weight: 850; letter-spacing: .08em; }

@media (max-width: 1100px) {
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 44px; }
  .hero-copy { max-width: 820px; }
  .hero-media { min-height: 540px; order: -1; }
  .hero-laptop { right: -8%; top: 8%; width: 80%; }
  .hero-phone { left: 4%; width: 26%; min-width: 170px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .app-section,
  .windows-card,
  .community-card { grid-template-columns: 1fr; }
  .app-preview { min-height: 420px; }
}

@media (max-width: 640px) {
  .site-header {
    position: sticky;
    top: 8px;
    width: calc(100% - 18px);
    margin-top: 9px;
    border-radius: 22px;
    align-items: center;
  }
  .brand-mini span,
  .outline-btn { display: none; }
  .header-actions { margin-left: auto; }
  .section-shell { width: calc(100% - 22px); }
  .hero { padding: 28px 0 44px; gap: 18px; }
  .logo-lockup { justify-content: center; margin-bottom: 20px; }
  .logo-lockup img { width: 68px; }
  .logo-lockup p { font-size: 23px; letter-spacing: .16em; }
  h1,
  html[lang="ru"] h1 {
    font-size: clamp(30px, 9.6vw, 42px);
    letter-spacing: -.04em;
    text-align: center;
  }
  .hero-copy { text-align: center; }
  .hero-text { font-size: 16px; }
  .hero-actions { justify-content: center; }
  .primary-btn,
  .secondary-btn { width: 100%; }
  .status-card { text-align: left; }
  .hero-media { min-height: 390px; }
  .hero-laptop { width: 105%; right: -35%; top: 24%; }
  .hero-phone { left: 0; bottom: 10px; min-width: 155px; width: 42%; }
  .platform-section,
  .app-section,
  .windows-section,
  .community-section,
  .bot-section,
  .notice-section { padding: 46px 0; }
  .section-heading { text-align: center; }
  .section-heading h2,
  .app-content h2,
  .windows-content h2,
  .community-content h2,
  .bot-card h2,
  .notice-card h2 { font-size: clamp(28px, 9vw, 38px); }
  .feature-grid { grid-template-columns: 1fr; }
  .app-section { padding: 26px; }
  .windows-card,
  .community-card { padding: 26px; text-align: center; }
  .windows-actions,
  .community-actions { justify-content: center; }
  .community-actions { grid-template-columns: 1fr; }
  .community-btn { justify-content: center; text-align: left; }
  .community-preview { min-height: 220px; }
  .windows-preview { min-height: 260px; }
  .app-preview { min-height: 360px; }
  .app-preview img { max-height: 390px; }
  .store-row,
  .qr-row { justify-content: center; }
  .bot-card { grid-template-columns: 1fr; text-align: center; justify-items: center; padding: 28px; }
  .site-footer { flex-direction: column; align-items: center; text-align: center; }
}


/* Hero title: equal spacing between all lines in every language */
:root {
  --hero-title-gap: clamp(12px, 0.95vw, 18px);
  --hero-title-line-height: .9;
}

.hero h1,
html[lang="en"] .hero h1,
html[lang="ru"] .hero h1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.hero h1 .title-line {
  display: block;
  line-height: var(--hero-title-line-height);
  margin: 0;
  padding: 0;
}

.hero h1 .title-line + .title-line {
  margin-top: var(--hero-title-gap);
}

@media (max-width: 640px) {
  :root {
    --hero-title-gap: clamp(10px, 2.8vw, 14px);
    --hero-title-line-height: .92;
  }

  .hero h1,
  html[lang="en"] .hero h1,
  html[lang="ru"] .hero h1 {
    align-items: center;
  }
}

/* Same font for every hero title line in every language */
.hero h1,
html[lang="en"] .hero h1,
html[lang="ru"] .hero h1,
.hero h1 .title-line {
  font-family: var(--hero-title-font) !important;
  font-weight: 900;
  font-style: normal;
  font-stretch: normal;
  font-variant-ligatures: none;
  letter-spacing: -0.045em;
}

.hero h1 .title-line {
  font-size: inherit;
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(73, 184, 255, .34);
  border-radius: 50%;
  background: rgba(0, 25, 45, .68);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #f4f8fc;
  transition: .2s ease;
}

@media (max-width: 1100px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(73, 184, 255, .28);
    border-radius: 22px;
    background: rgba(2, 12, 22, .94);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .45);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 16px;
    border-radius: 14px;
  }

  .nav-links a:hover {
    background: rgba(22, 170, 255, .12);
  }

  .site-header {
    position: sticky;
  }
}