.gs-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--dl-layout-space-twounits, 32px);
}

/* Logo uses the shared .home-thq-logo-elm class (from index.css) so it
   matches the home page's size exactly. */

.gs-main {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: var(--dl-layout-space-threeunits, 48px)
    var(--dl-layout-space-twounits, 32px)
    var(--dl-layout-space-sixunits, 96px);
}

.gs-hero {
  text-align: center;
  margin-bottom: var(--dl-layout-space-fiveunits, 80px);
}

.gs-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--dl-layout-space-oneandhalfunits, 24px);
}

.gs-sub {
  font-size: 20px;
  line-height: 1.5;
  color: var(--dl-color-gray-700, #999999);
  max-width: 640px;
  margin: 0 auto;
}

.gs-section {
  margin-bottom: var(--dl-layout-space-fiveunits, 80px);
}

.gs-section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--dl-layout-space-oneandhalfunits, 24px);
}

.gs-section-intro {
  text-align: center;
  color: var(--dl-color-gray-700, #999999);
  max-width: 640px;
  margin: 0 auto var(--dl-layout-space-twounits, 32px);
  line-height: 1.5;
}

.gs-stores {
  display: flex;
  gap: var(--dl-layout-space-oneandhalfunits, 24px);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.gs-store-badge {
  height: 56px;
  width: auto;
  transition: 0.3s;
}

.gs-store-badge:hover {
  transform: scale(1.05);
}

.gs-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--dl-layout-space-twounits, 32px);
}

.gs-step {
  background-color: var(--dl-color-template-fl-lt-grey, #fcfcfc);
  border: 1px solid #eff0f2;
  border-radius: 20px;
  padding: var(--dl-layout-space-twounits, 32px);
}

.gs-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #5228f5;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: var(--dl-layout-space-unit, 16px);
}

.gs-step-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: var(--dl-layout-space-halfunit, 8px);
}

.gs-step-text {
  color: var(--dl-color-gray-700, #999999);
  line-height: 1.5;
}

.gs-cta {
  text-align: center;
  margin-top: var(--dl-layout-space-fourunits, 64px);
}

.gs-cta-button {
  display: inline-block;
  color: #ffffff;
  background-color: #000000;
  font-weight: 600;
  padding: var(--dl-layout-space-unit, 16px) var(--dl-layout-space-threeunits, 48px);
  border-radius: 56px;
  transition: 0.3s;
}

.gs-cta-button:hover {
  color: #000000;
  background-color: #ffffff;
  box-shadow: 0 0 0 1px #000000 inset;
}

/* Private-beta "coming soon" state: badges shown but non-interactive */
.gs-stores-disabled {
  opacity: 0.45;
  filter: grayscale(1);
  pointer-events: none;
}

.gs-disabled {
  cursor: default;
  pointer-events: none;
}

.gs-coming-soon {
  margin-top: var(--dl-layout-space-oneandhalfunits, 24px);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  font-weight: 700;
  color: #5228f5;
}

@media (max-width: 767px) {
  .gs-title { font-size: 40px; }
  .gs-section-title { font-size: 28px; }
}
