@import url("https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700&display=swap");

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  font-family: "Geist", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;

  color: #000;
}

input,
button,
textarea,
select {
  font: inherit;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}


ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

.header-inbetween {
  background-color: #0f172a;
  padding: 14px 16px;
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inbetween__container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-inbetween__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f1f5f9;
  text-decoration: none;
}

.header-inbetween__logo-img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: cover;
}

.header-inbetween__logo-text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* NAV */

.header-inbetween__nav {
  display: none;
}

.header-inbetween__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 24px;
}

.header-inbetween__nav-link {
  text-decoration: none;
  color: #e2e8f0;
  font-size: 15px;
}

.header-inbetween__nav-link:hover {
  color: #ffffff;
}

/* BURGER */

.header-inbetween__burger {
  width: 36px;
  height: 28px;
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.header-inbetween__burger-line {
  width: 100%;
  height: 3px;
  background-color: #e2e8f0;
  border-radius: 3px;
}

/* DESKTOP */

@media (min-width: 960px) {
  .header-inbetween__burger {
    display: none;
  }

  .header-inbetween__nav {
    display: block;
  }
}

/* MOBILE MENU ACTIVE */

.header-inbetween__nav--active {
  display: block;
  position: absolute;
  top: 64px;
  left: 0;
  width: 100%;
  background-color: #0f172a;
  padding: 20px 0;
}

.header-inbetween__nav--active .header-inbetween__nav-list {
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.hero-inbetween {
  background: radial-gradient(circle at top, #1f2937 0%, #020617 55%, #020617 100%);
  padding: 40px 16px 48px;
  color: #e5e7eb;
}

.hero-inbetween__container {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.hero-inbetween__content {
  max-width: 620px;
}

.hero-inbetween__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background-color: rgba(15, 23, 42, 0.7);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 10px;
}

.hero-inbetween__title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #f9fafb;
}

.hero-inbetween__subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: #cbd5f5;
  margin-bottom: 18px;
}

.hero-inbetween__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-inbetween__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.hero-inbetween__btn--primary {
  background-color: #38bdf8;
  color: #0f172a;
}

.hero-inbetween__btn--primary:hover {
  background-color: #0ea5e9;
}

.hero-inbetween__btn--ghost {
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #e5e7eb;
  background-color: transparent;
}

.hero-inbetween__btn--ghost:hover {
  border-color: #e5e7eb;
}

.hero-inbetween__visual {
  display: flex;
  justify-content: center;
}

.hero-inbetween__card {
  width: 100%;
  max-width: 360px;
  border-radius: 24px;
  background: radial-gradient(circle at top, #1e293b 0%, #020617 70%);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.8);
  padding: 16px;
}

.hero-inbetween__card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.hero-inbetween__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
}

.hero-inbetween__card-meta {
  display: flex;
  flex-direction: column;
}

.hero-inbetween__card-title {
  font-size: 14px;
  font-weight: 700;
  color: #f9fafb;
}

.hero-inbetween__card-tag {
  font-size: 12px;
  color: #9ca3af;
}

.hero-inbetween__card-body {
  border-radius: 18px;
  overflow: hidden;
  background-color: #020617;
}

.hero-inbetween__screenshot {
  display: block;
  width: 100%;
  height: auto;
}

/* STORY */

.story-inbetween {
  background-color: #020617;
  padding: 40px 16px 44px;
  color: #e5e7eb;
}

.story-inbetween__container {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.story-inbetween__content {
  max-width: 720px;
}

.story-inbetween__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #f9fafb;
}

.story-inbetween__text {
  font-size: 15px;
  line-height: 1.7;
  color: #e5e7eb;
  margin-bottom: 10px;
}

.story-inbetween__aside {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.story-inbetween__chip {
  padding: 8px 10px;
  border-radius: 999px;
  background-color: #0f172a;
}

.story-inbetween__chip-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
  margin-right: 4px;
}

.story-inbetween__chip-value {
  font-size: 12px;
  font-weight: 600;
  color: #e5e7eb;
}

/* GAMEPLAY */

.gameplay-inbetween {
  background-color: #020617;
  padding: 40px 16px 44px;
}

.gameplay-inbetween__container {
  max-width: 1140px;
  margin: 0 auto;
}

.gameplay-inbetween__title {
  font-size: 22px;
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: 10px;
}

.gameplay-inbetween__subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: #cbd5f5;
  margin-bottom: 20px;
  max-width: 720px;
}

