/* chametagency.org — site styles
   Tokens first; adjust --brand-* to match the final logo colour. */

:root {
  /* Palette taken from the Chamet-style pink-to-violet gradient. */
  --brand-50: #faf5ff;
  --brand-100: #f3e8ff;
  --brand-200: #e6d3ff;
  --brand-300: #d0adff;
  --brand-400: #b27dff;
  --brand-500: #984bff;
  --brand-600: #7f2aff;
  --brand-700: #6a1ee6;
  --brand-800: #5516bd;
  --pink-400: #f05cf3;
  --pink-500: #e03ae6;

  /* Decorative gradient (icon colours) and a text-safe version for buttons. */
  --grad: linear-gradient(135deg, #fc3eef 0%, #b433f8 55%, #7f2aff 100%);
  --grad-btn: linear-gradient(135deg, #c02ee0 0%, #7f2aff 100%);
  --grad-btn-hover: linear-gradient(135deg, #a723c7 0%, #6a1ee6 100%);

  --lav-50: #fcf8ff;
  --lav-100: #f6effe;

  --green-50: #effaf5;
  --green-100: #d9f3e6;
  --green-200: #b3e6cd;
  --green-600: #0e8a5f;
  --green-700: #0b7050;

  --amber-100: #fef3c7;
  --amber-700: #92400e;

  --ink: #1d1a2b;
  --ink-2: #413c55;
  --muted: #5f5a73;
  --line: #e7e2f3;
  --line-2: #d8d1ea;
  --surface: #ffffff;

  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(29, 26, 43, 0.05);
  --shadow: 0 1px 2px rgba(29, 26, 43, 0.04), 0 8px 24px -6px rgba(76, 29, 149, 0.1);
  --shadow-lg: 0 2px 4px rgba(29, 26, 43, 0.04), 0 18px 48px -12px rgba(76, 29, 149, 0.18);

  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --header-h: 64px;
  --bar-h: 0px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);

  color-scheme: light;
}

@media (max-width: 1023.98px) {
  :root { --bar-h: 72px; }
}

/* ── Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  overflow-x: clip;
  padding-bottom: calc(var(--bar-h) + env(safe-area-inset-bottom, 0px));
}
img, svg { max-width: 100%; }
img { height: auto; }
a { color: var(--brand-700); text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--brand-800); text-decoration-thickness: 2px; }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.25em; }
h1, h2, h3 { color: var(--ink); line-height: 1.2; letter-spacing: -0.015em; margin: 0 0 0.6em; text-wrap: balance; }
h1 { font-size: clamp(1.85rem, 1.2rem + 2.8vw, 2.85rem); font-weight: 750; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.45rem, 1.1rem + 1.4vw, 2rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 650; }
.h3-size { font-size: 1.2rem; }
strong { font-weight: 650; color: var(--ink); }
blockquote { margin: 0; }
code { font-size: 0.9em; }
:focus-visible { outline: 3px solid var(--brand-400); outline-offset: 2px; border-radius: 6px; }
[tabindex="-1"]:focus { outline: none; }
.icon { width: 1.25em; height: 1.25em; flex: none; vertical-align: -0.25em; }

.sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
html:not(.js) .js-only { display: none !important; }

.skip-link {
  position: absolute; left: 16px; top: -100px; z-index: 100;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: var(--radius-sm);
}
.skip-link:focus { top: 12px; color: #fff; }

.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 16px; }
@media (min-width: 600px) { .container { padding-inline: 24px; } }
.narrow { max-width: 800px; }
.prose > * { max-width: 70ch; }
.prose h2 { margin-top: 1.6em; }
.prose h2:first-child { margin-top: 0; }

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  min-height: 48px; padding: 0.7em 1.2em;
  border-radius: 12px; border: 1px solid transparent;
  font: inherit; font-weight: 600; font-size: 0.98rem; line-height: 1.2;
  text-decoration: none; cursor: pointer; text-align: center;
  transition: background-color 0.18s var(--ease), border-color 0.18s var(--ease), box-shadow 0.18s var(--ease), transform 0.18s var(--ease);
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn .icon { width: 1.15em; height: 1.15em; }
.btn .icon-ext { width: 0.95em; height: 0.95em; opacity: 0.75; }
.btn-sm { min-height: 44px; padding: 0.55em 1em; font-size: 0.93rem; }
.btn-primary { background: var(--brand-600) var(--grad-btn); color: #fff; box-shadow: 0 4px 14px -4px rgba(160, 46, 240, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.15); }
.btn-primary:hover { background: var(--brand-700) var(--grad-btn-hover); color: #fff; }
.btn-secondary { background: #fff; color: var(--brand-700); border-color: var(--brand-300); }
.btn-secondary:hover { background: var(--brand-50); color: var(--brand-800); border-color: var(--brand-400); }
.btn-ghost { background: transparent; color: var(--ink-2); border-color: var(--line-2); }
.btn-ghost:hover { background: var(--lav-100); color: var(--ink); }
.btn-wallet { background: var(--green-600); color: #fff; }
.btn-wallet:hover { background: var(--green-700); color: #fff; }
.btn-whatsapp { background: #fff; color: var(--green-700); border-color: var(--green-200); }
.btn-whatsapp:hover { background: var(--green-50); color: var(--green-700); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 1.4em 0 1.1em; }
.btn-row--center { justify-content: center; }
.btn-row--end { margin-top: 2em; }
@media (max-width: 479.98px) {
  .btn-row > .btn { flex: 1 1 100%; }
}
.link-btn {
  display: inline-flex; align-items: center; gap: 0.4em; min-height: 44px; padding: 0 0.4em;
  background: none; border: 0; font: inherit; font-size: 0.92rem; color: var(--muted); cursor: pointer;
}
.link-btn:hover { color: var(--brand-700); }
.text-link { display: inline-flex; align-items: center; gap: 0.35em; font-weight: 600; }
.text-link .icon { width: 1em; height: 1em; }

/* ── Header ───────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 16px; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); flex: none; min-height: 44px; }
.brand img { height: 40px; width: auto; }
.brand .brand-icon { width: 36px; height: 36px; border-radius: 10px; flex: none; box-shadow: 0 2px 8px -2px rgba(160, 46, 240, 0.45); }
.wordmark-mark { display: block; width: 36px; height: 36px; flex: none; }
.wordmark-text { font-weight: 750; font-size: 1.08rem; letter-spacing: -0.02em; }
.wordmark-text span { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.main-nav { display: none; margin-left: auto; }
.main-nav ul { display: flex; gap: 2px; list-style: none; margin: 0; padding: 0; }
.main-nav a {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 11px; border-radius: 10px;
  color: var(--ink-2); font-weight: 550; font-size: 0.95rem; text-decoration: none;
}
.main-nav a:hover { background: var(--lav-100); color: var(--ink); }
.main-nav a[aria-current="page"] { color: var(--brand-700); background: var(--brand-50); }
.header-cta { display: none; }
.menu { margin-left: auto; }
.menu-toggle {
  display: inline-flex; align-items: center; gap: 6px; min-height: 44px; min-width: 44px; padding: 0 12px;
  border: 1px solid var(--line-2); border-radius: 12px; background: #fff; color: var(--ink);
  font-weight: 600; font-size: 0.92rem; cursor: pointer; list-style: none;
}
.menu-toggle::-webkit-details-marker { display: none; }
.menu-toggle .icon-close { display: none; }
.menu[open] .menu-toggle .icon-open { display: none; }
.menu[open] .menu-toggle .icon-close { display: inline; }
.menu-panel {
  position: absolute; left: 0; right: 0; top: var(--header-h);
  background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg);
  padding: 8px 16px 20px; max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
}
.menu-panel ul { list-style: none; margin: 0; padding: 0; }
.menu-panel li + li { border-top: 1px solid var(--line); }
.menu-panel nav a { display: flex; align-items: center; min-height: 52px; color: var(--ink); font-weight: 550; text-decoration: none; }
.menu-panel nav a[aria-current="page"] { color: var(--brand-700); }
.menu-actions { display: grid; gap: 10px; margin-top: 12px; }
/* Full nav needs ~1280px; between 1024 and 1279 the Menu button stays alongside the CTA. */
.main-nav a, .header-cta .btn { white-space: nowrap; }
@media (min-width: 1024px) {
  .header-cta { display: block; margin-left: auto; }
  .header-cta + .menu { margin-left: 0; }
}
@media (min-width: 1280px) {
  .main-nav { display: block; }
  .header-cta { margin-left: 0; }
  .menu { display: none; }
}

/* ── Breadcrumbs ──────────────────────────────────────── */
.breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 14px 0 0; font-size: 0.88rem; color: var(--muted); }
.breadcrumbs li { display: inline-flex; align-items: center; gap: 4px; }
.breadcrumbs a { color: var(--muted); display: inline-flex; min-height: 32px; align-items: center; }
.breadcrumbs .icon { width: 14px; height: 14px; }

/* ── Sections ─────────────────────────────────────────── */
.section { padding-block: clamp(40px, 6vw, 76px); }
.section--tight { padding-block: clamp(20px, 3vw, 36px); }
.section--flush-top { padding-top: 0; }
.section--tint { background: var(--lav-50); border-block: 1px solid var(--line); }
.section--wallet { background: var(--green-50); border-block: 1px solid var(--green-100); }
.section-head { max-width: 760px; margin-bottom: clamp(20px, 3vw, 32px); }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.narrow-head { margin-inline: auto; max-width: 800px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin: 0 0 14px;
  padding: 5px 12px 5px 10px; border-radius: 999px;
  background: var(--brand-50); color: var(--brand-700); border: 1px solid var(--brand-100);
  font-size: 0.82rem; font-weight: 650; letter-spacing: 0.01em;
}
.eyebrow .icon { width: 16px; height: 16px; }
.eyebrow--wallet { background: #fff; color: var(--green-700); border-color: var(--green-200); }
.lead { font-size: clamp(1.05rem, 1rem + 0.3vw, 1.18rem); color: var(--ink-2); }
.hero-sub { color: var(--muted); font-size: 0.97rem; }
.fineprint { display: flex; gap: 8px; align-items: flex-start; color: var(--muted); font-size: 0.88rem; }
.fineprint .icon { width: 16px; height: 16px; margin-top: 3px; }
.fineprint--center { justify-content: center; text-align: center; }

/* ── Home hero ────────────────────────────────────────── */
.hero { padding: clamp(28px, 5vw, 64px) 0 clamp(32px, 5vw, 56px); background: radial-gradient(1000px 420px at 85% -10%, rgba(252, 62, 239, 0.12), transparent 60%), radial-gradient(900px 420px at 0% 0%, rgba(127, 42, 255, 0.10), transparent 60%), #fff; border-bottom: 1px solid var(--line); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 32px; align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: 56px; } }
.hero-copy h1 { max-width: 18ch; }
.quickstart { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 20px; }
.quickstart-title { display: flex; align-items: center; gap: 8px; font-weight: 650; color: var(--ink); margin-bottom: 12px; }
.quickstart-title .icon { color: var(--brand-600); }
.quickstart ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.quickstart a {
  display: flex; align-items: center; gap: 14px; padding: 14px; border-radius: var(--radius);
  background: var(--lav-50); border: 1px solid var(--line); color: var(--ink); text-decoration: none;
  transition: border-color 0.18s var(--ease), background-color 0.18s var(--ease);
}
.quickstart a:hover { border-color: var(--brand-300); background: var(--brand-50); }
.quickstart a > span:nth-child(2) { flex: 1; display: grid; }
.quickstart small { color: var(--muted); font-size: 0.88rem; }
.quickstart a > .icon { color: var(--brand-500); }
.qs-n { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: var(--brand-600) var(--grad-btn); color: #fff; font-weight: 700; flex: none; }
.hero-shot .shot-frame { background: #fff; box-shadow: var(--shadow-lg); }

/* Decorative hero photo: desktop only, quick-start card overlaps its lower edge. */
.hero-photo { display: none; }
@media (min-width: 900px) {
  .hero-visual--photo { position: relative; padding-bottom: 150px; }
  .hero-photo { display: block; position: relative; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-lg); }
  .hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(127, 42, 255, 0.18)); pointer-events: none; }
  .hero-photo img { display: block; width: 100%; height: auto; aspect-ratio: 836 / 934; object-fit: cover; max-height: 540px; }
  .hero-visual--photo .quickstart { position: absolute; left: -36px; right: 36px; bottom: 0; }
}

/* ── Page hero (inner pages) ──────────────────────────── */
.page-hero { padding: clamp(20px, 4vw, 44px) 0 clamp(24px, 4vw, 40px); }
.page-hero h1 { max-width: 24ch; }
.page-hero--wallet .lead { color: var(--ink-2); }

/* ── Cards, callouts ──────────────────────────────────── */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(18px, 3vw, 28px); box-shadow: var(--shadow-sm); }
.card > :last-child { margin-bottom: 0; }
.card--soft { background: var(--lav-50); }
.card--wallet { background: var(--green-50); border-color: var(--green-100); }
.callout { display: flex; gap: 12px; padding: 16px 18px; border-radius: var(--radius); border: 1px solid var(--brand-100); background: var(--brand-50); margin: 1.2em 0; }
.callout > .icon { color: var(--brand-600); margin-top: 3px; }
.callout p:last-child { margin-bottom: 0; }
.callout-title { font-weight: 650; margin-bottom: 4px; }
.callout-warn { background: #fffaf0; border-color: #f6e0b5; }
.callout-warn > .icon { color: #b45309; }
.callout-wallet { background: #fff; border-color: var(--green-200); }
.callout-wallet > .icon { color: var(--green-600); }
.disclaimer { display: flex; gap: 10px; color: var(--muted); font-size: 0.93rem; margin-top: 1.2em; }
.disclaimer .icon { width: 18px; height: 18px; margin-top: 3px; color: var(--brand-500); }

.choice-grid, .calc-grid, .link-cards { display: grid; grid-template-columns: minmax(0, 1fr); gap: 16px; }
@media (min-width: 768px) { .choice-grid, .calc-grid, .link-cards { grid-template-columns: 1fr 1fr; gap: 24px; } }
.choice-card {
  display: flex; flex-direction: column; gap: 4px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(20px, 3vw, 28px); box-shadow: var(--shadow);
}
.choice-card { position: relative; overflow: hidden; }
.choice-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: var(--grad); }
.choice-card--host::before { opacity: 0.45; }
.choice-card .btn { margin-top: auto; align-self: flex-start; }
.choice-icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: var(--brand-50); color: var(--brand-600); margin-bottom: 10px; }
.checklist { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 10px; }
.checklist li { display: flex; gap: 10px; }
.checklist .icon { color: var(--green-600); width: 20px; height: 20px; margin-top: 3px; }

.link-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; }
.link-card p:last-child { margin-bottom: 0; }
.link-card-label { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 650; color: var(--brand-700); background: var(--brand-50); padding: 5px 10px; border-radius: 8px; }
.link-card-label .icon { width: 16px; height: 16px; }

.calc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(20px, 3vw, 28px); box-shadow: var(--shadow-sm); }
.calc-kicker { display: inline-flex; gap: 8px; align-items: center; font-size: 0.85rem; font-weight: 650; color: var(--brand-700); }
.calc-kicker .icon { width: 16px; height: 16px; }
.formula { background: var(--lav-50); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; }
.formula p:last-child { margin: 0; }
.formula-label { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.formula-math { font-variant-numeric: tabular-nums; font-size: 1.1rem; color: var(--ink); padding-top: 10px; border-top: 1px dashed var(--line-2); }
.formula-block {
  font-weight: 650; background: var(--brand-50); border-left: 4px solid var(--brand-600);
  padding: 14px 16px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: var(--ink);
}
.formula-result { font-size: 1.15rem; font-variant-numeric: tabular-nums; }
.pill-list { list-style: none; padding: 0; margin: 0 0 1.2em; display: flex; flex-wrap: wrap; gap: 8px; }
.pill-list li { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: 0.92rem; font-weight: 550; }
.pill-list .icon { width: 16px; height: 16px; color: var(--brand-600); }

.split { display: grid; grid-template-columns: minmax(0, 1fr); gap: 28px; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); gap: 56px; } }
.split--media { align-items: start; }

