/* ===================================================================
   GSM Studio — storefront styles
   Brand: forest green + white. Modern, calm, premium.
   =================================================================== */

:root {
  --brand-900: #0e3b22;
  --brand-800: #145130;
  --brand-700: #1b6b3b;
  --brand-600: #1f7a44;
  --brand-500: #279150;
  --brand-400: #43a96a;
  --brand-100: #e7f4ec;
  --brand-50:  #f2f9f5;

  --ink:    #0f2118;   /* headings */
  --text:   #3b4a41;   /* body */
  --muted:  #5b6b62;   /* secondary (AA contrast, with margin) */
  --line:   #e4ece7;   /* borders */
  --line-2: #d6e3da;

  --bg:      #ffffff;
  --bg-soft: #f5faf6;
  --wash:    #e9f5ee;

  --white: #ffffff;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(16, 40, 26, .05);
  --shadow:    0 10px 30px rgba(16, 50, 30, .08);
  --shadow-lg: 0 24px 60px rgba(16, 50, 30, .14);

  --container: 1140px;
  --font: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Space Grotesk", "Hanken Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); line-height: 1.12; letter-spacing: -0.02em; font-weight: 700; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--brand-700); color: #fff; padding: 10px 16px; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 15px; line-height: 1;
  padding: 12px 20px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .15s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn--lg { padding: 16px 26px; font-size: 16px; }
.btn--primary { background: var(--brand-600); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--brand-700); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { background: var(--bg-soft); border-color: var(--brand-400); transform: translateY(-2px); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82); backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent; transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.nav.is-scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.brand__mark {
  width: 32px; height: 32px; border-radius: 9px; background: var(--brand-600); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 18px; box-shadow: var(--shadow-sm);
}
.brand__name { font-size: 17px; }

.nav__links { display: flex; gap: 30px; }
.nav__links a { font-size: 15px; font-weight: 500; color: var(--text); position: relative; }
.nav__links a:hover { color: var(--brand-700); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--brand-500); transition: width .2s ease;
}
.nav__links a:hover::after { width: 100%; }

.nav__cta { display: flex; align-items: center; gap: 18px; }
.nav__etsy { font-size: 15px; font-weight: 500; color: var(--text); }
.nav__etsy:hover { color: var(--brand-700); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background:
  radial-gradient(1100px 520px at 78% -8%, var(--wash) 0%, rgba(233,245,238,0) 62%),
  linear-gradient(180deg, var(--bg-soft) 0%, #fff 70%); }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding: 84px 24px 96px; }

.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--brand-700); background: var(--brand-100); padding: 7px 14px; border-radius: 999px;
}
.hero h1 { font-size: clamp(2.4rem, 4.8vw, 3.7rem); margin: 20px 0 18px; font-weight: 800; }
.lede { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--muted); max-width: 33ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 26px; }
.hero__assure { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero__assure li { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--text); }
.hero__assure svg { width: 17px; height: 17px; fill: none; stroke: var(--brand-600); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

/* CSS dashboard */
.hero__visual { position: relative; }
.dash {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 20px; position: relative; z-index: 2;
}
.dash__top { display: flex; align-items: center; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--line); margin-bottom: 16px; }
.dash__dots { display: inline-flex; gap: 6px; }
.dash__dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--line-2); }
.dash__dots i:first-child { background: #f1b6b0; }
.dash__dots i:nth-child(2) { background: #f4d58d; }
.dash__dots i:nth-child(3) { background: var(--brand-400); }
.dash__label { font-size: 13px; font-weight: 600; color: var(--muted); }
.dash__kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 18px; }
.kpi { background: var(--brand-50); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px; }
.kpi__label { display: block; font-size: 12px; color: var(--muted); font-weight: 500; }
.kpi__value { display: block; font-size: 20px; font-weight: 800; color: var(--ink); margin: 3px 0 2px; letter-spacing: -0.02em; }
.kpi__delta { font-size: 11px; font-weight: 600; }
.kpi__delta.up { color: var(--brand-600); }
.kpi__delta.flat { color: var(--muted); }
.dash__chart { background: var(--bg-soft); border-radius: var(--radius-sm); padding: 16px 16px 10px; }
.bars { display: flex; align-items: flex-end; gap: 8px; height: 120px; }
.bars span { flex: 1; border-radius: 5px 5px 0 0; background: linear-gradient(180deg, var(--brand-400), var(--brand-600)); transform-origin: bottom; animation: grow .9s cubic-bezier(.2,.8,.2,1) both; }
.bars span:nth-child(n+8) { background: linear-gradient(180deg, var(--brand-500), var(--brand-800)); }
.dash__chart-x { display: flex; justify-content: space-between; margin-top: 8px; }
.dash__chart-x span { font-size: 11px; color: var(--muted); font-weight: 500; }

@keyframes grow { from { transform: scaleY(0); opacity: .4; } to { transform: scaleY(1); opacity: 1; } }

.dash__float {
  position: absolute; right: -14px; bottom: 38px; z-index: 3;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 12px 16px; display: flex; align-items: center; gap: 11px;
}
.dash__float-dot { width: 34px; height: 34px; border-radius: 50%; background: var(--brand-100); position: relative; flex: none; }
.dash__float-dot::after { content: "✓"; position: absolute; inset: 0; display: grid; place-items: center; color: var(--brand-700); font-weight: 800; }
.dash__float strong { display: block; font-size: 14px; color: var(--ink); }
.dash__float small { display: block; font-size: 12px; color: var(--muted); }

/* ---------- Trust bar ---------- */
.trustbar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trustbar__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; padding: 22px 24px; }
.trust { display: inline-flex; align-items: center; gap: 11px; font-size: 15px; font-weight: 600; color: var(--ink); }
.trust svg { width: 22px; height: 22px; fill: none; stroke: var(--brand-600); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Section heads ---------- */
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 1.08rem; }