.gameplay-inbetween__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.gameplay-inbetween__item {
  padding: 14px 16px;
  border-radius: 18px;
  background-color: #0b1220;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.7);
}

.gameplay-inbetween__item-title {
  font-size: 15px;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 6px;
}

.gameplay-inbetween__item-text {
  font-size: 14px;
  line-height: 1.6;
  color: #cbd5f5;
}

/* FEATURES */

.features-inbetween {
  background-color: #020617;
  padding: 40px 16px 56px;
}

.features-inbetween__container {
  max-width: 1140px;
  margin: 0 auto;
}

.features-inbetween__title {
  font-size: 22px;
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: 10px;
}

.features-inbetween__subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: #cbd5f5;
  margin-bottom: 20px;
  max-width: 720px;
}

.features-inbetween__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.features-inbetween__item {
  padding: 14px 16px;
  border-radius: 18px;
  background-color: #0b1220;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.7);
}

.features-inbetween__item-title {
  font-size: 15px;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 6px;
}

.features-inbetween__item-text {
  font-size: 14px;
  line-height: 1.6;
  color: #cbd5f5;
}

/* DESKTOP */

@media (min-width: 960px) {
  .hero-inbetween {
    padding: 60px 16px 64px;
  }

  .hero-inbetween__container {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 40px;
  }

  .hero-inbetween__title {
    font-size: 32px;
  }

  .hero-inbetween__subtitle {
    font-size: 16px;
  }

  .story-inbetween__container {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
  }

  .gameplay-inbetween__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .features-inbetween__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.page-inbetween {
  background-color: #020617;
  color: #e5e7eb;
}

/* HERO */

.hero-inbetween {
  position: relative;
  min-height: 320px;
  max-height: 540px;
  overflow: hidden;
}

.hero-inbetween__background {
  position: absolute;
  inset: 0;
}

.hero-inbetween__background-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) blur(2px);
  transform: scale(1.05);
}

.hero-inbetween__overlay {
  position: relative;
  z-index: 1;
  padding: 36px 16px 40px;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.95) 55%, #020617 100%);
}

.hero-inbetween__content {
  max-width: 760px;
  margin: 0 auto;
}

.hero-inbetween__label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a5b4fc;
  margin-bottom: 8px;
}

.hero-inbetween__title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  color: #f9fafb;
  margin-bottom: 10px;
}

.hero-inbetween__text {
  font-size: 15px;
  line-height: 1.6;
  color: #cbd5f5;
  margin-bottom: 16px;
}

.hero-inbetween__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.hero-inbetween__fact {
  padding: 6px 10px;
  border-radius: 999px;
  background-color: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(129, 140, 248, 0.4);
}

.hero-inbetween__fact dt {
  display: inline;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
  margin-right: 4px;
}

.hero-inbetween__fact dd {
  display: inline;
  font-size: 12px;
  font-weight: 600;
  color: #e5e7eb;
}

.hero-inbetween__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background-color: #38bdf8;
  color: #020617;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.hero-inbetween__cta:hover {
  background-color: #0ea5e9;
}

/* OVERVIEW */

.overview-inbetween {
  padding: 40px 16px 44px;
  background-color: #020617;
}

.overview-inbetween__container {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.overview-inbetween__main {
  max-width: 720px;
}

.overview-inbetween__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #f9fafb;
}

.overview-inbetween__text {
  font-size: 15px;
  line-height: 1.7;
  color: #e5e7eb;
  margin-bottom: 12px;
}

.overview-inbetween__side {
  padding: 14px 14px 16px;
  border-radius: 16px;
  background-color: #0b1220;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.overview-inbetween__side-title {
  font-size: 14px;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 8px;
}

.overview-inbetween__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.overview-inbetween__item {
  font-size: 14px;
  line-height: 1.5;
  color: #cbd5f5;
  padding-left: 14px;
  position: relative;
  margin-bottom: 6px;
}

.overview-inbetween__item::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #a5b4fc;
}

/* CHAPTERS */

.chapters-inbetween {
  padding: 40px 16px 44px;
  background-color: #020617;
}

.chapters-inbetween__container {
  max-width: 760px;
  margin: 0 auto;
}

.chapters-inbetween__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #f9fafb;
}