.mini-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.mini-steps li { display: flex; gap: 14px; align-items: center; background: #fff; border: 1px solid var(--green-100); border-radius: var(--radius); padding: 14px 16px; }
.mini-steps li > span:last-child { display: grid; color: var(--muted); font-size: 0.92rem; }
.mini-steps strong { color: var(--ink); font-size: 1rem; }
.mini-n { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: var(--green-600); color: #fff; font-weight: 700; flex: none; }
.mini-steps:not(.mini-steps--wallet) li { border-color: var(--brand-100); }
.mini-steps:not(.mini-steps--wallet) .mini-n { background: var(--brand-600) var(--grad-btn); }

.flow { list-style: none; padding: 0; margin: 0 0 1.2em; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.flow li { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 12px; background: var(--green-50); border: 1px solid var(--green-100); font-size: 0.93rem; }
.flow li:not(:last-child)::after { content: "→"; margin-left: 6px; color: var(--green-600); font-weight: 700; }
.flow .icon { width: 18px; height: 18px; color: var(--green-600); }
.flow small { color: var(--muted); }

.guide-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: minmax(0, 1fr); gap: 14px; }
@media (min-width: 640px) { .guide-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .guide-grid { grid-template-columns: repeat(3, 1fr); } }
.guide-card {
  position: relative; display: grid; grid-template-columns: auto 1fr; column-gap: 14px; row-gap: 2px;
  height: 100%; padding: 18px 44px 18px 18px; border-radius: var(--radius-lg);
  background: #fff; border: 1px solid var(--line); color: var(--ink); text-decoration: none;
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease), transform 0.18s var(--ease);
}
.guide-card:hover { border-color: var(--brand-300); box-shadow: var(--shadow); color: var(--ink); }
.guide-icon { grid-row: span 2; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--brand-50); color: var(--brand-600); }
.guide-card--wallet .guide-icon { background: var(--green-50); color: var(--green-600); }
.guide-title { font-weight: 650; }
.guide-desc { color: var(--muted); font-size: 0.92rem; }
.guide-arrow { position: absolute; right: 16px; top: 20px; color: var(--brand-400); transition: transform 0.18s var(--ease); }
.guide-card:hover .guide-arrow { transform: translateX(3px); }

