:root {
  --brand: #059669;
  --brand-dark: #0f172a;
  --accent: #f59e0b;
  --brand-text: #fff;
  --dark-text: #fff;
  --ink: #0b1328;
  --muted: #5f6f87;
  --paper: #f4f7fb;
  --line: #dfe7f0;
  --white: #fff;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.wrap { width: min(1220px, calc(100% - 48px)); margin: auto; }

.store-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(226, 232, 240, 0.78);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}
.nav {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto auto;
  align-items: center;
  gap: 34px;
  min-height: 82px;
}
.store-brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.store-brand img { width: 50px; height: 50px; object-fit: contain; }
.store-brand strong { max-width: 300px; font-size: 16px; line-height: 1.15; overflow-wrap: anywhere; }
.nav nav { display: flex; align-items: center; gap: 26px; }
.nav nav a { color: #45536a; font-size: 13px; font-weight: 800; transition: color 0.2s ease; }
.nav nav a:hover { color: var(--brand); }
.login,
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  color: var(--brand-text);
  background: var(--brand);
  font-size: 14px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.login { padding: 15px 20px; box-shadow: 0 12px 28px color-mix(in srgb, var(--brand) 18%, transparent); }
.login:hover,
.cta:hover { transform: translateY(-2px); filter: saturate(1.08); }

.store-status-notice { background: #fff7ed; border-bottom: 1px solid #fed7aa; color: #9a3412; }
.store-status-notice .wrap { min-height: 62px; display: flex; align-items: center; gap: 18px; padding-top: 10px; padding-bottom: 10px; }
.store-status-notice strong { white-space: nowrap; }
.store-status-notice span { flex: 1; line-height: 1.5; }
.store-status-notice a { padding: 11px 17px; border-radius: 10px; color: var(--dark-text); background: var(--brand-dark); font-weight: 850; white-space: nowrap; }

.store-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 700px;
  padding: 110px 0 96px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(2, 13, 32, 0.98) 0%, rgba(2, 13, 32, 0.9) 39%, rgba(2, 13, 32, 0.28) 70%, rgba(2, 13, 32, 0.12) 100%),
    url("/assets/img/store-growth-hero-v1.png") center / cover no-repeat;
}
.store-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 28%, color-mix(in srgb, var(--brand) 20%, transparent), transparent 27%),
    linear-gradient(180deg, transparent 62%, rgba(2, 13, 32, 0.76));
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 60px; }
.hero-copy { position: relative; z-index: 2; max-width: 690px; }
.tag,
.section-title > span,
.opportunity-copy > span,
.clarity-grid > div > span,
.final-cta > div > span {
  display: block;
  color: #58f0bf;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.hero-copy h1 {
  max-width: 720px;
  margin: 20px 0;
  font-size: clamp(48px, 5.4vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  text-wrap: balance;
}
.hero-copy > p { max-width: 650px; margin: 0; color: #c9d7ea; font-size: 19px; line-height: 1.68; }
.hero-alert {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  max-width: 650px;
  margin-top: 26px;
  padding: 16px 18px;
  border: 1px solid rgba(245, 158, 11, 0.34);
  border-radius: 16px;
  background: rgba(245, 158, 11, 0.1);
  backdrop-filter: blur(10px);
}
.hero-alert > i { font-style: normal; font-size: 22px; }
.hero-alert span,
.hero-alert b,
.hero-alert small { display: block; }
.hero-alert b { font-size: 14px; line-height: 1.45; }
.hero-alert small { margin-top: 5px; color: #ced9e8; font-size: 12px; line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.cta { min-height: 54px; padding: 16px 22px; box-shadow: 0 16px 40px color-mix(in srgb, var(--brand) 34%, transparent); }
.cta b { margin-left: 12px; font-size: 18px; }
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 21px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--ink);
  background: #fff;
  font-size: 14px;
  font-weight: 850;
}
.hero-actions .secondary-cta { color: #fff; border-color: rgba(255, 255, 255, 0.24); background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(10px); }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 24px; color: #d8e4f1; font-size: 13px; font-weight: 750; }
.hero-points span::first-letter { color: #58f0bf; }
.hero-visual { position: relative; min-height: 490px; }
.visual-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 210px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(4, 26, 51, 0.78);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(15px);
  animation: float 5s ease-in-out infinite;
}
.visual-chip > i { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: rgba(16, 185, 129, 0.18); font-size: 20px; font-style: normal; }
.visual-chip span,
.visual-chip b,
.visual-chip small { display: block; }
.visual-chip b { font-size: 13px; }
.visual-chip small { margin-top: 4px; color: #b8c8dc; font-size: 11px; }
.chip-top { top: 4%; right: -1%; }
.chip-bottom { right: 9%; bottom: 7%; animation-delay: -2.4s; }
.visual-status {
  position: absolute;
  left: 8%;
  bottom: 20%;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(2, 13, 32, 0.72);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  backdrop-filter: blur(12px);
}
.visual-status i { width: 9px; height: 9px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 6px rgba(52, 211, 153, 0.12); }

.momentum-strip { overflow: hidden; color: #fff; background: var(--brand); }
.momentum-track { display: flex; width: max-content; animation: marquee 26s linear infinite; }
.momentum-track span { padding: 16px 30px; font-size: 12px; font-weight: 900; letter-spacing: 0.07em; white-space: nowrap; }

.store-proof { border-bottom: 1px solid var(--line); background: #fff; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid article { position: relative; min-height: 155px; padding: 30px 28px; border-left: 1px solid var(--line); }
.proof-grid article:last-child { border-right: 1px solid var(--line); }
.proof-grid i { display: block; margin-bottom: 15px; font-size: 23px; font-style: normal; }
.proof-grid strong,
.proof-grid span { display: block; }
.proof-grid strong { font-size: 24px; letter-spacing: -0.04em; }
.proof-grid span { margin-top: 7px; color: var(--muted); font-size: 13px; line-height: 1.5; }

.opportunity-section { padding: 96px 0; background: #07152a; }
.opportunity-card {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  padding: 66px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(2, 13, 32, 0.98) 0%, rgba(2, 13, 32, 0.91) 43%, rgba(2, 13, 32, 0.18) 75%),
    url("/assets/img/store-opportunity-v1.png") center / cover no-repeat;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
}
.opportunity-copy { max-width: 590px; }
.opportunity-copy h2 { margin: 16px 0; font-size: clamp(39px, 4.2vw, 58px); line-height: 1.03; letter-spacing: -0.055em; text-wrap: balance; }
.opportunity-copy > p { margin: 0; color: #c8d5e6; font-size: 17px; line-height: 1.7; }
.opportunity-copy ul { display: grid; gap: 10px; margin: 26px 0 0; padding: 0; list-style: none; }
.opportunity-copy li { display: grid; grid-template-columns: 42px 1fr; column-gap: 13px; padding: 14px; border: 1px solid rgba(255, 255, 255, 0.13); border-radius: 14px; background: rgba(255, 255, 255, 0.07); backdrop-filter: blur(10px); }
.opportunity-copy li i { grid-row: 1 / 3; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; color: var(--brand-text); background: var(--brand); font-size: 11px; font-style: normal; font-weight: 900; }
.opportunity-copy li b { font-size: 14px; }
.opportunity-copy li small { margin-top: 3px; color: #c5d3e4; font-size: 12px; line-height: 1.5; }
.honesty-box { display: flex; gap: 12px; margin-top: 20px; padding: 16px; border-left: 4px solid #34d399; border-radius: 0 12px 12px 0; background: rgba(5, 150, 105, 0.13); }
.honesty-box > i { font-style: normal; color: #58f0bf; font-weight: 900; }
.honesty-box span,
.honesty-box b,
.honesty-box small { display: block; }
.honesty-box b { font-size: 13px; }
.honesty-box small { margin-top: 5px; color: #c9d6e7; font-size: 11px; line-height: 1.55; }

.store-section { padding: 100px 0; }
.section-title { max-width: 820px; margin: 0 auto 50px; text-align: center; }
.section-title.left { margin: 0; text-align: left; }
.section-title > span,
.clarity-grid > div > span { color: var(--brand); }
.section-title h2 { margin: 15px 0; font-size: clamp(37px, 4.1vw, 54px); line-height: 1.06; letter-spacing: -0.055em; text-wrap: balance; }
.section-title p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.how-section { background: #fff; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.steps-grid article { position: relative; overflow: hidden; padding: 32px; border: 1px solid var(--line); border-radius: 21px; background: #fff; box-shadow: 0 18px 50px rgba(15, 23, 42, 0.055); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.steps-grid article::after { content: ""; position: absolute; top: -50px; right: -50px; width: 130px; height: 130px; border-radius: 50%; background: color-mix(in srgb, var(--brand) 8%, transparent); }
.steps-grid article:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.steps-grid article > i { display: grid; place-items: center; width: 49px; height: 49px; border-radius: 15px; color: var(--brand-text); background: var(--brand); font: 900 12px Inter; box-shadow: 0 12px 27px color-mix(in srgb, var(--brand) 25%, transparent); }
.steps-grid article > span { display: block; margin-top: 26px; font-size: 19px; font-weight: 900; letter-spacing: -0.03em; }
.steps-grid p { min-height: 78px; margin: 10px 0 0; color: var(--muted); font-size: 14px; line-height: 1.68; }
.steps-grid em { display: inline-block; margin-top: 15px; color: var(--brand); font-size: 12px; font-style: normal; font-weight: 850; }

.benefits-section { background: var(--paper); }
.benefits-layout { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 72px; align-items: center; }
.text-link { display: inline-flex; margin-top: 26px; color: var(--brand); font-size: 14px; font-weight: 900; }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.benefits-grid article { display: flex; gap: 15px; padding: 23px; border: 1px solid var(--line); border-radius: 17px; background: #fff; box-shadow: 0 12px 35px rgba(15, 23, 42, 0.035); transition: transform 0.22s ease, border-color 0.22s ease; }
.benefits-grid article:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--brand) 38%, var(--line)); }
.benefits-grid i { display: grid; place-items: center; flex: 0 0 42px; height: 42px; border-radius: 13px; color: var(--brand); background: color-mix(in srgb, var(--brand) 11%, white); font: 900 17px Inter; }
.benefits-grid b { font-size: 14px; }
.benefits-grid p { margin: 7px 0 0; color: var(--muted); font-size: 12px; line-height: 1.6; }

.clarity-section { padding: 100px 0; background: #fff; }
.clarity-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 70px; align-items: center; }
.clarity-visual { position: relative; overflow: hidden; min-height: 500px; border-radius: 27px; background: #07152a; box-shadow: var(--shadow); }
.clarity-visual::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255, 255, 255, 0.16); border-radius: inherit; pointer-events: none; }
.clarity-visual img { width: 100%; height: 500px; object-fit: cover; object-position: center; display: block; }
.clarity-grid h2 { margin: 15px 0; font-size: clamp(38px, 4vw, 54px); line-height: 1.06; letter-spacing: -0.055em; }
.clarity-grid p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.72; }
.clarity-list { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin-top: 25px; }
.clarity-list b { display: flex; align-items: center; gap: 9px; padding: 14px; border: 1px solid var(--line); border-radius: 13px; font-size: 12px; }
.clarity-list i { color: var(--brand); font-style: normal; }

.plans { background: linear-gradient(180deg, #f8fafc, #fff); }
.plan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 19px; align-items: stretch; }
.plan-grid article { position: relative; display: flex; flex-direction: column; padding: 33px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: 0 20px 55px rgba(15, 23, 42, 0.055); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.plan-grid article:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.plan-grid article.featured { border: 2px solid var(--brand); background: linear-gradient(160deg, color-mix(in srgb, var(--brand) 6%, white), #fff 45%); box-shadow: 0 26px 68px color-mix(in srgb, var(--brand) 18%, transparent); }
.plan-grid article > em { position: absolute; top: -14px; right: 22px; padding: 8px 12px; border-radius: 999px; color: var(--brand-text); background: var(--brand); font-size: 9px; font-style: normal; font-weight: 900; letter-spacing: 0.08em; }
.plan-grid article > span { color: var(--brand); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.plan-grid article > strong { margin-top: 24px; font-size: 52px; letter-spacing: -0.055em; }
.plan-grid article > strong small { font-size: 13px; letter-spacing: 0; }
.plan-grid article > b { margin-top: 5px; font-size: 23px; }
.plan-grid ul { display: grid; gap: 12px; margin: 27px 0; padding: 23px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); list-style: none; }
.plan-grid li { color: #526079; font-size: 13px; line-height: 1.45; }
.plan-grid li::before { content: "✓"; margin-right: 9px; color: var(--brand); font-weight: 900; }
.plan-grid article > a { display: block; margin-top: auto; padding: 16px; border-radius: 12px; text-align: center; color: var(--brand-text); background: var(--brand); font-size: 13px; font-weight: 900; box-shadow: 0 13px 28px color-mix(in srgb, var(--brand) 22%, transparent); }
.plan-grid article > a.disabled { pointer-events: none; color: #8290a5; background: #dfe7f0; box-shadow: none; }
.plan-note { max-width: 810px; margin: 30px auto 0; text-align: center; color: var(--muted); font-size: 13px; line-height: 1.65; }
.plans-empty { max-width: 760px; margin: 0 auto; padding: 40px; border: 1px solid var(--line); border-radius: 22px; text-align: center; background: linear-gradient(145deg, #fff, color-mix(in srgb, var(--brand) 6%, white)); box-shadow: var(--shadow); }
.plans-empty > strong { display: block; font-size: 25px; letter-spacing: -0.035em; }
.plans-empty > p { max-width: 600px; margin: 13px auto 24px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.plans-empty > div { display: flex; justify-content: center; gap: 11px; }

.faq-section { background: var(--paper); }
.faq-layout { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 75px; }
.faq-list { display: grid; gap: 11px; }
.faq-list details { border: 1px solid var(--line); border-radius: 16px; background: #fff; overflow: hidden; }
.faq-list summary { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 21px 23px; cursor: pointer; list-style: none; font-size: 14px; font-weight: 850; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i { display: grid; place-items: center; flex: 0 0 29px; width: 29px; height: 29px; border-radius: 9px; color: var(--brand); background: color-mix(in srgb, var(--brand) 10%, white); font: 900 16px Inter; transition: transform 0.2s ease; }
.faq-list details[open] summary i { transform: rotate(45deg); }
.faq-list p { margin: 0; padding: 0 23px 22px; color: var(--muted); font-size: 13px; line-height: 1.75; }

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 98px 0;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 50% 120%, color-mix(in srgb, var(--brand) 44%, transparent), transparent 45%),
    linear-gradient(135deg, #061327, color-mix(in srgb, #061327 78%, var(--brand)));
}
.final-cta::before,
.final-cta::after { content: ""; position: absolute; width: 320px; height: 320px; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 50%; }
.final-cta::before { top: -210px; left: -90px; }
.final-cta::after { right: -100px; bottom: -230px; }
.final-cta h2 { max-width: 850px; margin: 17px auto; font-size: clamp(40px, 5vw, 62px); line-height: 1.03; letter-spacing: -0.058em; text-wrap: balance; }
.final-cta p { max-width: 690px; margin: auto; color: #c7d5e6; font-size: 17px; line-height: 1.65; }
.final-cta > div > div { display: flex; justify-content: center; gap: 11px; margin-top: 29px; }
.secondary-cta.light { color: #fff; border-color: rgba(255, 255, 255, 0.28); background: rgba(255, 255, 255, 0.08); }
.final-disclaimer { display: block; max-width: 780px; margin: 28px auto 0; color: #93a7bf; font-size: 11px; line-height: 1.6; }

footer { padding: 60px 0 26px; color: var(--dark-text); background: var(--brand-dark); }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: 54px; }
.footer-brand { display: grid; grid-template-columns: 48px 1fr; align-items: center; gap: 13px; }
.footer-brand img { width: 48px; height: 48px; object-fit: contain; }
.footer-brand strong { font-size: 15px; }
.footer-brand p { grid-column: 1 / -1; max-width: 470px; margin: 14px 0 0; font-size: 12px; line-height: 1.65; opacity: 0.7; }
.footer-grid > div:not(.footer-brand) { display: grid; align-content: start; gap: 11px; }
.footer-grid b { font-size: 12px; }
.footer-grid a { font-size: 12px; opacity: 0.72; }
.footer-grid a:hover { opacity: 1; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 38px; padding-top: 21px; border-top: 1px solid rgba(255, 255, 255, 0.12); font-size: 11px; opacity: 0.6; }
.whatsapp { position: fixed; right: 20px; bottom: 20px; z-index: 45; display: flex; align-items: center; gap: 11px; padding: 12px 17px; border-radius: 999px; color: #fff; background: #16a34a; box-shadow: 0 17px 38px rgba(22, 163, 74, 0.28); transition: transform 0.2s ease; }
.whatsapp:hover { transform: translateY(-3px); }
.whatsapp > i { display: grid; place-items: center; width: 33px; height: 33px; border-radius: 50%; background: rgba(255, 255, 255, 0.16); font-size: 19px; font-style: normal; }
.whatsapp span,
.whatsapp b,
.whatsapp small { display: block; }
.whatsapp b { font-size: 12px; }
.whatsapp small { margin-top: 2px; font-size: 10px; opacity: 0.8; }

.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.75s ease, transform 0.75s ease; }
.js [data-reveal].revealed { opacity: 1; transform: translateY(0); }
.pulse { animation: softPulse 2.8s ease-in-out infinite; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes softPulse { 0%, 100% { box-shadow: 0 16px 40px color-mix(in srgb, var(--brand) 30%, transparent); } 50% { box-shadow: 0 16px 54px color-mix(in srgb, var(--brand) 52%, transparent); } }

@media (max-width: 1050px) {
  .nav { grid-template-columns: minmax(220px, 1fr) auto; }
  .nav nav { display: none; }
  .hero-grid { grid-template-columns: 1fr 0.68fr; gap: 24px; }
  .store-hero { background-position: 58% center; }
  .benefits-layout,
  .clarity-grid,
  .faq-layout { grid-template-columns: 1fr; gap: 45px; }
  .section-title.left { max-width: 780px; margin: auto; text-align: center; }
  .text-link { margin-top: 20px; }
  .clarity-visual { order: 2; }
}

@media (max-width: 800px) {
  .wrap { width: min(100% - 32px, 1220px); }
  .store-hero { min-height: 0; padding: 82px 0 70px; background-position: 64% center; }
  .store-hero::before { background: linear-gradient(90deg, rgba(2, 13, 32, 0.96), rgba(2, 13, 32, 0.78)); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .hero-visual { display: none; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid article:nth-child(2) { border-right: 1px solid var(--line); }
  .opportunity-card { min-height: 0; padding: 44px; background-position: 63% center; }
  .opportunity-card::before { content: ""; position: absolute; inset: 0; background: rgba(2, 13, 32, 0.45); pointer-events: none; }
  .opportunity-copy { position: relative; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid p { min-height: 0; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .store-section,
  .clarity-section,
  .opportunity-section { padding: 76px 0; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .nav { min-height: 70px; gap: 10px; }
  .store-brand img { width: 40px; height: 40px; }
  .store-brand strong { max-width: 150px; font-size: 12px; }
  .login { padding: 12px 13px; font-size: 11px; }
  .store-status-notice .wrap { align-items: flex-start; flex-direction: column; gap: 9px; padding-top: 15px; padding-bottom: 15px; }
  .store-status-notice strong { white-space: normal; }
  .store-status-notice a { width: 100%; text-align: center; }
  .store-hero { padding: 68px 0 58px; }
  .hero-copy h1 { font-size: 43px; }
  .hero-copy > p { font-size: 17px; }
  .hero-alert { padding: 14px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions a { width: 100%; }
  .hero-points { gap: 9px 13px; font-size: 12px; }
  .momentum-track span { padding: 14px 22px; font-size: 10px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid article { min-height: 0; padding: 24px 20px; border-right: 1px solid var(--line); }
  .opportunity-card { padding: 30px 22px; border-radius: 22px; }
  .opportunity-copy h2 { font-size: 38px; }
  .opportunity-copy > p { font-size: 15px; }
  .opportunity-copy li { grid-template-columns: 38px 1fr; }
  .opportunity-copy li i { width: 38px; height: 38px; }
  .store-section,
  .clarity-section,
  .opportunity-section { padding: 64px 0; }
  .section-title { margin-bottom: 36px; }
  .section-title h2,
  .clarity-grid h2 { font-size: 36px; }
  .section-title p,
  .clarity-grid p { font-size: 15px; }
  .benefits-grid,
  .clarity-list { grid-template-columns: 1fr; }
  .clarity-visual { min-height: 340px; }
  .clarity-visual img { height: 340px; }
  .plan-grid { grid-template-columns: 1fr; }
  .plan-grid article { padding: 28px 24px; }
  .plans-empty { padding: 30px 21px; }
  .plans-empty > div,
  .final-cta > div > div { flex-direction: column; }
  .final-cta { padding: 72px 0; }
  .final-cta h2 { font-size: 40px; }
  .final-cta > div > div a { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .whatsapp { right: 14px; bottom: 14px; padding: 10px; }
  .whatsapp span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}