.chapters-inbetween__intro {
  font-size: 15px;
  line-height: 1.6;
  color: #cbd5f5;
  margin-bottom: 20px;
}

.chapters-inbetween__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 1px solid rgba(148, 163, 184, 0.6);
}

.chapters-inbetween__item {
  position: relative;
  padding-left: 18px;
  margin-bottom: 18px;
}

.chapters-inbetween__marker {
  position: absolute;
  left: -6px;
  top: 4px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background-color: #a5b4fc;
  box-shadow: 0 0 0 4px rgba(129, 140, 248, 0.3);
}

.chapters-inbetween__body {
  padding-left: 4px;
}

.chapters-inbetween__item-title {
  font-size: 15px;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 4px;
}

.chapters-inbetween__item-text {
  font-size: 14px;
  line-height: 1.6;
  color: #cbd5f5;
}

/* MECHANICS */

.mechanics-inbetween {
  padding: 40px 16px 56px;
  background-color: #020617;
}

.mechanics-inbetween__container {
  max-width: 1140px;
  margin: 0 auto;
}

.mechanics-inbetween__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #f9fafb;
}

.mechanics-inbetween__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.mechanics-inbetween__card {
  border-radius: 16px;
  padding: 14px 16px;
  background-color: #0b1220;
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.mechanics-inbetween__card-title {
  font-size: 15px;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 6px;
}

.mechanics-inbetween__card-text {
  font-size: 14px;
  line-height: 1.6;
  color: #cbd5f5;
}

/* DESKTOP */

@media (min-width: 960px) {
  .hero-inbetween__overlay {
    padding: 56px 16px 64px;
  }

  .hero-inbetween__title {
    font-size: 32px;
  }

  .hero-inbetween__text {
    font-size: 16px;
  }

  .overview-inbetween__container {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    align-items: flex-start;
  }

  .mechanics-inbetween__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.location-inbetween {
  padding: 40px 16px 44px;
  background-color: #020617;
}

.location-inbetween__container {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}

.location-inbetween__image-wrap {
  border-radius: 20px;
  overflow: hidden;
  background-color: #0b1220;
}

.location-inbetween__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.location-inbetween__content {
  max-width: 640px;
}

.location-inbetween__title {
  font-size: 22px;
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: 10px;
}

.location-inbetween__text {
  font-size: 15px;
  line-height: 1.7;
  color: #e5e7eb;
  margin-bottom: 10px;
}


/* GALLERY */

.gallery-inbetween {
  padding: 40px 16px 56px;
  background-color: #020617;
}

.gallery-inbetween__container {
  max-width: 1140px;
  margin: 0 auto;
}

.gallery-inbetween__title {
  font-size: 22px;
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: 8px;
}

.gallery-inbetween__intro {
  font-size: 15px;
  line-height: 1.6;
  color: #cbd5f5;
  margin-bottom: 20px;
  max-width: 720px;
}

.gallery-inbetween__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.gallery-inbetween__item {
  border-radius: 16px;
  overflow: hidden;
  background-color: #0b1220;
}

.gallery-inbetween__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DESKTOP */

@media (min-width: 960px) {
  .location-inbetween__container {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
    gap: 32px;
  }

  .gallery-inbetween__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.footer-inbetween {
  background-color: #020617;
  border-top: 1px solid rgba(30, 64, 175, 0.6);
  padding: 28px 16px 20px;
  color: #e5e7eb;
}

.footer-inbetween__container {
  max-width: 1140px;
  margin: 0 auto;
}

.footer-inbetween__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.4);
}

.footer-inbetween__brand {
  max-width: 380px;
}

.footer-inbetween__logo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #f9fafb;
  margin-bottom: 8px;
}

.footer-inbetween__logo-img {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  object-fit: cover;
}

.footer-inbetween__logo-text {
  font-size: 18px;
  font-weight: 700;
}

.footer-inbetween__brand-text {
  font-size: 14px;
  line-height: 1.6;
  color: #cbd5f5;
}

.footer-inbetween__nav {
  font-size: 14px;
}

.footer-inbetween__nav-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
  margin-bottom: 8px;
}

.footer-inbetween__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}

.footer-inbetween__nav-link {
  text-decoration: none;
  color: #e5e7eb;
}

.footer-inbetween__nav-link:hover {
  color: #ffffff;
}

.footer-inbetween__info-text {
  font-size: 13px;
  line-height: 1.5;
  color: #cbd5f5;
}