.next-list { list-style: none; padding: 0; margin: 0 0 1.2em; display: grid; gap: 8px; }
.next-list a { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; font-weight: 600; }
.next-list a .icon { width: 1.1em; height: 1.1em; }
.next-desc { display: block; color: var(--muted); font-size: 0.93rem; margin: -6px 0 4px 1.85em; }

.jump-links { margin-top: 18px; }
.jump-title { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 8px; }
.jump-links ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.jump-links a { display: inline-flex; align-items: center; min-height: 40px; padding: 0 14px; border-radius: 999px; background: #fff; border: 1px solid var(--line-2); color: var(--ink-2); font-size: 0.92rem; font-weight: 550; text-decoration: none; }
.jump-links a:hover { border-color: var(--brand-300); color: var(--brand-700); background: var(--brand-50); }

.cta-panel {
  text-align: center; padding: clamp(28px, 5vw, 52px) clamp(20px, 4vw, 48px); border-radius: 24px;
  background: radial-gradient(700px 300px at 50% -20%, rgba(252, 62, 239, 0.10), transparent 70%), linear-gradient(180deg, var(--brand-50), #fff); border: 1px solid var(--brand-100);
}
.cta-panel p { max-width: 60ch; margin-inline: auto; color: var(--ink-2); }
.wa-line { display: inline-flex; align-items: center; gap: 8px; color: var(--ink-2); }
.wa-line .icon { color: var(--green-600); }

.contact-card {
  display: grid; grid-template-columns: auto 1fr; gap: 14px 16px; align-items: center;
  margin-top: 20px; padding: 20px; border-radius: var(--radius-lg); background: var(--green-50); border: 1px solid var(--green-100);
}
.contact-card .btn { grid-column: 1 / -1; }
@media (min-width: 600px) { .contact-card { grid-template-columns: auto 1fr auto; } .contact-card .btn { grid-column: auto; } }
.contact-icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: #fff; color: var(--green-600); border: 1px solid var(--green-200); }
.contact-label { margin: 0; font-size: 0.85rem; color: var(--muted); font-weight: 600; }
.contact-value { margin: 0; font-size: 1.25rem; font-weight: 700; }
.contact-value a { color: var(--ink); text-decoration: none; }

blockquote.example { background: var(--lav-50); border-left: 3px solid var(--brand-300); padding: 10px 14px; border-radius: 0 10px 10px 0; font-style: italic; color: var(--ink-2); margin: 0 0 1em; }
blockquote.example p { margin: 0; }

/* ── Tables (stack into cards on small screens) ───────── */
.table-wrap { margin: 1.2em 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
th, td { text-align: left; padding: 14px 16px; vertical-align: top; border-bottom: 1px solid var(--line); }
thead th { background: var(--lav-100); font-size: 0.85rem; font-weight: 700; color: var(--ink-2); }
tbody th { font-weight: 650; width: 34%; }
tbody tr:last-child > * { border-bottom: 0; }
tfoot > tr > * { background: var(--brand-50); font-weight: 650; border-bottom: 0; border-top: 2px solid var(--line-2); }
.table-wrap--keep th, .table-wrap--keep td { padding: 11px 12px; }
.num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
@media (max-width: 639.98px) {
  .table-wrap:not(.table-wrap--keep) { border: 0; background: none; overflow: visible; }
  .table-wrap:not(.table-wrap--keep) table, .table-wrap:not(.table-wrap--keep) tbody, .table-wrap:not(.table-wrap--keep) tfoot, .table-wrap:not(.table-wrap--keep) tr, .table-wrap:not(.table-wrap--keep) th, .table-wrap:not(.table-wrap--keep) td { display: block; width: auto; }
  .table-wrap:not(.table-wrap--keep) thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .table-wrap:not(.table-wrap--keep) tr { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; margin-bottom: 10px; padding: 4px 0; }
  .table-wrap:not(.table-wrap--keep) tfoot tr { background: var(--brand-50); }
  .table-wrap:not(.table-wrap--keep) th, .table-wrap:not(.table-wrap--keep) td { border: 0; padding: 8px 16px; text-align: left; background: none !important; }
  .table-wrap:not(.table-wrap--keep) tbody th, .table-wrap:not(.table-wrap--keep) tfoot th { padding-top: 12px; font-size: 1rem; }
  .table-wrap:not(.table-wrap--keep) td[data-label]::before { content: attr(data-label); display: block; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }
  .table-wrap:not(.table-wrap--keep) .num { white-space: normal; }
}

/* ── FAQ ──────────────────────────────────────────────── */
.faq { border-top: 1px solid var(--line-2); margin-top: 1em; }
.faq-item { border-bottom: 1px solid var(--line-2); }
.faq-q { font-size: 1.05rem; margin: 0; padding: 16px 0 8px; }
.faq-a { padding-bottom: 12px; color: var(--ink-2); }
.faq-a p:last-child { margin-bottom: 0; }
.faq-q button {
  display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 16px;
  min-height: 56px; padding: 12px 0; margin: 0; background: none; border: 0; cursor: pointer;
  font: inherit; font-weight: 650; color: var(--ink); text-align: left;
}
.faq-q button:hover { color: var(--brand-700); }
.faq-q button .icon { transition: transform 0.2s var(--ease); color: var(--brand-500); }
.faq-q button[aria-expanded="true"] .icon { transform: rotate(180deg); }
.js .faq-q { padding: 0; }
.js .faq-a { padding-bottom: 18px; }

/* ── Step rows (login, download) ──────────────────────── */
.step-rows { list-style: none; padding: 0; margin: 0 auto; max-width: 1040px; display: grid; gap: 20px; }
.step-row { display: grid; grid-template-columns: minmax(0, 1fr); gap: 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(18px, 3vw, 28px); box-shadow: var(--shadow-sm); scroll-margin-top: calc(var(--header-h) + 16px); }
.step-row h3 { display: flex; align-items: center; gap: 12px; }
.step-row-text > :last-child { margin-bottom: 0; }
@media (min-width: 768px) {
  .step-row:not(.step-row--text) { grid-template-columns: minmax(0, 1fr) minmax(0, 320px); gap: 36px; align-items: start; }
}
.step-n { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: var(--brand-600) var(--grad-btn); color: #fff; font-weight: 700; font-size: 0.98rem; flex: none; }

/* ── Screenshots ──────────────────────────────────────── */
.shot { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 10px; min-width: 0; }
.shot-frame {
  position: relative; width: 100%; display: flex; justify-content: center;
  background: var(--lav-100); border: 1px solid var(--line); border-radius: 18px; padding: 12px;
}
.shot img { display: block; border-radius: 10px; background: #fff; box-shadow: 0 1px 3px rgba(29, 26, 43, 0.12); }
.shot--portrait img { width: auto; height: auto; max-width: 100%; max-height: min(56vh, 520px); }
@supports (height: 1svh) { .shot--portrait img { max-height: min(56svh, 520px); } }
.shot--landscape img { width: 100%; height: auto; }
.shot figcaption { font-size: 0.88rem; color: var(--muted); text-align: center; }
.shot-badge {
  position: absolute; top: 20px; left: 20px; padding: 4px 10px; border-radius: 999px;
  background: var(--amber-100); color: var(--amber-700); font-size: 0.78rem; font-weight: 700; border: 1px solid #f6d68a;
}
.shot-enlarge {
  display: inline-flex; align-items: center; gap: 6px; min-height: 40px; padding: 0 14px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line-2); color: var(--ink-2); font-size: 0.86rem; font-weight: 600; text-decoration: none;
}
.shot-enlarge:hover { border-color: var(--brand-300); color: var(--brand-700); background: var(--brand-50); }
.shot-enlarge .icon { width: 15px; height: 15px; }
.js .shot img { cursor: zoom-in; }
.tut--wallet .shot-frame { background: var(--green-50); border-color: var(--green-100); }

/* ── Tutorial ─────────────────────────────────────────── */
/* One centred card per guide: title, instruction, step pill, full photo in a
   portrait phone frame, note, then a progress bar with the step count. */
.tut {
  --accent: var(--brand-600);
  --accent-strong: var(--brand-700);
  --accent-soft: var(--brand-50);
  --accent-line: var(--brand-100);
  --accent-grad: var(--grad);
  max-width: 640px; margin-inline: auto;
  scroll-margin-top: calc(var(--header-h) + 12px);
}
.tut--wallet { --accent: var(--green-600); --accent-strong: var(--green-700); --accent-soft: var(--green-50); --accent-line: var(--green-100); --accent-grad: linear-gradient(90deg, #22c38e, var(--green-600)); }
.tut-gap { height: clamp(40px, 7vw, 72px); }
.tut-title { font-size: clamp(1.7rem, 1.2rem + 2vw, 2.3rem); font-weight: 800; letter-spacing: -0.025em; margin: 0 0 16px; }
.tut-card {
  background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow);
  padding: clamp(16px, 3vw, 26px) clamp(14px, 4vw, 28px) clamp(14px, 3vw, 20px);
}
.tut-track { list-style: none; margin: 0; padding: 0; position: relative; }

.tut-slide {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 10px;
  min-width: 0; text-align: center; scroll-margin-top: calc(var(--header-h) + 16px);
}
.slide-title { margin: 0; font-size: clamp(1.35rem, 1.1rem + 1.4vw, 1.9rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.15; }
.slide-text { max-width: 34em; color: var(--muted); font-size: clamp(1.02rem, 0.98rem + 0.3vw, 1.14rem); line-height: 1.5; }
.slide-text p { margin: 0 0 0.5em; }
.slide-text p:last-child { margin-bottom: 0; }
.slide-text strong { color: var(--ink-2); }
.slide-text blockquote.example { text-align: left; margin-top: 10px; }
.slide-step {
  margin: 2px 0; padding: 8px 18px; border-radius: 12px; background: var(--accent-soft);
  color: var(--accent-strong); font-size: 0.92rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
}
.slide-media { display: flex; justify-content: center; width: 100%; min-width: 0; }

.photo {
  display: inline-block; max-width: 100%; line-height: 0; border-radius: 18px; overflow: hidden;
  background: #fff; box-shadow: 0 1px 2px rgba(29, 26, 43, 0.06), 0 14px 32px -16px rgba(46, 22, 100, 0.4);
  cursor: zoom-in; transition: transform 0.2s var(--ease);
}
.photo:hover { transform: translateY(-2px); }
.photo:focus-visible { outline-offset: 6px; }
/* Whole photo fits on screen together with the title and step label. */
/* Same width on every slide (the size used on the agency guide); whole photo visible. */
.photo img { display: block; width: min(56vw, 250px); height: auto; max-height: min(58vh, 560px); object-fit: contain; }
@supports (height: 1svh) { .photo img { max-height: min(58svh, 560px); } }
.photo .shot-badge { top: 14px; left: 14px; line-height: normal; }
.slide-title { display: flex; align-items: flex-end; justify-content: center; }

.slide-note {
  display: flex; gap: 12px; align-items: flex-start; width: 100%; margin: 4px 0 0; padding: 14px 16px;
  border-radius: 16px; background: var(--accent-soft); border: 1px solid var(--accent-line);
  color: var(--ink-2); font-size: 1rem; text-align: left;
}
.slide-note .icon { width: 24px; height: 24px; margin-top: 1px; color: var(--accent); flex: none; }
.slide-action { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }

.textcard {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  width: min(100%, 320px); min-height: 260px; padding: 24px 20px; text-align: center;
  border-radius: 28px; background: linear-gradient(160deg, var(--accent-soft), #fff 75%); border: 1px solid var(--accent-line);
}
.textcard-icon { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px; background: #fff; color: var(--accent); border: 1px solid var(--accent-line); box-shadow: var(--shadow-sm); }
.textcard-icon .icon { width: 28px; height: 28px; }
.textcard-label { margin: 0; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.keys { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: 0; }
.key { display: inline-flex; align-items: center; min-height: 34px; padding: 4px 12px; border-radius: 10px; background: #fff; border: 1px solid var(--line-2); border-bottom-width: 2px; font-size: 0.9rem; font-weight: 650; color: var(--ink); }
.textcard-tips { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; text-align: left; }
.textcard-tips li { display: flex; gap: 10px; align-items: flex-start; font-weight: 550; color: var(--ink-2); }
.textcard-tips .icon { width: 18px; height: 18px; margin-top: 4px; color: var(--accent); }

.tut-slide--done { justify-content: center; padding: 12px 0; }
.done-icon { display: inline-grid; place-items: center; width: 64px; height: 64px; border-radius: 20px; background: var(--accent-soft); color: var(--accent); border: 1px solid var(--accent-line); }
.done-icon .icon { width: 32px; height: 32px; }
.done-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }

/* Progress: ‹ ▬▬▬▬ 2 / 12 › */
.tut-progress { display: flex; align-items: center; gap: 12px; margin-top: 10px; }
.tut-bar { flex: 1; height: 12px; border-radius: 99px; background: var(--accent-soft); overflow: hidden; }
.tut-bar span { display: block; height: 100%; width: 0; border-radius: inherit; background: var(--accent) var(--accent-grad); transition: width 0.35s var(--ease); }
.tut-counter { min-width: 3.6em; text-align: right; color: var(--muted); font-size: 1.05rem; font-weight: 600; font-variant-numeric: tabular-nums; white-space: nowrap; }
.tut-arrow {
  display: grid; place-items: center; flex: none; width: 44px; height: 44px; padding: 0; border-radius: 50%;
  border: 1px solid var(--line-2); background: #fff; color: var(--accent-strong); cursor: pointer;
  transition: background-color 0.18s var(--ease), border-color 0.18s var(--ease), opacity 0.18s;
}
.tut-arrow .icon { width: 20px; height: 20px; }
.tut-arrow:hover:not(:disabled) { background: var(--accent-soft); border-color: var(--accent-line); }
.tut-arrow:disabled { opacity: 0.35; cursor: default; }

/* Without JavaScript: all steps stacked. */
.tut-slide + .tut-slide { margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--line); }

/* With JavaScript: native horizontal swiping with scroll-snap. */
.js .tut:not([data-mode="list"]) .tut-track {
  display: flex; align-items: flex-start; overflow-x: auto; overflow-y: hidden; overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.js .tut:not([data-mode="list"]) .tut-track::-webkit-scrollbar { display: none; }
.js .tut:not([data-mode="list"]) .tut-slide {
  flex: 0 0 100%; scroll-snap-align: start; scroll-snap-stop: always; margin: 0; padding: 4px 12px 18px; border: 0;
}

/* ── Screenshot viewer ────────────────────────────────── */
.viewer {
  width: 100vw; height: 100vh; max-width: none; max-height: none; margin: 0; padding: 0; border: 0;
  background: rgba(17, 14, 28, 0.96); color: #fff; overflow: hidden;
}
@supports (height: 100dvh) { .viewer { height: 100dvh; } }
.viewer::backdrop { background: rgba(17, 14, 28, 0.7); }
.viewer[open] { display: flex; flex-direction: column; }
.viewer-bar { display: flex; align-items: center; gap: 8px; padding: 10px 12px; padding-top: max(10px, env(safe-area-inset-top)); border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.viewer-title { flex: 1; min-width: 0; margin: 0; font-size: 0.9rem; color: rgba(255, 255, 255, 0.85); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.viewer-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px; min-width: 44px; min-height: 44px; padding: 0 12px;
  border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.18); background: rgba(255, 255, 255, 0.06); color: #fff;
  font: inherit; font-weight: 600; font-size: 0.9rem; cursor: pointer;
}
.viewer-btn:hover { background: rgba(255, 255, 255, 0.14); }
.viewer-btn:disabled { opacity: 0.35; cursor: default; }
.viewer-btn--close { background: #fff; color: var(--ink); border-color: #fff; }
.viewer-btn--close:hover { background: var(--brand-50); }
.viewer-stage { flex: 1; display: flex; overflow: auto; padding: 16px; overscroll-behavior: contain; touch-action: pan-x pan-y pinch-zoom; }
.viewer-stage img { margin: auto; max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; border-radius: 8px; background: #fff; cursor: zoom-in; }
.viewer-stage.is-zoomed img { max-width: none; max-height: none; cursor: zoom-out; }
.viewer-badge { position: absolute; left: 50%; bottom: max(16px, env(safe-area-inset-bottom)); transform: translateX(-50%); padding: 6px 12px; border-radius: 999px; background: var(--amber-100); color: var(--amber-700); font-size: 0.82rem; font-weight: 700; }
@media (max-width: 479.98px) { .viewer-btn .viewer-btn-text { display: none; } }
body.viewer-open { overflow: hidden; }
body.viewer-open [data-floating] { display: none !important; }

/* ── Footer ───────────────────────────────────────────── */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, 0.78); padding: 48px 0 24px; margin-top: 0; font-size: 0.95rem; }
.site-footer a { color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; min-height: 36px; }
.site-footer a:hover { text-decoration: underline; color: #fff; }
.site-footer .icon-ext { width: 14px; height: 14px; opacity: 0.6; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 28px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; } }
.footer-brand p { max-width: 44ch; margin-top: 14px; }
.brand--footer { color: #fff; }
.brand--footer .wordmark-text span { background: linear-gradient(135deg, #ff7cf5, #c7a2ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.footer-title { color: #fff; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 8px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li > span { display: inline-flex; min-height: 36px; align-items: center; opacity: 0.6; }
.footer-base { display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; margin-top: 36px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.12); font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); }
.footer-base p { margin: 0; }

/* ── Mobile bottom actions and WhatsApp ───────────────── */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 10px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.96); border-top: 1px solid var(--line);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 -6px 20px -12px rgba(76, 29, 149, 0.25);
}
.mobile-bar .btn { min-height: 50px; padding-inline: 10px; font-size: 0.95rem; }
@media (min-width: 1024px) { .mobile-bar { display: none; } }
.wa-fab {
  position: fixed; z-index: 31; right: 16px; bottom: calc(var(--bar-h) + 14px + env(safe-area-inset-bottom, 0px));
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 52px; height: 52px; border-radius: 999px; background: var(--green-600); color: #fff; text-decoration: none;
  box-shadow: 0 8px 22px -6px rgba(14, 138, 95, 0.55);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
}
.wa-fab:hover { background: var(--green-700); color: #fff; }
.wa-fab .icon { width: 24px; height: 24px; }
.wa-fab-text { display: none; font-weight: 650; }
.wa-fab.is-hidden { opacity: 0; transform: translateY(12px) scale(0.9); visibility: hidden; pointer-events: none; }
@media (min-width: 1024px) {
  .wa-fab { width: auto; padding: 0 18px 0 14px; right: 24px; bottom: 24px; }
  .wa-fab-text { display: inline; }
}

/* ── Drafts ───────────────────────────────────────────── */
.draft-banner { background: #7c2d12; color: #fff; padding: 12px 16px; text-align: center; font-size: 0.92rem; }
.draft-banner code { background: rgba(255, 255, 255, 0.15); padding: 1px 6px; border-radius: 4px; }
mark.placeholder { background: #fde68a; color: #78350f; padding: 1px 4px; border-radius: 4px; font-weight: 600; }
.legal-date { color: var(--muted); }

/* ── Motion ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
