/* Snitchy - light theme */
:root {
  --bg: #F4DCA4;
  --bg-elevated: #FFFFFF;
  --card: #FFFFFF;
  --card-hover: #F3EEE1;
  --gold: #D8A028;
  --gold-light: #E8B84A;
  --gold-dark: #6B4423;
  --gold-pale: #F0C860;
  --on-gold: #1A1304;
  --text: #1E2439;
  --text-muted: #5B6379;
  --border: rgba(17, 24, 49, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: "";
  position: absolute;
  inset: -360px;
  z-index: -1;
  pointer-events: none;
  background-image: url("images/pixels.svg");
  background-repeat: repeat;
  background-size: 360px 360px;
  animation: pixel-drift 120s linear infinite;
}

@keyframes pixel-drift {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(360px, 360px, 0); }
}

@media (prefers-reduced-motion: reduce) {
  body::before { animation: none; }
}

.container {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }

a { color: var(--gold-dark); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 13px 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 3px 14px -10px rgba(17, 24, 49, 0.45);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  opacity: 0;
  transform: translateY(-7px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.site-header.scrolled .brand {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-wrap { position: relative; }
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 23px;
  height: 2.5px;
  margin: 0 auto;
  border-radius: 2px;
  background: var(--text);
}
.nav-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 168px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 18px 44px -18px rgba(17, 24, 49, 0.4);
}
.nav-menu[hidden] { display: none; }
.nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  text-decoration: none;
}
.nav-item:hover { background: var(--card-hover); }
.nav-item--soon { color: var(--text-muted); cursor: default; }
.nav-item--cta { color: var(--gold-dark); font-weight: 800; }
.nav-item em {
  font-style: normal;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--gold);
  color: var(--on-gold);
  padding: 3px 7px;
  border-radius: 6px;
}
.brand-mark { height: 36px; width: auto; }
.brand-name {
  height: 23px;
  width: auto;
}

/* Hero */
.hero {
  text-align: left;
  padding: 56px 0 28px;
}
.hero-duo {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 16px;
  align-items: start;
  max-width: 560px;
  margin: 36px auto 8px;
}
.hero-frame--cam { grid-column: 1; grid-row: 1; }
.hero-frame--dash { grid-column: 3; grid-row: 1; }
.hero-foot--cam { grid-column: 1; grid-row: 2; }
.hero-foot--dash { grid-column: 3; grid-row: 2; }
.hero-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-foot .store-buttons { margin-top: 0; }
.hero-phone-frame {
  position: relative;
  display: block;
  width: 100%;
  max-width: 232px;
  margin: 0 auto;
  padding: 9px 11px;
  background: #0A0E1A;
  border-radius: 26px;
  border: 1px solid rgba(216, 160, 40, 0.5);
  box-shadow: 0 24px 60px -24px rgba(17, 24, 49, 0.4);
}
/* camera lens on the side bezel */
.hero-phone-frame::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}
.hero-shot {
  display: block;
  width: 100%;
  border-radius: 15px;
  background: #000;
}
/* camera phone shows a live photo feed, cropped to fill the screen */
.hero-shot--cam {
  aspect-ratio: 688 / 1532;
  object-fit: cover;
  object-position: center;
}
.cam-rec {
  position: absolute;
  top: 19px;
  left: 21px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(10, 14, 26, 0.55);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}
.cam-rec i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4444;
  animation: recBlink 1.4s ease-in-out infinite;
}
@keyframes recBlink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.25; }
}
@media (prefers-reduced-motion: reduce) {
  .cam-rec i { animation: none; }
}
.hero-phone-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.2;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
}
.hero-phone-label small {
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold-dark);
}
/* Transmission connector: camera -> dashboard */
.hero-link {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
.hero-link-track {
  position: relative;
  width: 46px;
  height: 10px;
}
.hero-link-track i {
  position: absolute;
  top: 3px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-dark);
  animation: heroFlow 1.6s linear infinite;
}
.hero-link-track i:nth-child(2) { animation-delay: 0.53s; }
.hero-link-track i:nth-child(3) { animation-delay: 1.06s; }
.hero-link-track::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid var(--gold-dark);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}
@keyframes heroFlow {
  0%   { transform: translateX(-4px); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateX(40px); opacity: 0; }
}
.hero-link-tag {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-dark);
}
.hero-link-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: heroPulse 1.6s ease-in-out infinite;
}
@keyframes heroPulse {
  0%, 100% { opacity: 0.4; transform: scale(0.85); }
  50%      { opacity: 1; transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-link-track i { animation: none; opacity: 1; }
  .hero-link-track i:nth-child(1) { left: 4px; }
  .hero-link-track i:nth-child(2) { left: 18px; }
  .hero-link-track i:nth-child(3) { left: 32px; }
  .hero-link-tag::before { animation: none; opacity: 1; }
}
.hero-eyebrow {
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
}
.hero h1 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text);
}
.hero h1 .accent { color: var(--gold-dark); }
.hero-sub {
  margin-top: 12px;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
}