.footer-inbetween__bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 12px;
  font-size: 12px;
  color: #9ca3af;
}

.footer-inbetween__legal-entity {
  line-height: 1.4;
}

.footer-inbetween__copy {
  line-height: 1.4;
}

/* DESKTOP */

@media (min-width: 960px) {
  .footer-inbetween {
    padding: 32px 16px 22px;
  }

  .footer-inbetween__top {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.3fr);
    gap: 28px;
  }

  .footer-inbetween__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.cta-inbetween {
  padding: 40px 16px 56px;
  background: radial-gradient(circle at top, #1e293b 0%, #020617 60%, #020617 100%);
}

.cta-inbetween__container {
  max-width: 1140px;
  margin: 0 auto;
}

.cta-inbetween__content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.cta-inbetween__title {
  font-size: 22px;
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: 10px;
}

.cta-inbetween__text {
  font-size: 15px;
  line-height: 1.6;
  color: #cbd5f5;
  margin-bottom: 18px;
}

.cta-inbetween__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 999px;
  background-color: #38bdf8;
  color: #020617;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.cta-inbetween__button:hover {
  background-color: #0ea5e9;
}

.cta-inbetween__note {
  font-size: 13px;
  color: #cbd5f5;
  margin-top: 12px;
  opacity: 0.9;
}

@media (min-width: 960px) {
  .cta-inbetween__title {
    font-size: 24px;
  }

  .cta-inbetween__text {
    font-size: 16px;
  }
}
.aboutpage-inbetween {
  background-color: #020617;
  color: #e5e7eb;
  padding: 40px 16px 56px;
}

.aboutpage-inbetween__container {
  max-width: 1140px;
  margin: 0 auto;
}

/* HERO PART */

.aboutpage-inbetween__hero {
  margin-bottom: 24px;
}

.aboutpage-inbetween__title {
  font-size: 26px;
  font-weight: 800;
  color: #f9fafb;
  margin-bottom: 10px;
}

.aboutpage-inbetween__lead {
  font-size: 15px;
  line-height: 1.7;
  color: #cbd5f5;
}

/* MAIN + SIDE BLOCK */

.aboutpage-inbetween__layout {
  margin-bottom: 32px;
}

.aboutpage-inbetween__container--grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.aboutpage-inbetween__block--main {
  max-width: 720px;
}

.aboutpage-inbetween__block--side {
  padding: 14px 14px 16px;
  border-radius: 16px;
  background-color: #0b1220;
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.aboutpage-inbetween__subtitle {
  font-size: 20px;
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: 10px;
}

.aboutpage-inbetween__subtitle--small {
  font-size: 15px;
  margin-bottom: 8px;
}

.aboutpage-inbetween__text {
  font-size: 15px;
  line-height: 1.7;
  color: #e5e7eb;
  margin-bottom: 10px;
}

.aboutpage-inbetween__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.aboutpage-inbetween__item {
  font-size: 14px;
  line-height: 1.6;
  color: #cbd5f5;
  padding-left: 14px;
  position: relative;
  margin-bottom: 6px;
}

.aboutpage-inbetween__item::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #a5b4fc;
}

/* TIMELINE */

.aboutpage-inbetween__timeline {
  margin-bottom: 32px;
}

.aboutpage-inbetween__text--intro {
  margin-bottom: 18px;
  color: #cbd5f5;
}

.aboutpage-inbetween__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 1px solid rgba(148, 163, 184, 0.7);
}

.aboutpage-inbetween__step {
  position: relative;
  padding-left: 18px;
  margin-bottom: 18px;
}

.aboutpage-inbetween__marker {
  position: absolute;
  left: -6px;
  top: 4px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background-color: #a5b4fc;
  box-shadow: 0 0 0 4px rgba(129, 140, 248, 0.3);
}

.aboutpage-inbetween__step-body {
  padding-left: 4px;
}

.aboutpage-inbetween__step-title {
  font-size: 15px;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 4px;
}

.aboutpage-inbetween__step-text {
  font-size: 14px;
  line-height: 1.6;
  color: #cbd5f5;
}

/* PROVIDER SECTION */

.aboutpage-inbetween__provider {
  margin-top: 8px;
}

.aboutpage-inbetween__provider .aboutpage-inbetween__subtitle {
  margin-bottom: 8px;
}

/* DESKTOP */

