@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  font-display: swap;
  src: url("/fonts/roboto-v51-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  font-display: swap;
  src: url("/fonts/roboto-v51-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/bebas-neue-v16-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/bebas-neue-v16-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

body { margin: 0; text-wrap: pretty; background: #FFFFFF; }
html { scroll-behavior: smooth; }
a { color: #1B2A4A; }
a:hover { color: #000000; }

[id] { scroll-margin-top: 88px; }

.site-header-inner {
  position: relative;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid #ECECEC;
  border-radius: 10px;
  background: #FFFFFF;
  color: #000000;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

a:focus-visible, button:focus-visible {
  outline: 2px solid #1B2A4A;
  outline-offset: 2px;
}

.btn-yellow:hover { background: #E9B91F !important; }
.btn-outline-dark:hover { background: #000000 !important; color: #FFFFFF !important; }
.pillar-card:hover { border-color: #F6C834 !important; }
.poster-btn-solid:hover { background: #1B2A4A !important; }
.poster-btn-outline:hover { background: #000000 !important; color: #F6C834 !important; }

.image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FAFAFA;
  border: 1px dashed #ECECEC;
  color: #595959;
  font-family: Roboto, system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
  box-sizing: border-box;
  padding: 12px;
}

.app-screenshots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 12px;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  padding: 4px 0 30px;
}

.app-screenshot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(27, 42, 74, 0.16);
}

.app-screenshot:nth-child(2) {
  transform: translateY(28px);
}

@media (max-width: 1023px) {
  .menu-toggle {
    display: block;
  }

  .site-menu {
    position: absolute;
    top: calc(100% + 1px);
    right: clamp(18px, 4vw, 56px);
    left: clamp(18px, 4vw, 56px);
    display: none;
    align-items: stretch;
    gap: 20px;
    padding: 22px;
    border: 1px solid #ECECEC;
    border-top: 0;
    border-radius: 0 0 16px 16px;
    background: #FFFFFF;
    box-shadow: 0 18px 36px rgba(27, 42, 74, 0.12);
  }

  .site-menu.is-open {
    display: flex;
    flex-direction: column;
  }

  .site-menu nav {
    flex-direction: column;
    gap: 0 !important;
  }

  .site-menu nav a {
    padding: 10px 0;
    font-size: 17px;
  }

  .language-switcher {
    align-self: flex-start;
  }

  .header-cta {
    text-align: center;
  }
}

@media (max-width: 699px) {
  .app-screenshots {
    max-width: 330px;
    gap: 10px;
    padding-bottom: 26px;
  }

  .app-screenshot {
    border-radius: 16px;
  }

  .app-screenshot:nth-child(2) {
    transform: translateY(22px);
  }
}
