/* =========================================================
   SHOP.CSS — Page-specific styles only.
   global.css must be loaded before this file.
   ========================================================= */

/* ── Shop Hero ── */
.shop-hero {
  position: relative;
  padding: 2rem;
  margin-top: 4rem;
  overflow: hidden;
}

.shop-hero__container {
  width: min(1100px, 100%);
  margin: 0 auto;
  text-align: center;
}

/* Shared pill style across shop sections */
.shop-hero__pill,
.shop-problem__pill,
.tiers__pill,
.fits__pill,
.howshop__pill {
  display: inline-flex;
  font-family: var(--font-body);
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(24, 201, 255, 0.40);
  background: rgba(0, 0, 0, 0.20);
  color: var(--text);
  font-size: var(--fs-xs);
}

.shop-hero__dot,
.shop-problem__dot,
.tiers__dot,
.fits__dot,
.howshop__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 0 10px var(--accent-glow);
}

.shop-hero__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.1;
  color: var(--text-primary);
  margin-top: 24px;
  letter-spacing: -0.01em;
}

.shop-hero__title-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.shop-hero__sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 24px auto 0;
}

.shop-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.shop-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  text-decoration: none;
  transition: filter 200ms ease, transform 200ms ease, background 200ms ease, border-color 200ms ease;
}

.shop-btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--btn-white);
  border: 2px solid transparent;
  box-shadow: 0 4px 22px rgba(24, 201, 255, 0.30);
}

.shop-btn--primary:hover { filter: brightness(1.1); transform: translateY(-2px); }

.shop-btn--ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(24, 201, 255, 0.35);
}

.shop-btn--ghost:hover {
  background: rgba(24, 201, 255, 0.08);
  border-color: rgba(24, 201, 255, 0.55);
  transform: translateY(-2px);
}

/* Star positions */
.star-field .star:nth-child(1)  { top: 10%; left: 15%; animation-delay: 0.2s; }
.star-field .star:nth-child(2)  { top: 18%; left: 60%; animation-delay: 1.1s; }
.star-field .star:nth-child(3)  { top: 25%; left: 35%; animation-delay: 2.4s; }
.star-field .star:nth-child(4)  { top: 30%; left: 80%; animation-delay: 0.7s; }
.star-field .star:nth-child(5)  { top: 38%; left: 20%; animation-delay: 3.2s; }
.star-field .star:nth-child(6)  { top: 45%; left: 50%; animation-delay: 1.8s; }
.star-field .star:nth-child(7)  { top: 52%; left: 72%; animation-delay: 0.4s; }
.star-field .star:nth-child(8)  { top: 58%; left: 28%; animation-delay: 2.7s; }
.star-field .star:nth-child(9)  { top: 65%; left: 10%; animation-delay: 1.3s; }
.star-field .star:nth-child(10) { top: 68%; left: 90%; animation-delay: 3.6s; }
.star-field .star:nth-child(11) { top: 75%; left: 42%; animation-delay: 0.9s; }
.star-field .star:nth-child(12) { top: 82%; left: 65%; animation-delay: 2.1s; }
.star-field .star:nth-child(13) { top: 85%; left: 18%; animation-delay: 3.9s; }
.star-field .star:nth-child(14) { top: 88%; left: 78%; animation-delay: 1.6s; }
.star-field .star:nth-child(15) { top: 92%; left: 33%; animation-delay: 0.3s; }
.star-field .star:nth-child(16) { top: 12%; left: 90%; animation-delay: 2.9s; }
.star-field .star:nth-child(17) { top: 22%; left: 5%;  animation-delay: 1.5s; }
.star-field .star:nth-child(18) { top: 40%; left: 95%; animation-delay: 3.1s; }
.star-field .star:nth-child(19) { top: 55%; left: 5%;  animation-delay: 0.6s; }
.star-field .star:nth-child(20) { top: 70%; left: 85%; animation-delay: 2.0s; }


/* ── Problem Section ── */
.shop-problem {
  position: relative;
  padding: clamp(70px, 9vw, 110px) 20px;
  overflow: hidden;
}

.shop-problem__container {
  width: min(1100px, 100%);
  margin: 0 auto;
  text-align: center;
}

.shop-problem__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1.2;
  color: var(--text-primary);
  margin-top: 22px;
}

.shop-problem__title-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.shop-problem__sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.7;
  color: var(--text);
  max-width: 640px;
  margin: 20px auto 0;
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: clamp(48px, 6vw, 72px);
  text-align: left;
}

.problem-card {
  position: relative;
  background: var(--surface-glass);
  border: 1px solid rgba(24, 201, 255, 0.18);
  border-radius: var(--radius-card);
  padding: 36px 32px 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 320ms ease, border-color 320ms ease, background 320ms ease;
}