@media (min-width: 960px) {
  .aboutpage-inbetween {
    padding: 56px 16px 72px;
  }

  .aboutpage-inbetween__title {
    font-size: 30px;
  }

  .aboutpage-inbetween__lead {
    font-size: 16px;
  }

  .aboutpage-inbetween__container--grid {
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
    align-items: flex-start;
  }

  .aboutpage-inbetween__subtitle {
    font-size: 22px;
  }
}
.legalpage-inbetween {
  background-color: #020617;
  color: #e5e7eb;
  padding: 40px 16px 56px;
}

.legalpage-inbetween__container {
  max-width: 900px;
  margin: 0 auto;
}

.legalpage-inbetween__title {
  font-size: 26px;
  font-weight: 800;
  color: #f9fafb;
  margin-bottom: 14px;
}

.legalpage-inbetween__intro {
  font-size: 15px;
  line-height: 1.7;
  color: #cbd5f5;
  margin-bottom: 22px;
}

.legalpage-inbetween__subtitle {
  font-size: 18px;
  font-weight: 700;
  color: #f9fafb;
  margin-top: 26px;
  margin-bottom: 10px;
}

.legalpage-inbetween__text {
  font-size: 15px;
  line-height: 1.7;
  color: #e5e7eb;
  margin-bottom: 10px;
}

.legalpage-inbetween__list {
  list-style: disc;
  margin: 0 0 16px 20px;
  padding: 0;
}

.legalpage-inbetween__list li {
  font-size: 14px;
  line-height: 1.6;
  color: #cbd5f5;
}
.legalpage-inbetween {
  background-color: #020617;
  color: #e5e7eb;
  padding: 40px 16px 56px;
}

.legalpage-inbetween__container {
  max-width: 900px;
  margin: 0 auto;
}

.legalpage-inbetween__title {
  font-size: 26px;
  font-weight: 800;
  color: #f9fafb;
  margin-bottom: 14px;
}

.legalpage-inbetween__intro {
  font-size: 15px;
  line-height: 1.7;
  color: #cbd5f5;
  margin-bottom: 22px;
}

.legalpage-inbetween__subtitle {
  font-size: 18px;
  font-weight: 700;
  color: #f9fafb;
  margin-top: 26px;
  margin-bottom: 10px;
}

.legalpage-inbetween__text {
  font-size: 15px;
  line-height: 1.7;
  color: #e5e7eb;
  margin-bottom: 10px;
}

.legalpage-inbetween__list {
  list-style: disc;
  margin: 0 0 16px 20px;
  padding: 0;
}

.legalpage-inbetween__list li {
  font-size: 14px;
  line-height: 1.6;
  color: #cbd5f5;
}

@media (min-width: 960px) {
  .legalpage-inbetween {
    padding: 56px 16px 72px;
  }

  .legalpage-inbetween__title {
    font-size: 30px;
  }

  .legalpage-inbetween__text,
  .legalpage-inbetween__intro {
    font-size: 16px;
  }
}
.contactpage-inbetween {
  background-color: #020617;
  color: #e5e7eb;
  padding: 40px 16px 56px;
}

.contactpage-inbetween__container {
  max-width: 900px;
  margin: 0 auto;
}

.contactpage-inbetween__title {
  font-size: 26px;
  font-weight: 800;
  color: #f9fafb;
  margin-bottom: 14px;
}

.contactpage-inbetween__intro {
  font-size: 15px;
  line-height: 1.7;
  color: #cbd5f5;
  margin-bottom: 26px;
}

.contactpage-inbetween__section {
  margin-bottom: 32px;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  padding-top: 24px;
}

.contactpage-inbetween__subtitle {
  font-size: 18px;
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: 10px;
}

.contactpage-inbetween__text {
  font-size: 15px;
  line-height: 1.7;
  color: #e5e7eb;
  margin-bottom: 10px;
}

.contactpage-inbetween__note {
  font-size: 14px;
  line-height: 1.6;
  color: #9ca3af;
  margin-top: 4px;
}

.contactpage-inbetween__card {
  background-color: #0f172a;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 20px 18px;
  margin-top: 8px;
}

.contactpage-inbetween__card-title {
  font-size: 16px;
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: 8px;
}

.contactpage-inbetween a {
  color: #60a5fa;
  text-decoration: none;
}

.contactpage-inbetween a:hover {
  text-decoration: underline;
}