/* Reviews slider */
.reviews { max-width: 540px; margin: 36px auto 0; }
.reviews-viewport { overflow: hidden; padding: 4px 4px 14px; }
.reviews-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.review {
  flex: 0 0 100%;
  text-align: center;
  padding: 22px 26px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 14px 36px -24px rgba(17, 24, 49, 0.28);
}
.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 3px;
}
.review blockquote {
  margin: 10px 0 0;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text);
}
.review figcaption {
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-dark);
}
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 4px;
}
.reviews-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 24, 49, 0.18);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}
.reviews-dots button.is-active {
  width: 20px;
  border-radius: 5px;
  background: var(--gold);
}

/* Store buttons */
.store-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--on-gold);
  text-decoration: none;
  transition: transform 0.12s ease;
}
.store-btn:active { transform: scale(0.98); }
.store-btn-icon { width: 24px; height: 24px; flex-shrink: 0; }
.store-btn-text { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.store-btn-text small { font-size: 0.62rem; font-weight: 600; opacity: 0.85; }
.store-btn-text strong { font-size: 1.02rem; font-weight: 800; }
.store-btn--soon { opacity: 0.5; cursor: default; }
.hero-camera-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}
.hero-store-cta {
  display: flex;
  justify-content: center;
  margin-top: 22px;
  margin-bottom: -14px;
}
.hero-camera-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-dark);
}
.hero-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin: 0 0 14px;
}
.hero-logo img {
  height: 96px;
  width: auto;
}
.hero-logo .logo-word {
  height: 80px;
  width: auto;
}

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 0.98rem;
  text-align: center;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 16px;
  transition: transform 0.12s ease, background 0.15s ease;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--on-gold);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--gold-pale), var(--gold-light)); }
.btn-outline {
  background: transparent;
  color: var(--gold-dark);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { background: var(--card-hover); border-color: var(--gold); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-with-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-play-logo { width: 20px; height: 20px; flex-shrink: 0; }
.btn-lg .btn-play-logo { width: 24px; height: 24px; }

/* Setup */
.setup { padding: 28px 0 72px; }
.section-title {
  text-align: center;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gold-dark);
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin: 8px 0 40px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.step {
  --indent: 62px; /* step-num width + gap, used to re-center the phone */
  display: flex;
  gap: 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 14px 36px -22px rgba(17, 24, 49, 0.28);
}
.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--on-gold);
}
.step-body { flex: 1; }
.step-device {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-dark);
  margin-bottom: 4px;
}
.step-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--gold-dark);
}
.step-body p { color: var(--text-muted); }
.step-body p strong { color: var(--text); }
.step-body .btn { margin-top: 14px; }
.step-hint {
  font-size: 0.85rem;
  margin-top: 8px;
}
.step-phone {
  position: relative;
  left: calc(var(--indent) / -2);
  max-width: 210px;
  margin: 14px auto 18px;
  padding: 8px;
  background: #0A0E1A;
  border-radius: 30px;
  border: 1px solid rgba(216, 160, 40, 0.5);
  box-shadow: 0 16px 36px -18px rgba(17, 24, 49, 0.4);
}
.step-phone img {
  display: block;
  width: 100%;
  border-radius: 23px;
}

/* Download CTA */
.download-cta {
  text-align: center;
  margin-top: 52px;
  padding: 48px 30px;
  background: #FBF3DF;
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: 0 14px 36px -24px rgba(17, 24, 49, 0.28);
}
.download-cta h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-dark);
}
.download-cta > p {
  color: var(--text-muted);
  margin: 8px 0 24px;
}
.cta-note {
  max-width: 480px;
  margin: 22px auto 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 36px 0;
  text-align: center;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
}
.footer-brand .brand-mark { height: 26px; width: auto; }
.footer-brand .footer-word { height: 17px; width: auto; }
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-bottom: 14px;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
}
.footer-links a:hover { color: var(--gold-dark); }
.footer-copy {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Legal pages */
.legal-page { padding: 48px 0 72px; }
.legal-page h1 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gold-dark);
}
.legal-page .effective-date {
  color: var(--text-muted);
  margin: 6px 0 28px;
  font-size: 0.9rem;
}
.legal-page h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 32px 0 10px;
  color: var(--gold-dark);
}
.legal-page h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 20px 0 8px;
}
.legal-page p { margin-bottom: 12px; color: var(--text-muted); }
.legal-page ul { margin: 0 0 12px 22px; color: var(--text-muted); }
.legal-page li { margin-bottom: 6px; }
.legal-page strong { color: var(--text); }