.problem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(24, 201, 255, 0.40);
  background: rgba(255, 255, 255, 0.05);
}

.problem-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(24, 201, 255, 0.18), rgba(11, 60, 255, 0.10));
  border: 1px solid rgba(24, 201, 255, 0.30);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--accent);
  margin-bottom: 22px;
}

.problem-card__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 20px);
  color: var(--text-primary);
  margin-bottom: 12px;
}

.problem-card__text {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  line-height: 1.65;
  color: var(--text-muted);
}


/* ── Tiers Section ── */
.tiers {
  position: relative;
  padding: clamp(70px, 9vw, 110px) 20px;
  overflow: hidden;
}

.tiers__container {
  width: min(1200px, 100%);
  margin: 0 auto;
  text-align: center;
}

.tiers__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(28px, 4.5vw, 46px);
  line-height: 1.2;
  color: var(--text-primary);
  margin-top: 22px;
}

.tiers__title-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tiers__sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 20px auto 0;
}

.tier-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 380px));
  gap: 28px;
  justify-content: center;
  margin: clamp(56px, 7vw, 80px) auto 0;
}

.tier-card {
  position: relative;
  background: var(--surface-glass);
  border: 2px solid rgba(24, 201, 255, 0.18);
  border-radius: 26px;
  padding: 38px 32px 36px;
  text-align: left;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 0 22px rgba(11, 60, 255, 0.20),
    0 0 60px rgba(11, 60, 255, 0.08);
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
  display: flex;
  flex-direction: column;
}

.tier-card:hover {
  transform: translateY(-6px);
  border-color: rgba(24, 201, 255, 0.35);
  box-shadow:
    0 0 32px rgba(11, 60, 255, 0.30),
    0 0 80px rgba(11, 60, 255, 0.12);
}

.tier-card--featured {
  border-color: rgba(24, 201, 255, 0.45);
  box-shadow:
    0 0 35px rgba(24, 201, 255, 0.30),
    0 0 80px rgba(11, 60, 255, 0.22),
    0 0 120px rgba(11, 60, 255, 0.10);
}

.tier-card--featured:hover {
  border-color: rgba(24, 201, 255, 0.60);
  box-shadow:
    0 0 45px rgba(24, 201, 255, 0.40),
    0 0 100px rgba(11, 60, 255, 0.28),
    0 0 140px rgba(11, 60, 255, 0.14);
}

.tier-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--btn-white);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(24, 201, 255, 0.40);
}

.tier-card__rank {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.tier-card__name {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 34px);
  color: var(--text-primary);
  margin-top: 8px;
  letter-spacing: -0.01em;
}

.tier-card__tagline {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  line-height: 1.5;
  color: var(--accent);
  margin-top: 8px;
  font-weight: 500;
}

.tier-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 22px;
}

.tier-card__dollar {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--accent);
  align-self: flex-start;
  margin-top: 8px;
}

.tier-card__amount {
  font-family: var(--font-heading);
  font-size: clamp(50px, 6vw, 60px);
  font-weight: 400;
  line-height: 1;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.tier-card__period {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-left: 4px;
  font-weight: 500;
}

.tier-card__who {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  line-height: 1.6;
  color: var(--text-muted);
  margin-top: 14px;
  font-style: italic;
}

.tier-card__divider {
  height: 2px;
  margin: 26px 0 22px;
  background: linear-gradient(90deg, rgba(24, 201, 255, 0.45), rgba(11, 60, 255, 0.20), transparent);
  border-radius: 2px;
}

.tier-card__includes-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 16px;
}

.tier-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.tier-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  line-height: 1.5;
  color: var(--text-secondary);
}

.tier-card__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(24, 201, 255, 0.12);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}

.tier-card__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: auto;
  padding-top: 4px;
}

.tier-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(24, 201, 255, 0.35);
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  text-decoration: none;
  transition: background 200ms ease, transform 200ms ease, border-color 200ms ease;
  margin-top: auto;
}

.tier-card__btn:hover {
  background: rgba(24, 201, 255, 0.08);
  border-color: rgba(24, 201, 255, 0.55);
  transform: translateY(-2px);
}

.tier-card__btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-color: transparent;
  color: var(--btn-white);
}

.tier-card__btn--primary:hover {
  filter: brightness(1.1);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-color: transparent;
}

.tier-card__link {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  color: var(--text);
  text-decoration: none;
  transition: color 180ms ease;
}

.tier-card__link:hover { color: var(--accent); }

.tier-card__link--light { color: var(--text-dim); }
.tier-card__link--light:hover { color: var(--btn-white); }

@media (max-width: 760px) { .tier-cards { grid-template-columns: 1fr; max-width: 420px; } }