@media (min-width: 960px) {
  .contactpage-inbetween {
    padding: 56px 16px 72px;
  }

  .contactpage-inbetween__title {
    font-size: 30px;
  }

  .contactpage-inbetween__text,
  .contactpage-inbetween__intro {
    font-size: 16px;
  }

  .contactpage-inbetween__card {
    padding: 22px 22px;
  }
}
.cookie-inbetween {
  position: fixed;
  inset-inline: 0;
  bottom: 16px;
  display: none;
  z-index: 9999;
  pointer-events: none;
}

.cookie-inbetween--visible {
  display: block;
}

.cookie-inbetween__card {
  pointer-events: auto;
  max-width: 520px;
  margin: 0 auto;
  background: radial-gradient(circle at top, #0b1120 0%, #020617 55%, #020617 100%);
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.85);
  padding: 18px 18px 16px;
  color: #e5e7eb;
}

.cookie-inbetween__header {
  margin-bottom: 10px;
}

.cookie-inbetween__title {
  font-size: 17px;
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: 4px;
}

.cookie-inbetween__subtitle {
  font-size: 13px;
  color: #9ca3af;
}

.cookie-inbetween__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 12px;
}

.cookie-inbetween__tab {
  border: 0;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  cursor: pointer;
  background-color: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  border: 1px solid transparent;
}

.cookie-inbetween__tab--active {
  background: linear-gradient(135deg, #4f46e5, #22d3ee);
  border-color: rgba(248, 250, 252, 0.3);
  color: #f9fafb;
}

.cookie-inbetween__panels {
  margin-bottom: 10px;
}

.cookie-inbetween__panel {
  display: none;
}

.cookie-inbetween__panel--active {
  display: block;
}

.cookie-inbetween__text {
  font-size: 13px;
  line-height: 1.6;
  color: #e5e7eb;
}

.cookie-inbetween__toggles {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 10px 0 12px;
  padding: 10px 10px;
  border-radius: 12px;
  background-color: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(30, 64, 175, 0.6);
}

.cookie-inbetween__toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.cookie-inbetween__toggle-labels {
  flex: 1;
}

.cookie-inbetween__toggle-title {
  font-size: 13px;
  font-weight: 600;
  color: #f9fafb;
  display: block;
}

.cookie-inbetween__toggle-desc {
  font-size: 12px;
  color: #9ca3af;
}

/* switch */

.cookie-inbetween__switch {
  position: relative;
  width: 42px;
  height: 22px;
  display: inline-block;
}

.cookie-inbetween__switch-input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-inbetween__switch-slider {
  position: absolute;
  inset: 0;
  background-color: #4b5563;
  border-radius: 999px;
  transition: background-color 0.22s ease;
}

.cookie-inbetween__switch-slider::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 2px;
  top: 2px;
  border-radius: 999px;
  background-color: #f9fafb;
  transition: transform 0.22s ease;
}

.cookie-inbetween__switch-input:checked + .cookie-inbetween__switch-slider {
  background: linear-gradient(135deg, #4f46e5, #22d3ee);
}

.cookie-inbetween__switch-input:checked + .cookie-inbetween__switch-slider::before {
  transform: translateX(18px);
}

.cookie-inbetween__footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-inbetween__link {
  font-size: 12px;
  color: #93c5fd;
  text-decoration: none;
}

.cookie-inbetween__link:hover {
  text-decoration: underline;
}

.cookie-inbetween__buttons {
  display: flex;
  gap: 6px;
}

.cookie-inbetween__button {
  flex: 1;
  font-size: 13px;
  padding: 8px 9px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: opacity 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.cookie-inbetween__button--minimal {
  background-color: transparent;
  border-color: rgba(148, 163, 184, 0.7);
  color: #e5e7eb;
}

.cookie-inbetween__button--outline {
  background-color: rgba(15, 23, 42, 0.9);
  border-color: rgba(59, 130, 246, 0.85);
  color: #bfdbfe;
}

.cookie-inbetween__button--primary {
  background: linear-gradient(135deg, #4f46e5, #22c55e);
  border-color: transparent;
  color: #f9fafb;
}

.cookie-inbetween__button:hover {
  opacity: 0.9;
}

@media (max-width: 480px) {
  .cookie-inbetween__card {
    margin-inline: 12px;
    padding-inline: 14px;
  }

  .cookie-inbetween__buttons {
    flex-direction: column;
  }
}