/* Store page */
.store-page { padding: 56px 0 72px; }
.store-hero { text-align: left; margin-bottom: 36px; }
.store-hero h1 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text);
}
.store-hero h1 .accent { color: var(--gold-dark); }
.store-lede {
  margin-top: 14px;
  max-width: 580px;
  color: var(--text-muted);
  font-size: 1.02rem;
}

.store-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.product-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 14px 36px -22px rgba(17, 24, 49, 0.28);
  display: flex;
  flex-direction: column;
}
.product-art {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  margin-bottom: 16px;
  background: #FBF3DF;
  border-radius: 18px;
  color: var(--gold-dark);
}
.product-art svg { width: 50%; height: auto; }
.product-badge {
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--gold);
  color: var(--on-gold);
  padding: 4px 9px;
  border-radius: 6px;
  margin-bottom: 8px;
}
.product-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 6px;
}
.product-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.5;
}

/* Guide page */
.guide-page { padding: 56px 0 72px; }
.guide-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 32px;
}
.guide-toc a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
  background: var(--card);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.15s ease;
}
.guide-toc a:hover { background: var(--card-hover); }
.guide-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.guide-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 28px 30px;
  box-shadow: 0 14px 36px -22px rgba(17, 24, 49, 0.28);
  scroll-margin-top: 88px;
}
.guide-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-dark);
  margin-bottom: 4px;
}
.guide-card h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.guide-card > p {
  color: var(--text-muted);
  margin-bottom: 12px;
}
.guide-card .guide-sub {
  font-weight: 700;
  color: var(--text);
  margin: 18px 0 10px;
}
.guide-card ul {
  margin: 0 0 0 20px;
  color: var(--text-muted);
}
.guide-card li { margin-bottom: 8px; }
.guide-card li strong { color: var(--text); }
.pro-tag {
  display: inline-block;
  vertical-align: middle;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--gold);
  color: var(--on-gold);
  padding: 2px 7px;
  border-radius: 5px;
  margin-left: 6px;
}

/* Signup */
.store-signup {
  text-align: center;
  padding: 44px 30px;
  background: #FBF3DF;
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: 0 14px 36px -24px rgba(17, 24, 49, 0.28);
}
.store-signup h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold-dark);
}
.store-signup > p {
  color: var(--text-muted);
  margin: 8px auto 22px;
  max-width: 440px;
}
.signup-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
}
.signup-form input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 13px 16px;
  font: inherit;
  font-size: 0.98rem;
  color: var(--text);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.signup-form input[type="email"]:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(216, 160, 40, 0.18);
}
.signup-form input[type="email"]:disabled {
  background: #f3eee1;
  cursor: not-allowed;
}
.signup-form .btn { white-space: nowrap; }
.signup-form .btn:disabled { opacity: 0.7; cursor: not-allowed; }
.signup-status {
  min-height: 1.4em;
  margin-top: 14px;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.signup-status.is-success { color: #1a7a3d; font-weight: 600; }
.signup-status.is-error { color: #a23a2c; }

/* Responsive */
@media (min-width: 761px) {
  .nav-toggle { display: none; }
  .nav-menu,
  .nav-menu[hidden] {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: static;
    min-width: 0;
    gap: 4px;
    padding: 0;
    background: none;
    border: 0;
    box-shadow: none;
  }
  .nav-item { padding: 8px 14px; }
}
@media (max-width: 760px) {
  .store-products { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .hero { padding: 44px 0 14px; }
  .hero h1 { font-size: 1.75rem; }
  .hero-logo img { height: 66px; }
  .hero-logo .logo-word { height: 56px; }
  .store-btn { flex: 1; min-width: 150px; justify-content: center; }
  .hero-duo { column-gap: 7px; }
  .hero-foot .btn-primary { width: 100%; padding: 11px 14px; font-size: 0.9rem; }
  .hero-foot .store-buttons { gap: 8px; width: 100%; }
  .hero-foot .store-btn { flex: 1 1 100%; min-width: 0; padding: 9px 10px; gap: 7px; }
  .hero-foot--cam .store-btn { width: 100%; }
  .hero-foot .store-btn-icon { width: 20px; height: 20px; }
  .hero-foot .store-btn-text strong { font-size: 0.9rem; }
  .hero-foot .store-btn-text small { font-size: 0.56rem; }
  .step { padding: 20px; gap: 14px; --indent: 52px; }
  .step-num { width: 38px; height: 38px; font-size: 1.1rem; }
  .store-hero h1 { font-size: 1.75rem; }
  .store-products { grid-template-columns: 1fr; }
  .store-signup { padding: 32px 22px; }
  .signup-form { flex-direction: column; }
  .signup-form .btn { width: 100%; }
}