/* ── Fits Section ── */
.fits {
  position: relative;
  padding: clamp(70px, 9vw, 110px) 20px;
  overflow: hidden;
}

.fits__container {
  width: min(1200px, 100%);
  margin: 0 auto;
  text-align: center;
}

.fits__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1.2;
  color: var(--text-primary);
  margin-top: 22px;
}

.fits__title-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fits__sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 580px;
  margin: 20px auto 0;
}

.fits-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: clamp(48px, 6vw, 72px);
  text-align: left;
}

.fits-col {
  background: var(--surface-glass);
  border: 1px solid rgba(24, 201, 255, 0.16);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 320ms ease, border-color 320ms ease;
}

.fits-col:hover { transform: translateY(-3px); border-color: rgba(24, 201, 255, 0.32); }
.fits-col--featured { border-color: rgba(24, 201, 255, 0.40); box-shadow: 0 0 28px var(--accent-glow); }

.fits-col__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(16px, 1.7vw, 19px);
  color: var(--text-primary);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.fits-col__num {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(24, 201, 255, 0.18), rgba(11, 60, 255, 0.10));
  border: 1px solid rgba(24, 201, 255, 0.35);
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 12px;
  color: var(--accent);
  flex-shrink: 0;
}

.fits-col__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fits-col__list li {
  position: relative;
  padding-left: 22px;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: var(--text-dim);
}

.fits-col__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}


/* ── How It Works ── */
.howshop {
  position: relative;
  padding: clamp(70px, 9vw, 110px) 20px;
  overflow: hidden;
}

.howshop__container {
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
}

.howshop__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1.2;
  color: var(--text-primary);
  margin-top: 22px;
}

.howshop__title-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.howshop__sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 20px auto 0;
}

.howshop-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: clamp(48px, 6vw, 72px);
  text-align: left;
}

.howshop-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 26px 0;
  position: relative;
}

.howshop-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 39px;
  top: 86px;
  bottom: -10px;
  width: 2px;
  background: linear-gradient(180deg, rgba(24, 201, 255, 0.45), rgba(11, 60, 255, 0.10), transparent);
}

.howshop-step__num {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(24, 201, 255, 0.16), rgba(11, 60, 255, 0.08));
  border: 1.5px solid rgba(24, 201, 255, 0.40);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 22px var(--accent-glow);
}

.howshop-step__content { padding-top: 12px; }

.howshop-step__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text-primary);
  margin-bottom: 8px;
}

.howshop-step__text {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  line-height: 1.65;
  color: var(--text-secondary);
}

@media (max-width: 600px) {
  .howshop-step { grid-template-columns: 60px 1fr; gap: 18px; }
  .howshop-step__num { width: 60px; height: 60px; font-size: 16px; border-radius: 18px; }
  .howshop-step:not(:last-child)::after { left: 29px; top: 66px; }
}

@media (prefers-reduced-motion: reduce) {
  .shop-btn, .tier-card, .tier-card__btn, .problem-card, .fits-col { transition: none; }
}


/* ── CTA Card ── */
.cta {
  padding: clamp(60px, 7vw, 110px) 18px;
  background: transparent;
}

.cta__container {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.cta__card {
  position: relative;
  padding: 2rem;
  width: 100%;
  border-radius: clamp(26px, 3vw, 46px);
  text-align: center;
  background:
    radial-gradient(900px 700px at 50% 105%,
      rgba(120, 235, 255, 0.70) 0%,
      rgba(120, 235, 255, 0.25) 35%,
      rgba(120, 235, 255, 0.00) 70%
    ),
    linear-gradient(90deg,
      rgba(24, 201, 255, 0.22) 0%,
      rgba(24, 201, 255, 0.10) 45%,
      rgba(24, 201, 255, 0.22) 100%
    ),
    linear-gradient(180deg, #0051ff 10%, #0042dd 30%, #0A2E93 68%, #119ea8 140%);
  border: 1px solid rgba(24, 201, 255, 0.55);
  box-shadow:
    0 0 0 1px var(--accent-glow) inset,
    0 28px 70px rgba(0, 0, 0, 0.55),
    0 0 55px var(--accent-glow);
}

.cta__card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    url("../images/vectors/code-symbol.svg"),
    url("../images/vectors/code-symbol.svg");
  background-repeat: no-repeat, no-repeat;
  background-position: right -30px top -30px, left -40px bottom -40px;
  background-size: clamp(120px, 16vw, 190px), clamp(170px, 22vw, 100px);
  opacity: 0.62;
  mix-blend-mode: screen;
}

.cta__card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(1200px 500px at 50% 120%, rgba(0,0,0,0.35), transparent 60%),
    radial-gradient(1200px 500px at 50% -20%, rgba(0,0,0,0.25), transparent 60%);
  opacity: 0.55;
}

