.store {
  position: relative;
  padding: 86px 0 132px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 45%, rgba(111, 255, 76, 0.09), transparent 28rem),
    linear-gradient(180deg, #070a07, #060806);
}

.store::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.42;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}

.store-panel {
  position: relative;
  display: grid;
  min-height: 510px;
  padding: 70px 48px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(141, 255, 103, 0.15);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 28%, rgba(141, 255, 103, 0.09), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 48%),
    #0a0e0a;
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.025);
  text-align: center;
}

.store-panel::before,
.store-panel::after {
  position: absolute;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(141, 255, 103, 0.075);
  border-radius: 50%;
}

.store-panel::before {
  width: 430px;
  height: 430px;
}

.store-panel::after {
  width: 610px;
  height: 610px;
}

.store-content {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 690px;
  align-items: center;
  flex-direction: column;
}

.store-icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin-bottom: 24px;
  place-items: center;
  border: 1px solid rgba(141, 255, 103, 0.2);
  border-radius: 20px;
  color: var(--green);
  background: rgba(141, 255, 103, 0.055);
  box-shadow: 0 0 40px rgba(111, 255, 76, 0.08);
}

.store-icon svg {
  width: 29px;
  height: 29px;
}

.store-content .eyebrow {
  margin-bottom: 16px;
}

.store-content h2 {
  margin: 0;
  font-size: clamp(3.25rem, 7vw, 6.6rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.store-content h2 span {
  color: var(--green);
}

.store-content p {
  max-width: 590px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.store-status {
  display: inline-flex;
  margin-top: 28px;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid var(--line-green);
  border-radius: 999px;
  color: #c6cec3;
  background: rgba(141, 255, 103, 0.04);
  font-size: 0.74rem;
  font-weight: 720;
}

.store-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(141, 255, 103, 0.7);
}

@media (max-width: 700px) {
  .store {
    padding: 72px 0 95px;
  }

  .store-panel {
    min-height: 430px;
    padding: 50px 24px;
    border-radius: 24px;
  }

  .store-panel::before {
    width: 310px;
    height: 310px;
  }

  .store-panel::after {
    width: 450px;
    height: 450px;
  }

  .store-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
  }

  .store-content p {
    font-size: 0.92rem;
  }
}