/* ---------- Bundle ---------- */
.bundle { padding: 90px 0; }
.bundle__card {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 0; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow);
}
.bundle__media { background: var(--wash); display: grid; place-items: center; padding: 32px; }
.bundle__media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.bundle__body { padding: 44px 48px; display: flex; flex-direction: column; }
.tag { align-self: flex-start; font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--brand-700); background: var(--brand-100); padding: 7px 13px; border-radius: 999px; }
.bundle__body h2 { font-size: clamp(1.5rem, 2.6vw, 2.05rem); margin: 16px 0 12px; }
.bundle__body > p { color: var(--muted); }
.checklist { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; margin: 22px 0 26px; }
.checklist li { position: relative; padding-left: 28px; font-size: 15px; font-weight: 500; color: var(--text); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 1px; width: 19px; height: 19px; border-radius: 50%;
  background: var(--brand-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231b6b3b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat;
}
.bundle__buy { margin-top: auto; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.price { font-size: 30px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.price s { font-size: 18px; font-weight: 600; color: var(--muted); margin-left: 6px; }

/* ---------- Templates grid ---------- */
.templates { padding: 90px 0; background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px;
  display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line-2); }
.card__icon { width: 48px; height: 48px; border-radius: 13px; background: var(--brand-100); display: grid; place-items: center; margin-bottom: 18px; }
.card__icon svg { width: 24px; height: 24px; fill: none; stroke: var(--brand-700); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.card__title { font-size: 18px; margin-bottom: 7px; }
.card__text { font-size: 14.5px; color: var(--muted); flex: 1; }
.card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.card__price { font-size: 15px; font-weight: 700; color: var(--ink); }
.card__price.in-bundle { font-size: 13px; font-weight: 600; color: var(--brand-700); background: var(--brand-100); padding: 4px 10px; border-radius: 999px; }
.card__link { font-size: 14px; font-weight: 600; color: var(--brand-700); display: inline-flex; align-items: center; gap: 6px; transition: gap .2s ease; }
.card:hover .card__link { gap: 11px; }

/* ---------- Why ---------- */
.why { padding: 92px 0; }
.why__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.benefit { padding: 30px 26px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; transition: transform .2s ease, box-shadow .2s ease; }
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.benefit__icon { width: 50px; height: 50px; border-radius: 14px; background: var(--brand-600); display: grid; place-items: center; margin-bottom: 18px; }
.benefit__icon svg { width: 26px; height: 26px; fill: none; stroke: #fff; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.benefit h3 { font-size: 18px; margin-bottom: 9px; }
.benefit p { font-size: 14.5px; color: var(--muted); }

/* ---------- Proof ---------- */
.proof { padding: 26px 0 92px; }
.proof__inner {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: center;
  background: linear-gradient(135deg, var(--brand-800), var(--brand-600));
  border-radius: var(--radius-xl); padding: 48px 52px; color: #fff;
}
.proof__stats { display: grid; grid-template-columns: repeat(3, auto); gap: 30px; }
.stat strong { display: block; font-size: 40px; font-weight: 800; letter-spacing: -0.03em; color: #fff; }
.stat span { font-size: 13.5px; color: rgba(255,255,255,.82); }
.proof__note h3 { color: #fff; font-size: 22px; margin-bottom: 10px; }
.proof__note p { color: rgba(255,255,255,.86); font-size: 15.5px; }

/* ---------- FAQ ---------- */
.faq { padding: 0 0 92px; }
.faq__list { max-width: 760px; margin: 0 auto; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; margin-bottom: 14px; overflow: hidden; }
.faq__item summary {
  cursor: pointer; list-style: none; padding: 20px 24px; font-weight: 600; font-size: 16.5px; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 24px; font-weight: 400; color: var(--brand-600); transition: transform .2s ease; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 24px 22px; color: var(--muted); font-size: 15.5px; }

/* ---------- Newsletter ---------- */
.news { padding: 0 0 96px; }
.news__card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center;
  background: var(--brand-50); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 44px 48px;
}
.news__copy h2 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); }
.news__copy p { color: var(--muted); margin-top: 10px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #cfe0d6; padding: 60px 0 28px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand { color: #fff; }
.footer .brand__name { color: #fff; }
.footer__brand p { margin-top: 16px; font-size: 14.5px; color: #9fb6a8; max-width: 38ch; }
.footer__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.footer__col h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.footer__col a { display: block; font-size: 14.5px; color: #9fb6a8; margin-bottom: 10px; transition: color .15s ease; }
.footer__col a:hover { color: #fff; }
.footer__bar { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: 13px; color: #7e978a; flex-wrap: wrap; gap: 8px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 44px; padding: 60px 24px 72px; }
  .lede { max-width: 46ch; }
  .bundle__card { grid-template-columns: 1fr; }
  .bundle__media { padding: 28px; }
  .bundle__body { padding: 34px 30px; }
  .proof__inner { grid-template-columns: 1fr; gap: 28px; padding: 40px 32px; }
  .news__card { grid-template-columns: 1fr; gap: 24px; padding: 36px 30px; }
  .footer__inner { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 720px) {
  .nav__links {
    position: fixed; inset: 70px 0 auto 0; flex-direction: column; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 8px 24px 20px;
    transform: translateY(-130%); transition: transform .3s ease; box-shadow: var(--shadow);
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav__links a::after { display: none; }
  .nav__etsy { display: none; }
  .nav__toggle { display: flex; }
  .checklist { grid-template-columns: 1fr; }
  .proof__stats { grid-template-columns: 1fr; gap: 18px; }
  .trustbar__inner { justify-content: flex-start; gap: 16px 26px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===================================================================
   Kinetic hero + distinctive accents
   =================================================================== */
.brand__name, .price, .stat strong, .kpi__value, .dash__float strong { font-family: var(--font-display); }

.hero { isolation: isolate; }
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.hero__inner { position: relative; z-index: 1; }
.hero__visual { position: relative; }
.dash { position: relative; z-index: 2; }

.hero__float {
  position: absolute; z-index: 4; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; box-shadow: var(--shadow); padding: 10px 13px;
  display: flex; align-items: center; gap: 10px; will-change: transform;
}
.hero__float strong { display: block; font-size: 13px; color: var(--ink); line-height: 1.2; }
.hero__float small { display: block; font-size: 11px; color: var(--muted); }
.hero__float-ic { width: 30px; height: 30px; border-radius: 9px; background: var(--brand-100); display: grid; place-items: center; flex: none; }
.hero__float-ic svg { width: 17px; height: 17px; fill: none; stroke: var(--brand-700); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hero__float--invoice { top: -20px; left: -32px; }
.hero__float--spark { bottom: -26px; left: 12px; flex-direction: column; align-items: flex-start; gap: 3px; padding: 11px 14px; }
.hero__float--spark .spark { width: 88px; height: 24px; }
.hero__float--spark .spark polyline { fill: none; stroke: var(--brand-600); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.hero__float--spark small { font-size: 11px; }
.hero__float--spark strong { color: var(--brand-700); font-size: 12.5px; }
.hero__float--coin {
  top: 44px; right: -26px; width: 48px; height: 48px; border-radius: 50%;
  justify-content: center; border: none; color: #fff; font-family: var(--font-display);
  font-weight: 700; font-size: 21px; background: radial-gradient(circle at 32% 28%, var(--brand-400), var(--brand-700));
  box-shadow: 0 12px 26px rgba(20, 80, 48, .32);
}

.card, .benefit { transform-style: preserve-3d; }

@media (max-width: 900px) {
  .hero__float { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__canvas { display: none; }
}

/* ===================================================================
   Signature layer: custom cursor, grain, marquee, headline highlight
   =================================================================== */
.cursor-dot {
  position: fixed; top: 0; left: 0; width: 14px; height: 14px; margin: -7px 0 0 -7px;
  border-radius: 50%; border: 2px solid var(--brand-500); background: transparent;
  pointer-events: none; z-index: 200; mix-blend-mode: multiply;
  transition: width .2s ease, height .2s ease, margin .2s ease, background .2s ease, border-color .2s ease;
}
.cursor-dot.is-big { width: 44px; height: 44px; margin: -22px 0 0 -22px; background: rgba(39, 145, 80, .10); border-color: var(--brand-600); }

body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 150; opacity: .045; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero h1 { font-size: clamp(2.7rem, 5.6vw, 4.5rem); }
.hl { white-space: nowrap; background: linear-gradient(transparent 58%, #bfe6cd 58%); padding: 0 .06em; border-radius: 2px; }

.marquee { overflow: hidden; background: var(--ink); border-top: 1px solid rgba(255, 255, 255, .06); }
.marquee__track { display: flex; width: max-content; animation: marq 30s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-size: clamp(1.05rem, 2vw, 1.55rem); font-weight: 600; color: #7ed2a0; letter-spacing: .01em; padding: 15px 0; white-space: nowrap; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marq { to { transform: translateX(-50%); } }

@media (hover: none) { .cursor-dot { display: none; } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } body::after { display: none; } }

/* ===================================================================
   World-class pass: trust, comparison, product pages, a11y
   =================================================================== */
a:focus-visible, button:focus-visible, summary:focus-visible, [tabindex]:focus-visible { outline: 3px solid var(--brand-700); outline-offset: 3px; border-radius: 4px; }

/* ===== Dual-tone cinematic: dark hero + dark bands, glow, glass ===== */
.hero{background:radial-gradient(820px 440px at 82% -12%,rgba(61,220,132,.20),transparent 60%),radial-gradient(620px 520px at 8% 116%,rgba(31,154,85,.15),transparent 60%),linear-gradient(180deg,#0b1410,#0c1712)}
.hero .eyebrow{color:#5dffa3;background:rgba(61,220,132,.12)}
.hero h1{color:#fff}
.hero .hl{background:none;color:#5dffa3;padding:0;text-shadow:0 0 26px rgba(61,220,132,.55)}
.hero .lede{color:#9fc1ae}
.hero__anchor{color:#86a596}.hero__anchor strong{color:#5dffa3}.hero__anchor s{color:#6f8f80}
.hero__assure li{color:#bfe0cf}.hero__assure svg{stroke:#5dffa3}
.hero .btn--primary{background:linear-gradient(180deg,#5dffa3,#1f9a55);color:#04130b;box-shadow:0 10px 30px rgba(61,220,132,.45)}
.hero .btn--primary:hover{background:linear-gradient(180deg,#74ffb4,#23a85e)}
.hero .btn--ghost{background:rgba(255,255,255,.04);border-color:rgba(255,255,255,.2);color:#e7f5ec}
.hero .btn--ghost:hover{background:rgba(255,255,255,.09);border-color:#5dffa3}
.hero .dash{background:rgba(255,255,255,.055);border-color:rgba(255,255,255,.12);box-shadow:0 24px 60px rgba(0,0,0,.5)}
.hero .dash__top{border-color:rgba(255,255,255,.08)}.hero .dash__label{color:#8fb3a0}
.hero .dash__dots i{background:rgba(255,255,255,.25)}
.hero .kpi{background:rgba(61,220,132,.10);border-color:rgba(61,220,132,.22)}
.hero .kpi__label{color:#8fb3a0}.hero .kpi__value{color:#fff}.hero .kpi__delta.up{color:#5dffa3}
.hero .dash__chart{background:rgba(0,0,0,.22)}
.hero .bars span{background:linear-gradient(180deg,#5dffa3,#1f9a55)}
.hero .bars span:nth-child(n+8){background:linear-gradient(180deg,#9dffc6,#28c466);box-shadow:0 0 16px rgba(61,220,132,.4)}
.hero .dash__chart-x span{color:#8fb3a0}
.hero .dash__float,.hero .hero__float{background:rgba(14,26,20,.82);border-color:rgba(255,255,255,.12);color:#e7f5ec}
.hero .dash__float strong,.hero .hero__float strong{color:#fff}.hero .dash__float small,.hero .hero__float small{color:#8fb3a0}
.hero .hero__float-ic{background:rgba(61,220,132,.16)}.hero .hero__float-ic svg{stroke:#5dffa3}
.hero .dash__float-dot{background:rgba(61,220,132,.2)}.hero .dash__float-dot::after{color:#5dffa3}
.hero .hero__float--coin{background:radial-gradient(circle at 32% 28%,#74ffb4,#1f7a44);color:#04130b;box-shadow:0 12px 26px rgba(61,220,132,.4)}
.hero .hero__float--spark .spark polyline{stroke:#5dffa3}.hero .hero__float--spark strong{color:#5dffa3}
.nav--hero{background:transparent;box-shadow:none;border-bottom-color:transparent}
.nav--hero .brand__name{color:#fff}.nav--hero .nav__links a{color:#bfe0cf}.nav--hero .nav__links a:hover{color:#fff}
.nav--hero .nav__etsy{color:#bfe0cf}.nav--hero .nav__etsy:hover{color:#fff}.nav--hero .nav__toggle span{background:#fff}
.nav--hero .btn--primary{background:linear-gradient(180deg,#5dffa3,#1f9a55);color:#04130b;box-shadow:0 8px 22px rgba(61,220,132,.4)}
.proof__inner{background:radial-gradient(600px 320px at 82% -25%,rgba(61,220,132,.18),transparent 60%),linear-gradient(155deg,#0d1a14,#0a1410);border:1px solid rgba(255,255,255,.07)}
.stat strong{color:#5dffa3;text-shadow:0 0 26px rgba(61,220,132,.45)}
.how{padding:84px 0}
.how__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.how__step{position:relative;padding:30px 24px;border:1px solid var(--line);border-radius:var(--radius-lg);background:#fff}
.how__n{display:grid;place-items:center;width:42px;height:42px;border-radius:12px;background:var(--brand-600);color:#fff;font-family:var(--font-display);font-weight:700;font-size:18px;margin-bottom:16px}
.how__step h3{font-size:18px;margin-bottom:8px}.how__step p{font-size:14.5px;color:var(--muted)}
.finalcta{position:relative;overflow:hidden;background:radial-gradient(800px 420px at 50% -30%,rgba(61,220,132,.22),transparent 60%),linear-gradient(180deg,#0b1410,#0a120e);color:#cde9d8;padding:96px 0;text-align:center}
.finalcta::before{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(61,220,132,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(61,220,132,.06) 1px,transparent 1px);background-size:40px 40px;-webkit-mask-image:radial-gradient(560px 300px at 50% 0%,#000,transparent 70%);mask-image:radial-gradient(560px 300px at 50% 0%,#000,transparent 70%)}
.finalcta__inner{position:relative}
.finalcta h2{color:#fff;font-size:clamp(2rem,4.5vw,3.2rem)}.finalcta h2 span{color:#5dffa3;text-shadow:0 0 28px rgba(61,220,132,.6)}
.finalcta p{color:#9fc1ae;margin:14px auto 26px;font-size:1.1rem;max-width:42ch}
.finalcta .btn--primary{background:linear-gradient(180deg,#5dffa3,#1f9a55);color:#04130b;box-shadow:0 12px 34px rgba(61,220,132,.45)}
.finalcta__sub{margin-top:18px;font-size:13px;color:#7fa593}
@media (max-width:760px){.how__grid{grid-template-columns:1fr}}

/* ===== Pre-launch QA fixes (tap targets, contrast) ===== */
.btn{min-height:44px}
.nav__toggle{min-width:44px;min-height:44px;justify-content:center}
.compare__tag{color:#eafff3}

/* ===== Final polish: unify darks, dark/light seams, rhythm, depth ===== */
.marquee{background:#0b1410}
.footer{background:#0b1410}
.hero::after{content:"";position:absolute;left:0;right:0;bottom:0;height:1px;background:linear-gradient(90deg,transparent,rgba(61,220,132,.45),transparent);z-index:2}
.finalcta::after{content:"";position:absolute;left:0;right:0;top:0;height:1px;background:linear-gradient(90deg,transparent,rgba(61,220,132,.4),transparent)}
.hero__copy{position:relative}
.hero__copy::before{content:"";position:absolute;inset:-40px -60px;background:radial-gradient(120% 90% at 30% 40%,rgba(11,20,16,.55),transparent 70%);z-index:-1;pointer-events:none}
.bundle,.templates,.why,.how,.compare{padding:96px 0}
.proof{padding:40px 0 96px}.faq{padding:8px 0 96px}.news{padding:8px 0 96px}
.section-head{margin-bottom:56px}
.hero h1,.finalcta h2,.section-head h2{letter-spacing:-0.03em}
.card{box-shadow:var(--shadow-sm)}
.btn--primary:hover{transform:translateY(-2px) scale(1.02)}
.faq__item{transition:border-color .2s ease,box-shadow .2s ease}
.faq__item:hover{border-color:var(--line-2)}
.faq__item[open]{border-color:var(--brand-400);box-shadow:var(--shadow-sm)}
.proof__inner{box-shadow:inset 0 1px 0 rgba(255,255,255,.06),var(--shadow-lg)}
@media (max-width:900px){.hero__inner{padding:48px 24px 64px}}

.hero__anchor { margin: -8px 0 22px; font-size: 14px; color: var(--muted); }
.hero__anchor s { color: var(--muted); } .hero__anchor strong { color: var(--brand-700); }

.price em { font-size: 12px; font-style: normal; font-weight: 600; color: #fff; background: var(--brand-600); padding: 3px 9px; border-radius: 999px; margin-left: 6px; vertical-align: middle; }
.guarantee, .bundle__secure { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: var(--muted); margin-top: 14px; line-height: 1.5; }
.guarantee { color: var(--brand-800); font-weight: 500; }
.guarantee svg, .bundle__secure svg { width: 18px; height: 18px; flex: none; stroke: var(--brand-600); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; margin-top: 1px; }

.proof__sign { margin-top: 12px; font-weight: 600; color: #fff; }
.proof__note a { color: #fff; text-decoration: underline; }

/* Comparison */
.compare { padding: 72px 0; }
.compare__wrap { overflow-x: auto; max-width: 940px; margin: 0 auto; border: 1px solid var(--line); border-radius: var(--radius-lg); -webkit-overflow-scrolling: touch; }
.compare__table { width: 100%; border-collapse: collapse; min-width: 660px; background: #fff; }
.compare__table th, .compare__table td { padding: 14px 16px; text-align: left; font-size: 14.5px; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare__table thead th { font-family: var(--font-display); font-size: 15px; color: var(--ink); border-bottom: 2px solid var(--line); }
.compare__table tbody th[scope="row"] { font-weight: 600; color: var(--ink); white-space: nowrap; }
.compare__table td { color: var(--muted); }
.compare__table .is-best { background: var(--brand-50); color: var(--ink); font-weight: 500; }
.compare__table thead .is-best { background: var(--brand-600); color: #fff; }
.compare__tag { display: block; font-size: 11px; font-weight: 600; color: #cdebd9; margin-top: 2px; letter-spacing: .03em; }
.compare__cta { text-align: center; margin-top: 28px; }
.compare__table tbody tr:last-child th, .compare__table tbody tr:last-child td { border-bottom: 0; }

/* Product pages */
.pbreadcrumb { font-size: 13px; color: var(--muted); }
.pbreadcrumb a:hover { color: var(--brand-700); }
.product-hero { padding: 52px 0 56px; }
.product-hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.product-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 12px 0 14px; font-weight: 800; }
.product-hero .lede { max-width: 44ch; }
.pprice { display: flex; align-items: baseline; gap: 12px; margin: 24px 0 8px; flex-wrap: wrap; }
.product__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 18px 0 10px; }
.pinside { padding: 64px 0; background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pinside__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.tab-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; }
.tab-card .n { font-family: var(--font-display); font-size: 13px; color: var(--brand-600); font-weight: 600; }
.tab-card h3 { font-size: 16px; margin: 6px 0 6px; } .tab-card p { font-size: 14px; color: var(--muted); }
.pbenefits { padding: 64px 0; }
.pbenefits__list { max-width: 780px; margin: 0 auto; display: grid; gap: 16px; }
.pbenefit { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: var(--text); }
.pbenefit svg { width: 22px; height: 22px; flex: none; stroke: var(--brand-600); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; margin-top: 2px; }
.pwho { max-width: 780px; margin: 0 auto; padding: 0 0 8px; color: var(--muted); font-size: 16px; }
.related { padding: 56px 0 84px; background: var(--bg-soft); border-top: 1px solid var(--line); }
@media (max-width: 900px) { .product-hero__inner { grid-template-columns: 1fr; gap: 32px; } }