.cta__card > * { position: relative; z-index: 1; }

.cta__title {
  margin: 0 0 18px;
  letter-spacing: -0.02em;
  line-height: 1.08;
  font-size: clamp(30px, 4.8vw, 64px);
  color: var(--text-primary);
}

.cta__subtext {
  margin: 0 auto 28px;
  max-width: 820px;
  line-height: 1.7;
  font-size: clamp(14px, 1.25vw, 18px);
  color: var(--text-secondary);
}

.cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.95);
  color: rgba(0, 86, 210, 0.95);
  font-size: var(--fs-xs);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.60);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  transition: transform 180ms ease, filter 180ms ease;
}

.cta__btn:hover  { transform: translateY(-1px); filter: brightness(1.02); }
.cta__btn:active { transform: translateY(0);    filter: brightness(0.98); }

.cta__btn-icon {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-pill);
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(24, 201, 255, 0.95), rgba(11, 60, 255, 0.95));
  color: var(--btn-white);
  box-shadow:
    0 10px 18px rgba(0, 0, 0, 0.22),
    0 0 0 1px var(--line-strong) inset;
  font-size: 12px;
}

@media (max-width: 600px) {
  .cta__subtext br { display: none; }
  .cta__card::before {
    background-position: right -40px top -40px, left -55px bottom -55px;
    background-size: clamp(110px, 26vw, 170px), clamp(140px, 34vw, 210px);
    opacity: 0.65;
  }
}


/* ── Shop-specific footer layout overrides ── */
/* (global.css handles the base footer; these override only what's different for shop) */
.footer__top {
  grid-template-columns: 0.5fr 1fr;
}

.footer__cols {
  grid-template-columns: 1fr 1fr;
  justify-content: end;
}

@media (min-width: 800px) {
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
}

.footer__giant {
  font-size: clamp(24px, 10vw, 72px);
}

.code-symbol {
  top: 50%;
  position: relative;
  z-index: 10;
}

/* Approach neon bubbles (shop page version) */
.approach {
  position: relative;
  overflow: hidden;
}

.approach .why__bubbles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  contain: layout style paint;
}

.approach__container { position: relative; z-index: 2; }

.approach .why__bubbles .bubble {
  position: absolute;
  display: block;
  border-radius: var(--radius-pill);
  background: transparent;
  border: 2px solid rgba(24, 201, 255, 0.75);
  box-shadow:
    0 0 18px rgba(24, 201, 255, 0.45),
    0 0 45px rgba(11, 60, 255, 0.35),
    0 0 90px rgba(11, 60, 255, 0.22);
  outline: 1px solid rgba(11, 60, 255, 0.35);
  outline-offset: -10px;
  filter: saturate(1.15);
  animation: bubbleFloat 10s ease-in-out infinite;
  will-change: transform;
}

.approach .why__bubbles .bubble--l1 { width: 240px; height: 240px; left: -120px; top: 18%; animation-duration: 12s; }
.approach .why__bubbles .bubble--l2 { width: 150px; height: 150px; left: -70px;  top: 52%; animation-duration: 9s;  animation-delay: -2s; }
.approach .why__bubbles .bubble--l3 { width: 150px; height: 150px; left: -70px;  top: 75%; animation-duration: 9s;  animation-delay: -2s; }
.approach .why__bubbles .bubble--r1 { width: 260px; height: 260px; right: -130px; top: 28%; animation-duration: 13s; animation-delay: -3s; }
.approach .why__bubbles .bubble--r2 { width: 170px; height: 170px; right: -85px;  top: 70%; animation-duration: 10s; animation-delay: -1s; }

@keyframes bubbleFloat {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(18px, -26px, 0) scale(1.03); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}

@media (max-width: 600px) {
  .approach .why__bubbles .bubble--l1 { width: 190px; height: 190px; left: -105px; }
  .approach .why__bubbles .bubble--r1 { width: 200px; height: 200px; right: -110px; }
  .approach .why__bubbles .bubble--l2 { width: 185px; height: 185px; left: -75px; }
  .approach .why__bubbles .bubble--l3 { width: 180px; height: 180px; left: -70px; top: 85%; }
  .approach .why__bubbles .bubble--r2 { width: 140px; height: 140px; right: -85px; }
}

@media (min-width: 1500px) {
  .approach .why__bubbles .bubble--l1 { left: 380px; top: 18%; }
  .approach .why__bubbles .bubble--l2 { left: 150px; top: 72%; }
  .bubble--l3 { visibility: hidden; }
  .approach .why__bubbles .bubble--r1 { right: 200px; top: 28%; }
  .approach .why__bubbles .bubble--r2 { right: 185px; top: 70%; }
}

@media (prefers-reduced-motion: reduce) {
  .approach .why__bubbles .bubble { animation: none; }
}