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

body,
button,
input,
textarea {
  font-family: "Rubik", sans-serif;
}
body {
  background-color: var(--color-bg, #0e1116);
  color: var(--color-text, #e6e9ef);
  line-height: 1.65;
  font-size: 16px;
}
a {
  color: var(--color-primary, #4ea4ff);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  text-decoration: underline;
}
h1 {
  font-size: 2rem;
  line-height: 1.2;
  margin: 0.25rem 0 1rem;
}
h2 {
  font-size: 1.5rem;
  line-height: 1.25;
  margin: 0 0 0.75rem;
}
h3 {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.hero,
.highlights,
.features,
.community,
.story,
.faq,
.cta,
.legal {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.header {
  position: sticky;
  top: 0;
  background: var(--color-bg, #0e1116);
  border-bottom: 1px solid var(--color-border, #1f2633);
  z-index: 30;
}
.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
}
.header__logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}
.header__nav-list {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
}
.header__nav-link {
  color: var(--color-text, #e6e9ef);
  opacity: 0.9;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  transition:
    background-color 0.2s,
    opacity 0.2s;
}
.header__nav-link:hover {
  background: var(--color-surface, #151a1f);
  opacity: 1;
}

.hero--split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 2rem;
  background: linear-gradient(
    180deg,
    rgba(78, 164, 255, 0.08),
    transparent 40%
  );
}
.hero__subtitle {
  color: var(--color-text-muted, #9aa3b2);
  margin: 0.25rem 0 0.75rem;
}
.hero__support {
  color: var(--color-text-muted, #9aa3b2);
  font-size: 0.95rem;
  margin: 0 0 1rem;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0;
}
.store-badge {
  display: inline-block;
}
.store-badge img {
  height: 48px;
  width: auto;
  filter: none;
  transition:
    transform 0.15s ease,
    opacity 0.15s;
}
.store-badge:hover img {
  transform: translateY(-2px);
  opacity: 0.95;
}
.hero__legal-note {
  color: var(--color-text-muted, #9aa3b2);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}
.hero__visual {
  display: flex;
  justify-content: center;
}
.hero__image {
  max-width: 360px;
  border-radius: 16px;
  box-shadow: 0 10px 24px var(--color-shadow-soft, rgba(0, 0, 0, 0.35));
}

.section__header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.section__sub {
  color: var(--color-text-muted, #9aa3b2);
  margin: 0;
}

.highlights__viewport {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
}
.highlights__scroller {
  display: flex;
  gap: 1rem;
  overflow: auto;
  scroll-snap-type: x mandatory;
  padding: 0.25rem 0 0.5rem;
}
.highlights__item {
  flex: 0 0 auto;
  min-width: 260px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-surface, #151a1f);
  box-shadow: 0 6px 14px var(--color-shadow-soft, rgba(0, 0, 0, 0.25));
  scroll-snap-align: start;
}
.highlights__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border, #1f2633);
  background: var(--color-surface, #151a1f);
  color: var(--color-text, #e6e9ef);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background-color 0.2s,
    transform 0.2s;
}
.highlights__arrow:hover {
  background: var(--color-bg-alt, #121722);
  transform: translateY(-1px);
}
.highlights__arrow--prev::before {
  content: "‹";
  font-size: 22px;
  line-height: 1;
}
.highlights__arrow--next::before {
  content: "›";
  font-size: 22px;
  line-height: 1;
}

.features__body {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
}
.features__intro-title {
  margin-bottom: 0.5rem;
}
.features__steps {
  margin: 0.5rem 0 0 1rem;
  display: grid;
  gap: 0.25rem;
}
.features__step {
  margin: 0 0 0.25rem;
}
.features__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.features__card {
  background: var(--color-surface, #151a1f);
  border: 1px solid var(--color-border, #1f2633);
  border-radius: 12px;
  padding: 1rem;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.features__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px var(--color-shadow-soft, rgba(0, 0, 0, 0.3));
}
.features__card-title {
  margin: 0 0 0.25rem;
}
.features__card-text {
  color: var(--color-text-muted, #9aa3b2);
  margin: 0;
}

.community__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.community__summary p {
  margin: 0;
  color: var(--color-text, #e6e9ef);
}
.community__list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.5rem;
}
.community__item {
  color: var(--color-text-muted, #9aa3b2);
}

.story__body {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}
.section__legal-inline {
  color: var(--color-text-muted, #9aa3b2);
  font-size: 0.9rem;
}

.faq__list {
  display: grid;
  gap: 0.75rem;
  max-width: 900px;
  margin: 0 auto;
}
.faq__item {
  background: var(--color-surface, #151a1f);
  border: 1px solid var(--color-border, #1f2633);
  border-radius: 12px;
  padding: 0.5rem 0.75rem;
}
.faq__question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--color-text, #e6e9ef);
  padding: 0.5rem 0.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.2s;
}
.faq__question::after {
  content: "+";
  color: var(--color-text-muted, #9aa3b2);
  font-weight: 600;
}
.faq__question[aria-expanded="true"]::after {
  content: "–";
}
.faq__answer {
  margin: 0.5rem 0 0;
  color: var(--color-text-muted, #9aa3b2);
}
.faq__answer[hidden] {
  display: none;
}

.cta--stripe {
  background: linear-gradient(
    135deg,
    rgba(78, 164, 255, 0.15),
    rgba(78, 164, 255, 0.05)
  );
  border: 1px solid var(--color-border, #1f2633);
  border-radius: 16px;
}
.cta__inner {
  text-align: center;
  padding: 2rem 1rem;
}
.cta__subtitle {
  color: var(--color-text-muted, #9aa3b2);
  margin: 0.25rem 0 1rem;
}
.cta__actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer {
  border-top: 1px solid var(--color-border, #1f2633);
  background: var(--color-bg, #0e1116);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1rem;
  display: grid;
  gap: 1rem;
}
.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__nav-link {
  color: var(--color-text-muted, #9aa3b2);
}
.footer__legal-entity,
.footer__copy,
.footer__monetization {
  color: var(--color-text-muted, #9aa3b2);
  font-size: 0.9rem;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 0;
}
.legal__section {
  margin: 1rem 0;
}
.legal__text {
  color: var(--color-text-muted, #9aa3b2);
}
.legal__list {
  margin: 0.5rem 0 0 1.1rem;
}

.cookie-drawer {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1000;
  background: var(--color-surface, #151a1f);
  border: 1px solid var(--color-border, #1f2633);
  border-radius: 14px;
  box-shadow: 0 16px 40px var(--color-shadow-soft, rgba(0, 0, 0, 0.4));
  max-height: 80vh;
  overflow: auto;
}
.cookie-drawer__header {
  padding: 1rem 1rem 0.5rem;
}
.cookie-drawer__badge {
  display: inline-block;
  background: var(--color-bg-alt, #121722);
  color: var(--color-text, #e6e9ef);
  border: 1px solid var(--color-border, #1f2633);
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}
.cookie-drawer__title {
  margin: 0.25rem 0 0.25rem;
}
.cookie-drawer__body {
  padding: 0.5rem 1rem 0;
}
.cookie-drawer__categories {
  display: block;
}
.cookie-drawer__category-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.cookie-drawer__category {
  background: transparent;
  border: 0;
  border-radius: 10px;
  padding: 0.5rem 0;
}
.cookie-drawer__category-info {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin: 0 0 0.25rem;
}
.cookie-drawer__always-active {
  color: var(--color-text-muted, #9aa3b2);
  font-size: 0.9rem;
}
.cookie-drawer__category-desc {
  color: var(--color-text-muted, #9aa3b2);
  margin: 0.25rem 0 0;
}
.cookie-drawer__switch {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.cookie-drawer__switch-label {
  cursor: pointer;
}
.cookie-drawer__privacy-link {
  color: var(--color-primary, #4ea4ff);
}
.cookie-drawer__actions {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  padding: 0.75rem 1rem 1rem;
  border-top: 1px solid var(--color-border, #1f2633);
}
.cookie-drawer__button {
  appearance: none;
  border: 1px solid var(--color-border, #1f2633);
  background: var(--color-bg-alt, #121722);
  color: var(--color-text, #e6e9ef);
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  cursor: pointer;
  transition:
    background-color 0.2s,
    opacity 0.2s;
}
.cookie-drawer__button:hover {
  background: var(--color-surface, #151a1f);
}
.cookie-drawer__button--accept {
  background: var(--color-primary, #4ea4ff);
  border-color: transparent;
  color: #0b1020;
}
.cookie-drawer__button--accept:hover {
  opacity: 0.95;
}
.cookie-drawer--hidden {
  display: none;
}

@media (max-width: 1199px) {
  .hero--split {
    grid-template-columns: 1fr 0.9fr;
  }
  .features__body {
    grid-template-columns: 1fr;
  }
  .features__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .community__body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .hero--split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .hero,
  .highlights,
  .features,
  .community,
  .story,
  .faq,
  .cta,
  .legal {
    padding: 2.25rem 1rem;
  }
  .store-badge img {
    height: 44px;
  }
  .features__cards {
    grid-template-columns: 1fr;
  }
  .highlights__viewport {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .highlights__arrow {
    order: -1;
  }
  .cta__actions {
    justify-content: center;
  }
  .cookie-drawer {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    border-radius: 12px;
  }
}
