@property --t-base { syntax: '<color>'; inherits: true; initial-value: #1f6b45; }
@property --t-accent { syntax: '<color>'; inherits: true; initial-value: #c9ec7a; }
@property --t-soft { syntax: '<color>'; inherits: true; initial-value: #dcefd8; }

:root {
  --bg: oklch(0.982 0.003 255);
  --bg-2: oklch(0.962 0.004 255);
  --surface: oklch(0.998 0.001 255);
  --ink: oklch(0.21 0.02 262);
  --ink-2: oklch(0.45 0.015 262);
  --ink-3: oklch(0.56 0.012 262);
  --line: oklch(0.915 0.006 262);
  --line-2: oklch(0.8 0.01 262);
  --navy: #112246;
  --navy-2: oklch(0.33 0.07 264);
  --blue: #15baff;
  --wa: #25d366;
  --wa-ink: #075e54;
  --blue-ink: oklch(0.5 0.13 244);
  --bad: oklch(0.52 0.18 25);
  --tint-2: oklch(0.955 0.032 236);
  --tint-line: oklch(0.885 0.04 236);
  --dark: oklch(0.19 0.028 264);
  --dark-line: oklch(0.3 0.03 264);
  --on-dark: oklch(0.97 0.004 255);
  --on-dark-2: oklch(0.76 0.02 260);
  --t-base: oklch(0.43 0.09 155);
  --t-accent: oklch(0.9 0.14 125);
  --t-soft: oklch(0.93 0.05 140);
  --t-on: oklch(0.985 0.01 250);
  --lift: 0 1px 2px oklch(0.21 0.02 262 / 0.06), 0 14px 36px -14px oklch(0.21 0.02 262 / 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --sans: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --display: "Archivo", var(--sans);
  transition: --t-base 0.5s var(--ease), --t-accent 0.5s var(--ease), --t-soft 0.5s var(--ease);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--sans); font-size: 1rem; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
p { margin: 0; }
h1, h2, h3 { margin: 0; font-weight: 600; color: var(--ink); text-wrap: balance; }
button, input, textarea { font: inherit; color: inherit; }
a:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; border-radius: 4px; }
.wrap { max-width: 1128px; margin-inline: auto; padding-inline: 24px; }
.vh { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.i { width: 1em; height: 1em; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.label { display: inline-flex; align-items: center; gap: 9px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue-ink); }
.label::before { content: ""; width: 8px; height: 8px; flex: none; background: var(--blue); }
.skip { position: absolute; left: 24px; top: -60px; z-index: 100; padding: 8px 14px; border-radius: 8px; background: var(--ink); color: var(--surface); text-decoration: none; }
.skip:focus { top: 12px; }

/* Buttons: flat */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 42px; padding: 0 16px; border: 1px solid transparent; border-radius: 8px; font-size: 0.9375rem; font-weight: 500; line-height: 1; text-decoration: none; white-space: nowrap; cursor: pointer; transition: background-color 0.15s, border-color 0.15s, color 0.15s; }
.btn-sm { min-height: 36px; padding: 0 14px; font-size: 0.875rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--navy); color: var(--on-dark); }
.btn-primary:hover { background: var(--navy-2); }
.btn-primary:focus-visible { outline: 2px solid var(--blue); outline-offset: -4px; }
.btn-secondary { background: var(--surface); border-color: var(--line); color: var(--ink); }
.btn-secondary:hover { border-color: var(--line-2); }
.btn-secondary:focus-visible, .btn-light:focus-visible { outline: 2px solid var(--ink); outline-offset: -1px; }
.btn-light { background: var(--on-dark); color: var(--ink); }
.btn-light:hover { background: oklch(0.9 0.006 255); }
.btn .i { transition: transform 0.2s var(--ease); }
.btn:hover .i { transform: translateX(2px); }
.btn[disabled] { opacity: 0.7; cursor: progress; }

/* Header */
.hdr { position: sticky; top: 0; z-index: 50; background: var(--bg); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.hdr.scrolled { border-bottom-color: var(--line); }
.hdr-in { display: flex; align-items: center; gap: 32px; min-height: 64px; }
.brand { display: inline-flex; align-items: center; min-height: 44px; }
.brand img { height: 22px; width: auto; }
.nav { display: flex; gap: 24px; margin-left: auto; }
.nav a, .hdr-login { font-size: 0.9375rem; color: var(--ink-2); text-decoration: none; transition: color 0.15s; }
.nav a:hover, .hdr-login:hover { color: var(--ink); }
.hdr-actions { display: flex; align-items: center; gap: 20px; }
.hdr-login { color: var(--ink); font-weight: 500; }
@media (max-width: 820px) { .nav { display: none; } .hdr-actions { margin-left: auto; } }

/* Hero */
.hero { padding-block: clamp(32px, 5vw, 64px) clamp(64px, 8vw, 104px); }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 4px 12px 4px 10px; border: 1px solid var(--line); border-radius: 99px; background: var(--surface); font-size: 0.8125rem; color: var(--ink-2); }
.chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ink); }
.hero h1 { margin-top: 22px; font-size: clamp(2.4rem, 5.4vw, 3.9rem); line-height: 1.02; letter-spacing: -0.045em; }
.lede { margin-top: 18px; max-width: 34rem; font-size: clamp(1.125rem, 1.7vw, 1.3125rem); line-height: 1.5; color: var(--ink); }

/* Editor */
.editor { margin-top: clamp(28px, 3.5vw, 36px); overflow: hidden; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 1px 2px oklch(0.21 0.02 262 / 0.04), 0 24px 60px -32px oklch(0.21 0.02 262 / 0.18); }
.ed-bar { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px; min-height: 48px; padding: 0 16px; border-bottom: 1px solid var(--line); }
.ed-title { display: flex; align-items: center; gap: 10px; font-size: 0.8125rem; font-weight: 500; color: var(--ink-2); }
.ed-title::before { content: ""; width: 8px; height: 8px; background: var(--blue); }
.ed-addr { display: inline-flex; align-items: center; gap: 8px; max-width: 100%; overflow: hidden; padding: 5px 12px; border: 1px solid var(--line); border-radius: 99px; background: var(--bg); font-family: var(--mono); font-size: 0.8125rem; color: var(--ink-2); white-space: nowrap; }
.ed-addr > span { overflow: hidden; text-overflow: ellipsis; }
.ed-addr b { font-weight: 500; color: var(--ink); }
.ed-addr .i { color: var(--ink-3); }
.status { justify-self: end; display: inline-flex; align-items: center; gap: 7px; font-size: 0.8125rem; font-weight: 500; color: var(--ink-2); }
.status i { position: relative; width: 8px; height: 8px; border-radius: 50%; border: 1.5px solid currentColor; }
.status[data-state="publishing"] i { border-color: var(--line-2); border-top-color: var(--ink); animation: spin 0.8s linear infinite; width: 12px; height: 12px; }
.status[data-state="live"] { color: var(--ink); }
.status[data-state="live"] i { border: 0; background: var(--blue); }
.status[data-state="live"] i::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 1.5px solid var(--blue); animation: ping 1.8s var(--ease) infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes ping { from { opacity: 0.8; transform: scale(0.6); } to { opacity: 0; transform: scale(1.5); } }

.ed-body { display: grid; grid-template-columns: 300px minmax(0, 1fr); }
.ed-side { display: flex; flex-direction: column; gap: 22px; margin: 0; padding: 22px 20px 20px; border-right: 1px solid var(--line); }
.ctl { display: grid; gap: 9px; margin: 0; padding: 0; border: 0; min-width: 0; }
.ctl-label { padding: 0; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }
.field-in { width: 100%; min-height: 40px; padding: 0 12px; background: var(--surface); border: 1px solid var(--line-2); border-radius: 8px; font-size: 1rem; transition: border-color 0.15s; }
.field-in:hover { border-color: var(--ink-3); }
.field-in:focus-visible { outline: none; border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.kinds { display: flex; flex-wrap: wrap; gap: 6px; }
.kinds label { position: relative; }
.kinds input, .swatches input { position: absolute; opacity: 0; width: 1px; height: 1px; margin: 0; }
.kinds span { display: inline-flex; align-items: center; min-height: 32px; padding: 0 11px; border: 1px solid var(--line); border-radius: 8px; font-size: 0.875rem; color: var(--ink-2); cursor: pointer; transition: background-color 0.15s, border-color 0.15s, color 0.15s; }
.kinds span:hover { border-color: var(--line-2); color: var(--ink); }
.kinds input:checked + span { background: var(--ink); border-color: var(--ink); color: var(--surface); }
.kinds input:focus-visible + span { outline: 2px solid var(--blue-ink); outline-offset: -1px; }
.swatches { display: flex; gap: 10px; padding: 2px; }
.swatches span { display: block; width: 26px; height: 26px; border-radius: 50%; background: var(--c); cursor: pointer; box-shadow: inset 0 0 0 1px oklch(0 0 0 / 0.08); transition: box-shadow 0.15s; }
.swatches input:checked + span { box-shadow: 0 0 0 2px var(--surface), 0 0 0 3.5px var(--ink); }
.swatches input:focus-visible + span { box-shadow: 0 0 0 2px var(--surface), 0 0 0 3.5px var(--blue-ink); }
.ed-actions { display: grid; gap: 10px; margin-top: auto; padding-top: 4px; }
.ed-note { font-size: 0.8125rem; line-height: 1.45; color: var(--ink-3); }
.ed-canvas { position: relative; display: grid; align-items: center; padding: 24px 28px; background-color: var(--bg); background-image: radial-gradient(oklch(0.21 0.02 262 / 0.1) 1px, transparent 1px); background-size: 18px 18px; }

/* Preview composition, sized by --u */
.preview { container-type: inline-size; }
.stage { --u: 1cqw; position: relative; aspect-ratio: 100 / 64; }
.stage > * { position: absolute; }
.stage [data-k], .stage [data-b] { transition: opacity 0.16s; }
.stage.swap [data-k], .stage.swap [data-b] { opacity: 0; }
.win { left: 0; top: 0; width: calc(var(--u) * 80); height: calc(var(--u) * 62); display: flex; flex-direction: column; overflow: hidden; background: var(--surface); border-radius: calc(var(--u) * 1.6); box-shadow: var(--lift); }
.win-bar { height: calc(var(--u) * 5.8); flex: none; display: flex; align-items: center; justify-content: center; background: var(--bg); border-bottom: 1px solid var(--line); }
.addr { display: flex; align-items: center; gap: calc(var(--u) * 0.8); padding: calc(var(--u) * 0.45) calc(var(--u) * 2.2); background: var(--surface); border: 1px solid var(--line); border-radius: 99px; font-size: calc(var(--u) * 1.6); color: var(--ink-2); white-space: nowrap; }
.site { flex: 1; display: flex; flex-direction: column; min-height: 0; }
.site-nav { display: flex; align-items: center; gap: calc(var(--u) * 2.8); padding: calc(var(--u) * 2) calc(var(--u) * 3.4); font-size: calc(var(--u) * 1.6); color: var(--ink-2); white-space: nowrap; }
.site-nav b { margin-right: auto; overflow: hidden; text-overflow: ellipsis; font-family: var(--display); font-size: calc(var(--u) * 2.1); font-weight: 800; font-stretch: 122%; color: var(--t-base); letter-spacing: -0.02em; }
.site-hero { position: relative; overflow: hidden; flex: 1; display: flex; flex-direction: column; justify-content: flex-end; margin: 0 calc(var(--u) * 2); padding: calc(var(--u) * 3.2); background: var(--t-base); color: var(--t-on); border-radius: calc(var(--u) * 1.1); }
.site-hero::before { content: ""; position: absolute; top: calc(var(--u) * -9); right: calc(var(--u) * -5); width: calc(var(--u) * 28); height: calc(var(--u) * 28); border-radius: 50%; background: var(--t-accent); }
.site-hero::after { content: ""; position: absolute; top: calc(var(--u) * 4.5); right: calc(var(--u) * 16); width: calc(var(--u) * 6.5); height: calc(var(--u) * 6.5); border-radius: 50%; border: calc(var(--u) * 0.8) solid oklch(0.98 0.01 250 / 0.3); }
.site-eyebrow { position: relative; margin-bottom: calc(var(--u) * 0.7); font-size: calc(var(--u) * 1.5); opacity: 0.85; }
.site-title { position: relative; max-width: calc(var(--u) * 34); font-family: var(--display); font-size: calc(var(--u) * 4.05); font-weight: 800; font-stretch: 112%; line-height: 1; letter-spacing: -0.03em; }
.stage.long .site-title, .stage.tiles .site-title, .stage.products .site-title { font-size: calc(var(--u) * 3.4); max-width: calc(var(--u) * 38); }
.stage.long .ph-title, .stage.tiles .ph-title, .stage.products .ph-title { font-size: calc(var(--u) * 2.1); }
.site-btn { position: relative; align-self: flex-start; margin-top: calc(var(--u) * 2.2); padding: calc(var(--u) * 1) calc(var(--u) * 2); background: var(--t-accent); color: var(--t-base); font-size: calc(var(--u) * 1.6); font-weight: 600; border-radius: calc(var(--u) * 0.7); }
.site-body { padding: calc(var(--u) * 2) calc(var(--u) * 2.4) calc(var(--u) * 2.2); }
.site-body.menu, .site-body.tiles, .site-body.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: calc(var(--u) * 1.5); }
.dish { display: grid; grid-template-columns: auto minmax(0, 1fr); column-gap: calc(var(--u) * 1.2); align-items: center; font-size: calc(var(--u) * 1.45); line-height: 1.3; }
.dish i { grid-row: span 2; width: calc(var(--u) * 4.4); height: calc(var(--u) * 4.4); border-radius: 50%; background: var(--t-soft); box-shadow: inset 0 0 0 calc(var(--u) * 0.8) var(--surface); }
.dish:nth-child(2) i { background: var(--t-accent); }
.dish:nth-child(3) i { background: var(--t-base); opacity: 0.55; }
.dish b { overflow: hidden; color: var(--ink); font-weight: 600; white-space: nowrap; text-overflow: ellipsis; }
.dish span { color: var(--ink-2); }
.site-body.rows { display: grid; padding-right: calc(var(--u) * 12); }
.row-item { display: grid; grid-template-columns: minmax(0, 1fr) auto auto; align-items: center; column-gap: calc(var(--u) * 1.6); padding: calc(var(--u) * 1.15) 0; border-bottom: 1px solid var(--line); font-size: calc(var(--u) * 1.45); }
.row-item:last-child { border-bottom: 0; }
.row-item b { overflow: hidden; font-weight: 600; white-space: nowrap; text-overflow: ellipsis; }
.row-item .meta { color: var(--ink-2); }
.row-item .price { font-weight: 600; color: var(--t-base); }
.tile, .prod { display: grid; gap: calc(var(--u) * 0.7); font-size: calc(var(--u) * 1.35); line-height: 1.3; }
.tile .pic, .prod .pic { position: relative; overflow: hidden; border-radius: calc(var(--u) * 0.9); background: var(--t-soft); }
.tile .pic { aspect-ratio: 4 / 3; }
.tile .pic::before { content: ""; position: absolute; inset: auto -12% -30% -12%; height: 62%; border-radius: 50% 50% 0 0; background: var(--t-accent); }
.tile .pic::after { content: ""; position: absolute; top: 14%; right: 16%; width: 20%; aspect-ratio: 1; border-radius: 50%; background: var(--t-base); opacity: 0.4; }
.tile:nth-child(2) .pic::before { inset: auto -20% -45% -20%; height: 80%; }
.tile:nth-child(3) .pic::after { left: 18%; right: auto; }
.prod .pic { display: grid; place-items: center; aspect-ratio: 5 / 4; }
.prod .pic::before { content: ""; width: 38%; aspect-ratio: 1; border-radius: 50%; background: var(--t-accent); }
.prod:nth-child(2) .pic::before { width: 44%; aspect-ratio: 2 / 1; border-radius: 99px; background: var(--t-base); opacity: 0.45; }
.prod:nth-child(3) .pic::before { width: 40%; border-radius: calc(var(--u) * 0.5); }
.tile b, .prod b { overflow: hidden; font-weight: 600; white-space: nowrap; text-overflow: ellipsis; }
.tile span, .prod span { color: var(--ink-2); }
.phone { left: calc(var(--u) * 70); top: calc(var(--u) * 15); width: calc(var(--u) * 23); height: calc(var(--u) * 48); padding: calc(var(--u) * 1); background: var(--ink); border-radius: calc(var(--u) * 3.8); box-shadow: var(--lift); }
.phone-screen { height: 100%; display: flex; flex-direction: column; gap: calc(var(--u) * 1.3); overflow: hidden; padding-bottom: calc(var(--u) * 1.4); background: var(--surface); border-radius: calc(var(--u) * 2.9); }
.ph-top { display: flex; align-items: center; justify-content: space-between; gap: calc(var(--u) * 1); padding: calc(var(--u) * 3) calc(var(--u) * 2.2) 0; font-family: var(--display); font-size: calc(var(--u) * 1.5); font-weight: 800; font-stretch: 122%; color: var(--t-base); letter-spacing: -0.02em; white-space: nowrap; }
.ph-top span { overflow: hidden; text-overflow: ellipsis; }
.ph-top i { flex: none; width: calc(var(--u) * 2.2); height: calc(var(--u) * 1.2); border-block: calc(var(--u) * 0.28) solid var(--ink-2); }
.ph-hero { position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; height: calc(var(--u) * 20); margin: 0 calc(var(--u) * 1.3); padding: calc(var(--u) * 2); background: var(--t-base); color: var(--t-on); border-radius: calc(var(--u) * 1.5); }
.ph-hero::before { content: ""; position: absolute; top: calc(var(--u) * -4.5); right: calc(var(--u) * -4.5); width: calc(var(--u) * 10); height: calc(var(--u) * 10); border-radius: 50%; background: var(--t-accent); }
.ph-title { position: relative; max-width: calc(var(--u) * 16); font-family: var(--display); font-size: calc(var(--u) * 2.45); font-weight: 800; font-stretch: 110%; line-height: 1.02; letter-spacing: -0.03em; }
.ph-btn { position: relative; align-self: flex-start; margin-top: calc(var(--u) * 1.2); padding: calc(var(--u) * 0.65) calc(var(--u) * 1.2); background: var(--t-accent); color: var(--t-base); font-size: calc(var(--u) * 1.2); font-weight: 600; border-radius: calc(var(--u) * 0.55); white-space: nowrap; }
.ph-body { display: grid; gap: calc(var(--u) * 1); margin: 0 calc(var(--u) * 1.8); font-size: calc(var(--u) * 1.15); line-height: 1.25; }
.ph-body.tiles, .ph-body.products { grid-template-columns: 1fr 1fr; }
.ph-item { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: calc(var(--u) * 1); }
.ph-item i { width: calc(var(--u) * 3); height: calc(var(--u) * 3); flex: none; border-radius: 50%; background: var(--t-soft); }
.ph-item:nth-child(2) i { background: var(--t-accent); }
.ph-item b { overflow: hidden; font-weight: 600; white-space: nowrap; text-overflow: ellipsis; }
.ph-item span { color: var(--ink-2); }
.ph-tile { display: grid; gap: calc(var(--u) * 0.45); }
.ph-tile .pic { position: relative; overflow: hidden; aspect-ratio: 1; border-radius: calc(var(--u) * 0.8); background: var(--t-soft); }
.ph-tile .pic::before { content: ""; position: absolute; inset: auto -12% -30% -12%; height: 58%; border-radius: 50% 50% 0 0; background: var(--t-accent); }
.ph-body.products .ph-tile .pic::before { inset: auto; top: 50%; left: 50%; width: 42%; height: 42%; border-radius: 50%; transform: translate(-50%, -50%); }
.ph-tile b { overflow: hidden; font-weight: 600; white-space: nowrap; text-overflow: ellipsis; }
.toasts { right: 0; top: calc(var(--u) * 2); width: calc(var(--u) * 38); height: calc(var(--u) * 20); z-index: 3; }
.toast {
  --i: 0;
  position: absolute; left: 0; right: 0; top: 0;
  display: grid; grid-template-columns: auto minmax(0, 1fr); column-gap: calc(var(--u) * 1.6); align-items: center;
  padding: calc(var(--u) * 1.7) calc(var(--u) * 2);
  background: var(--surface); border: 1px solid var(--line); border-radius: calc(var(--u) * 1.8); box-shadow: var(--lift);
  font-size: calc(var(--u) * 1.6); line-height: 1.35;
  transform-origin: 50% 0;
  transform: translateY(calc(var(--i) * var(--u) * 2.4)) scale(calc(1 - var(--i) * 0.05));
  z-index: calc(10 - var(--i));
  transition: transform 0.7s var(--ease), opacity 0.7s var(--ease);
}
.toast > * { opacity: calc(1 - var(--i)); transition: opacity 0.4s var(--ease); }
.toast.enter { opacity: 0; transform: translateY(calc(var(--u) * -4)) scale(1.02); }
.toast-ico { display: grid; place-items: center; width: calc(var(--u) * 4.4); height: calc(var(--u) * 4.4); border-radius: calc(var(--u) * 1.2); background: var(--bg-2); color: var(--ink); font-size: calc(var(--u) * 2.2); }
.toast.money .toast-ico { background: var(--ink); color: var(--blue); }
.toast b { display: block; font-size: calc(var(--u) * 1.8); font-weight: 600; }
.toast small { display: block; overflow: hidden; color: var(--ink-2); font-size: calc(var(--u) * 1.5); white-space: nowrap; text-overflow: ellipsis; }

@container (max-width: 520px) {
  .stage { aspect-ratio: 1 / 1; }
  .win { display: none; }
  .phone { --u: 2cqw; left: 27cqw; top: 2cqw; }
  .toasts { --u: 2.8cqw; left: 0; right: 0; width: auto; top: 44cqw; }
}

.hero-alt { margin-top: 16px; font-size: 0.9375rem; color: var(--ink-2); }
.hero-alt a { color: var(--ink); font-weight: 500; text-underline-offset: 3px; }

@media (max-width: 860px) {
  .ed-body { grid-template-columns: 1fr; }
  .ed-canvas { order: -1; padding: 20px 16px; }
  .ed-side { border-right: 0; border-top: 1px solid var(--line); }
  .ed-bar { grid-template-columns: minmax(0, 1fr) auto; }
  .ed-title { display: none; }
  .ed-addr { justify-self: start; }
}

/* Sections */
.section { padding-block: clamp(48px, 7.5vw, 104px); border-top: 1px solid var(--line); }
.section.surface { background: var(--surface); }
.section.tint { background: var(--tint-2); border-color: var(--tint-line); }
.section.tint + .section, .section.surface + .section { border-top-color: var(--line); }
.sec-head { display: grid; gap: 12px; max-width: 42rem; margin-bottom: clamp(32px, 4vw, 48px); }
.sec-head .label { justify-self: start; margin-bottom: 2px; }
.sec-head h2, .dark h2, .contact h2 { font-size: clamp(2rem, 3.9vw, 2.875rem); font-weight: 650; line-height: 1.06; letter-spacing: -0.04em; }
.sec-head p:not(.label) { font-size: 1.125rem; line-height: 1.5; color: var(--ink-2); }

/* Features */
.feats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 56px 32px; }
.feat { display: grid; grid-row: span 2; grid-template-rows: subgrid; row-gap: 18px; }
.feat-copy { display: grid; grid-template-columns: auto 1fr; column-gap: 12px; align-items: baseline; }
.feat-copy .num { font-family: var(--mono); font-size: 0.8125rem; color: var(--ink-3); }
.feat-copy h3 { font-size: 1.0625rem; letter-spacing: -0.01em; }
.feat-copy p, .feat-copy .plan { grid-column: 2; }
.feat-copy p { margin-top: 4px; color: var(--ink-2); max-width: 30rem; }
.feat-copy .plan { margin-top: 10px; justify-self: start; padding: 2px 8px; border: 1px solid var(--line); border-radius: 6px; background: var(--surface); font-size: 0.75rem; font-weight: 500; color: var(--ink-2); }
.feat-art { display: grid; place-items: center; min-height: 320px; padding: 32px; background: var(--tint-2); border: 1px solid var(--tint-line); border-radius: 16px; }
.feat-art .ui, .art .ui, .hero-art .ui { transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.feat:hover .feat-art .ui, .art:hover .ui, .hero-art:hover .ui { transform: translateY(-3px); box-shadow: 0 2px 6px oklch(0.21 0.02 262 / 0.08), 0 22px 44px -18px oklch(0.21 0.02 262 / 0.28); }
@media (max-width: 860px) { .feats { column-gap: 20px; } .feat-art { min-height: 0; padding: 20px 14px; } }
@media (max-width: 700px) { .feats { grid-template-columns: 1fr; row-gap: 18px; } .feat + .feat .feat-copy { margin-top: 30px; } }

.also { margin-top: clamp(48px, 6vw, 72px); padding-top: 26px; border-top: 1px solid var(--line); }
.also ul { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px 40px; margin: 16px 0 0; padding: 0; list-style: none; font-size: 0.9375rem; color: var(--ink-2); }
.also li { display: grid; grid-template-columns: 7px 1fr; gap: 14px; align-items: baseline; }
.also li::before { content: ""; width: 7px; height: 7px; background: var(--blue); }
@media (max-width: 860px) { .also ul { grid-template-columns: 1fr; } }

/* WhatsApp alerts */
.wa-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr); gap: 48px clamp(40px, 7vw, 96px); align-items: center; }
.wa-copy h2 { margin-top: 12px; }
.wa-intro { margin-top: 16px; max-width: 34rem; font-size: 1.0625rem; color: var(--ink-2); }
.wa-list { display: grid; gap: 14px; max-width: 34rem; margin: 26px 0 0; padding: 0; list-style: none; color: var(--ink-2); }
.wa-list li { position: relative; padding-left: 21px; }
.wa-list li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 7px; height: 7px; background: var(--blue); }
.wa-list b { color: var(--ink); font-weight: 600; }
.wa-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px; margin-top: 30px; }
.wa-note { font-size: 0.9375rem; color: var(--ink-3); }
.wa-art { display: grid; justify-items: center; }
.wa-phone { width: min(278px, 100%); padding: 9px; aspect-ratio: 9 / 15.2; background: var(--ink); border-radius: 38px; box-shadow: var(--lift); }
.wa-screen { position: relative; overflow: hidden; height: 100%; display: grid; align-content: start; gap: 9px; padding: 20px 9px; background: var(--t-base); border-radius: 30px; }
.wa-screen::before { content: ""; position: absolute; top: -26%; right: -34%; width: 86%; aspect-ratio: 1; border-radius: 50%; background: var(--t-accent); opacity: 0.55; }
.wa-time { position: relative; margin-top: 4px; text-align: center; color: var(--t-on); font-size: 34px; font-weight: 600; line-height: 1; letter-spacing: -0.03em; }
.wa-date { position: relative; margin-bottom: 8px; text-align: center; color: var(--t-on); font-size: 0.75rem; opacity: 0.85; }
.wa-card { position: relative; padding: 10px 12px 11px; background: oklch(0.998 0.001 255 / 0.95); border-radius: 16px; font-size: 0.75rem; line-height: 1.35; }
.wa-card.faint { opacity: 0.5; }
.wa-app { display: flex; align-items: center; gap: 6px; font-size: 0.6875rem; font-weight: 600; color: var(--ink-3); }
.wa-app > span:nth-child(2) { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.wa-when { margin-left: auto; flex: none; font-weight: 400; }
.wa-ico { display: grid; place-items: center; width: 16px; height: 16px; flex: none; border-radius: 5px; background: var(--ink); color: var(--blue); font-size: 10px; }
.wa-title { margin-top: 5px; font-weight: 600; color: var(--ink); }
.wa-body { display: -webkit-box; overflow: hidden; margin-top: 2px; color: var(--ink-2); -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.wa-body b { color: var(--ink); font-weight: 600; }
.toast.wa .toast-ico { background: var(--blue); color: var(--navy); }
@media (max-width: 860px) { .wa-grid { grid-template-columns: 1fr; } }

/* UI vignettes */
.ui { width: 100%; max-width: 400px; padding: 20px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--lift); font-size: 0.875rem; line-height: 1.45; color: var(--ink); }
.ui-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 14px; font-size: 0.75rem; font-weight: 500; color: var(--ink-3); }
.ui-head span:last-child { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.ui small { color: var(--ink-3); font-size: 0.75rem; }
.search-box { display: flex; align-items: center; gap: 10px; padding: 9px 13px; border: 1px solid var(--line); border-radius: 99px; }
.search-box .i { color: var(--ink-3); }
.result { margin-top: 16px; }
.r-site { display: flex; align-items: center; gap: 10px; }
.r-site small { display: block; }
.r-fav { display: grid; place-items: center; width: 26px; height: 26px; flex: none; border-radius: 50%; background: var(--t-base); color: var(--t-accent); font-size: 0.75rem; font-weight: 700; }
.r-site b { font-size: 0.8125rem; font-weight: 600; }
.r-title { margin-top: 8px; color: var(--blue-ink); font-size: 1rem; font-weight: 500; line-height: 1.3; }
.r-desc { margin-top: 4px; color: var(--ink-2); font-size: 0.8125rem; }
.r-ghost { display: grid; gap: 7px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.r-ghost span { height: 8px; border-radius: 99px; background: var(--bg-2); }
.r-ghost span:nth-child(1) { width: 38%; }
.r-ghost span:nth-child(2) { width: 82%; }
.r-ghost span:nth-child(3) { width: 64%; }
.live { display: inline-flex; align-items: center; gap: 6px; color: var(--ink); }
.live i { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }
.feed { position: relative; display: grid; gap: 2px; margin: 0; padding: 0; list-style: none; }
.feed::before { content: ""; position: absolute; left: 10px; top: 14px; bottom: 16px; width: 1px; background: var(--line); }
.feed li { position: relative; display: grid; grid-template-columns: 21px 1fr auto; gap: 10px; align-items: start; padding: 7px 0; }
.feed li::before { content: ""; justify-self: center; margin-top: 6px; width: 9px; height: 9px; border-radius: 50%; background: var(--surface); border: 1.5px solid var(--line-2); }
.feed li:first-child::before { background: var(--ink); border-color: var(--ink); }
.feed b { font-weight: 500; }
.feed div small { display: block; }
.lead { display: flex; align-items: center; gap: 10px; }
.avatar { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--bg-2); font-size: 0.75rem; font-weight: 600; }
.lead b { display: block; font-weight: 600; }
.lead small { display: block; }
.lead-msg { margin-top: 12px; padding: 12px 14px; border-radius: 10px; background: var(--bg); font-size: 0.9375rem; }
.trail-label { margin: 14px 0 8px; font-size: 0.75rem; font-weight: 500; color: var(--ink-3); }
.trail { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin: 0; padding: 0; list-style: none; font-size: 0.75rem; font-weight: 500; }
.trail li { display: flex; align-items: center; gap: 6px; }
.trail li span { padding: 3px 9px; border: 1px solid var(--line); border-radius: 6px; }
.trail .i { color: var(--ink-3); }
.pb-row { display: grid; grid-template-columns: 1.4fr 1fr; gap: 8px; margin-top: 14px; }
.pb { display: grid; place-items: center; min-height: 36px; border-radius: 8px; border: 1px solid var(--line); font-weight: 500; }
.pb-main { background: var(--navy); border-color: var(--navy); color: var(--on-dark); }
.pb-wide { grid-column: 1 / -1; margin-top: 14px; }
.pay-methods { margin-top: 8px; font-size: 0.75rem; color: var(--ink-3); text-align: center; }
.lines { display: grid; margin: 0; padding: 0; list-style: none; }
.lines li { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--line); font-variant-numeric: tabular-nums; }
.lines .total { padding-top: 12px; border-bottom: 0; font-size: 1rem; font-weight: 600; }
.paid { display: flex; align-items: center; gap: 8px; margin-top: 12px; padding: 9px 12px; border-radius: 8px; background: var(--bg); font-size: 0.8125rem; font-weight: 500; }
.paid .i { color: var(--blue-ink); stroke-width: 2.5; }
.posts { display: grid; margin: 0; padding: 0; list-style: none; }
.posts li { display: grid; grid-template-columns: 42px minmax(0, 1fr) auto; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--line); }
.posts li:last-child { border-bottom: 0; }
.p-date { display: grid; place-items: center; height: 42px; border-radius: 8px; border: 1px solid var(--line); line-height: 1.1; }
.p-date b { font-size: 0.75rem; font-weight: 600; }
.p-date small { font-size: 0.625rem; }
.p-body b { display: block; overflow: hidden; font-weight: 500; white-space: nowrap; text-overflow: ellipsis; }
.p-body small { display: block; }
.tag { display: inline-flex; align-items: center; gap: 5px; padding: 2px 8px; border-radius: 6px; border: 1px solid var(--line); font-size: 0.6875rem; font-weight: 500; color: var(--ink-2); }
.tag.done { background: var(--ink); border-color: var(--ink); color: var(--surface); }
.tag .dot { width: 7px; height: 7px; border-radius: 50%; border: 1.5px solid currentColor; }
.big { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 8px; }
.big b { font-size: 2rem; font-weight: 600; line-height: 1; letter-spacing: -0.03em; }
.delta { display: inline-flex; align-items: center; gap: 4px; font-size: 0.75rem; font-weight: 500; color: var(--blue-ink); }
.bars-label { margin: 16px 0 10px; font-size: 0.75rem; font-weight: 500; color: var(--ink-3); }
.bars { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.bars li { display: grid; grid-template-columns: 7em 1fr 2.4em; gap: 10px; align-items: center; font-size: 0.8125rem; }
.bars em { font-style: normal; font-weight: 500; text-align: right; font-variant-numeric: tabular-nums; }
.bar-track { position: relative; height: 8px; overflow: hidden; border-radius: 99px; background: var(--bg-2); }
.bar-track::after { content: ""; position: absolute; inset: 0; width: var(--w); background: var(--ink); border-radius: inherit; }
.bars li:first-child .bar-track::after { background: var(--blue-ink); }
.watch { display: flex; align-items: center; gap: 12px; }
.watch .ico { display: grid; place-items: center; width: 38px; height: 38px; flex: none; border-radius: 10px; background: var(--ink); color: var(--blue); font-size: 19px; }
.watch b { display: block; overflow: hidden; font-weight: 600; white-space: nowrap; text-overflow: ellipsis; }
.watch small { display: block; }
.watch > span:last-child { min-width: 0; }
.beats { display: flex; align-items: flex-end; gap: 3px; height: 44px; margin-top: 16px; }
.beats span { flex: 1; height: var(--h); border-radius: 2px; background: var(--blue-ink); opacity: 0.85; }
.beats-legend { display: flex; justify-content: space-between; margin-top: 6px; font-size: 0.6875rem; color: var(--ink-3); }
.checks { display: grid; margin: 12px 0 0; padding: 0; list-style: none; }
.checks li { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-top: 1px solid var(--line); }
.checks .i { color: var(--ink-3); }
.checks em { margin-left: auto; font-style: normal; font-weight: 500; }

/* Done for you */
.dark { padding-block: clamp(56px, 10vw, 120px); background: var(--dark); color: var(--on-dark); }
.dark .label { color: var(--on-dark-2); }
.dark h2 { margin-top: 12px; color: var(--on-dark); }
.dark a:focus-visible { outline-color: var(--on-dark); }
.dark-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr); gap: 56px clamp(40px, 7vw, 96px); align-items: center; }
.dark-intro { margin-top: 14px; max-width: 30rem; font-size: 1.0625rem; color: var(--on-dark-2); }
.steps { display: grid; margin: 36px 0 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 36px 1fr; gap: 8px; padding-block: 18px; border-top: 1px solid var(--dark-line); }
.steps .num { font-family: var(--mono); font-size: 0.8125rem; color: var(--on-dark-2); line-height: 1.7; }
.steps h3 { font-size: 1rem; color: var(--on-dark); }
.steps p { margin-top: 2px; color: var(--on-dark-2); }
.dark-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 20px; margin-top: 28px; }
.dark-actions span { font-size: 0.9375rem; color: var(--on-dark-2); }
.dark-art { display: grid; justify-items: center; gap: 14px; }
.dark-art .ui { box-shadow: 0 30px 60px -30px oklch(0.05 0.02 264 / 0.8); border-color: transparent; }
.dark-cap { font-size: 0.8125rem; color: var(--on-dark-2); }
@media (max-width: 860px) { .dark-grid { grid-template-columns: 1fr; } }

/* Pricing */
.plan-switch { display: none; gap: 4px; margin-bottom: 16px; padding: 4px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); }
.plan-switch button { flex: 1; min-height: 36px; border: 0; border-radius: 7px; background: none; font-size: 0.875rem; font-weight: 500; color: var(--ink-2); cursor: pointer; }
.plan-switch button[aria-pressed="true"] { background: var(--ink); color: var(--surface); }
.plan-switch button:focus-visible { outline: 2px solid var(--blue-ink); outline-offset: -2px; }
.table-wrap { overflow-x: auto; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; }
.plans { width: 100%; min-width: 640px; border-collapse: collapse; font-size: 0.9375rem; }
.plans th, .plans td { padding: 12px 20px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: middle; }
.plans tbody tr:last-child th, .plans tbody tr:last-child td { border-bottom: 0; }
.plans thead th { padding-block: 24px 20px; vertical-align: top; }
.plans thead th + th, .plans td { width: 20%; }
.plans thead th + th, .plans tbody td { border-left: 1px solid var(--line); }
.p-name { display: block; font-weight: 600; }
.p-price { display: block; margin-top: 10px; font-size: 2rem; font-weight: 600; line-height: 1; letter-spacing: -0.035em; font-variant-numeric: tabular-nums; }
.p-price small { font-size: 0.5em; letter-spacing: -0.01em; }
.p-per { display: block; margin: 6px 0 16px; font-size: 0.8125rem; font-weight: 400; color: var(--ink-3); }
.p-for { display: block; min-height: 2.9em; margin-top: 8px; font-size: 0.875rem; font-weight: 400; line-height: 1.45; color: var(--ink-2); }
.plans thead .btn { width: 100%; }
.plans .corner { vertical-align: bottom; }
.corner-note { display: block; max-width: 16rem; font-size: 0.875rem; font-weight: 400; line-height: 1.5; color: var(--ink-3); }
.plans .group th { padding-block: 20px 8px; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); border-left: 0; }
.plans tbody th { font-weight: 400; color: var(--ink-2); }
.plans td { text-align: center; color: var(--ink); }
.plans thead th[data-col="regular"] { background: var(--tint-2); box-shadow: inset 0 3px 0 var(--navy); }
.plans tbody td[data-col="regular"] { background: oklch(0.977 0.011 236); }
.plans td .i { stroke-width: 2.2; }
.plans td.no::before { content: ""; display: inline-block; width: 10px; height: 1.5px; vertical-align: middle; background: var(--line-2); }
.plans-foot { margin-top: 16px; font-size: 0.875rem; color: var(--ink-3); }
.plans-foot a { color: var(--ink); text-underline-offset: 3px; }
@media (max-width: 720px) {
  .js .plan-switch { display: flex; }
  .js .plans { min-width: 0; }
  .js .plans[data-show="starter"] [data-col]:not([data-col="starter"]),
  .js .plans[data-show="regular"] [data-col]:not([data-col="regular"]),
  .js .plans[data-show="premium"] [data-col]:not([data-col="premium"]) { display: none; }
  .js .plans thead th + th, .js .plans td { width: 34%; }
  .plans th, .plans td { padding-inline: 14px; }
}

/* Questions */
.qa { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 40px; margin: 0; }
.qa div { padding-block: 22px; border-top: 1px solid var(--line); }
.qa dt { font-weight: 600; }
.qa dd { margin: 6px 0 0; color: var(--ink-2); max-width: 32rem; }
.qa-more { margin-top: 24px; font-size: 0.9375rem; color: var(--ink-2); }
.qa-more a { color: var(--ink); text-underline-offset: 3px; }
@media (max-width: 760px) { .qa { grid-template-columns: 1fr; } }

/* Contact */
.contact-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 40px clamp(40px, 7vw, 96px); align-items: start; }
.contact h2 { margin-top: 12px; }
.contact-copy > p:not(.label) { margin-top: 14px; max-width: 26rem; font-size: 1.0625rem; color: var(--ink-2); }
.contact-copy a { color: var(--ink); font-weight: 500; text-underline-offset: 3px; }
.form { display: grid; gap: 14px; padding: 24px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form label { display: grid; gap: 7px; font-size: 0.8125rem; font-weight: 500; }
.form textarea.field-in { min-height: 120px; padding-block: 10px; resize: vertical; line-height: 1.5; }
.form .btn { justify-self: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } .form .btn { justify-self: stretch; } }

/* Footer */
.foot { padding-block: 40px 32px; border-top: 1px solid var(--line); font-size: 0.875rem; color: var(--ink-3); }
.foot-in { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; }
.foot-brand { display: grid; gap: 10px; }
.foot-brand img { height: 18px; width: auto; }
.foot nav a { color: var(--ink-2); text-decoration: none; }
.foot nav a:hover { color: var(--ink); }
.foot-base { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px 24px; margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--line); }
.foot-base ul { display: flex; flex-wrap: wrap; gap: 8px 20px; margin: 0; padding: 0; list-style: none; }
.socials { display: flex; gap: 14px; margin: 0; padding: 0; list-style: none; }
.socials a { display: grid; place-items: center; width: 32px; height: 32px; color: var(--ink-2); font-size: 17px; }
.socials a:hover { color: var(--ink); }
.socials .fill { fill: currentColor; stroke: none; }

@media (prefers-reduced-motion: reduce) {
  :root { transition: none; }
  .toast, .toast > *, .stage [data-k], .stage [data-b] { transition: none; }
  .status i, .status i::after { animation: none !important; }
}

/* Footer columns */
.foot-brand { max-width: 22rem; }
.foot-brand span { display: block; margin-top: 10px; }
.foot-brand .socials { margin-top: 14px; }
.foot-cols { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px 32px; }
.foot-cols h2 { margin-bottom: 12px; font-size: 0.8125rem; font-weight: 600; color: var(--ink); }
.foot-cols ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.foot-in { gap: 40px clamp(32px, 6vw, 88px); }
.foot-base a { color: var(--ink-2); text-decoration: none; }
.foot-base a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 900px) { .foot-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .foot-cols { grid-template-columns: 1fr; gap: 22px; } }

/* Closing call to action */
.cta-in { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 28px clamp(32px, 5vw, 64px); align-items: center; }
.cta.dark { border-top: 0; }
.cta .label { color: var(--blue); }
.cta h2 { margin-top: 12px; color: var(--on-dark); }
.cta h2 { font-size: clamp(1.75rem, 3.2vw, 2.375rem); line-height: 1.1; letter-spacing: -0.03em; }
.cta p { margin-top: 12px; max-width: 34rem; font-size: 1.0625rem; color: var(--on-dark-2); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; }
@media (max-width: 760px) { .cta-in { grid-template-columns: 1fr; } .cta-actions .btn { flex: 1 1 100%; } }

/* Preview editor with a fixed industry */
.editor[data-lock] .ctl-kinds { display: none; }

/* Page hero, used by every page except the home page */
.page-hero { padding-block: clamp(40px, 6vw, 76px) clamp(44px, 5vw, 72px); }
.page-hero .wrap.with-art { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr); gap: 40px clamp(40px, 6vw, 88px); align-items: center; }
.hero-art { display: grid; place-items: center; align-self: center; padding: clamp(18px, 2.2vw, 28px); background: var(--tint-2); border: 1px solid var(--tint-line); border-radius: 16px; }
.hero-art .ui { max-width: 380px; }
.hero-art.plain { background: var(--tint-2); border-color: var(--tint-line); }
@media (max-width: 900px) { .page-hero .wrap.with-art { grid-template-columns: 1fr; } }
.page-hero .label { display: block; margin-bottom: 14px; }
.page-hero h1 { max-width: 18ch; font-size: clamp(2.375rem, 4.8vw, 3.625rem); font-weight: 650; line-height: 1.02; letter-spacing: -0.045em; }
.page-hero .lede { margin-top: 18px; }
.page-hero .cta-actions { margin-top: 28px; }
.page-hero .fine { margin-top: 14px; font-size: 0.9375rem; color: var(--ink-3); }

/* Two-column section: words beside a picture or panel */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px clamp(40px, 6vw, 96px); align-items: center; }
.split.narrow-art { grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr); }
.split h2 { margin-top: 12px; }
.split > div > p:not(.label) { margin-top: 16px; max-width: 34rem; color: var(--ink-2); font-size: 1.0625rem; }
.split .art { display: grid; place-items: center; padding: clamp(22px, 3vw, 40px); background: var(--tint-2); border: 1px solid var(--tint-line); border-radius: 16px; }
@media (max-width: 860px) { .split, .split.narrow-art { grid-template-columns: 1fr; } }

/* Running text */
.prose { max-width: 38rem; }
.prose p { margin-top: 18px; color: var(--ink-2); font-size: 1.0625rem; }
.prose h2 { margin-top: 44px; font-size: clamp(1.5rem, 2.4vw, 1.875rem); letter-spacing: -0.025em; }
.prose h3 { margin-top: 28px; font-size: 1.0625rem; }
.prose ul { display: grid; gap: 10px; margin: 18px 0 0; padding: 0; list-style: none; color: var(--ink-2); }
.prose ul li { position: relative; padding-left: 21px; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 7px; height: 7px; background: var(--blue); }

/* Pull quote */
.quote { max-width: 34rem; margin: 0; padding-left: 22px; border-left: 1px solid var(--line-2); }
.quote p { font-size: clamp(1.125rem, 1.8vw, 1.375rem); line-height: 1.45; letter-spacing: -0.015em; }
.quote footer { margin-top: 12px; font-size: 0.9375rem; color: var(--ink-3); }

/* Numbered rows on a light background */
.steps-light { display: grid; margin: 0; padding: 0; list-style: none; }
.steps-light li { display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 10px clamp(12px, 2vw, 24px); padding-block: clamp(20px, 2.6vw, 30px); border-top: 1px solid var(--line); }
.steps-light li:first-child { border-top: 2px solid var(--ink); }
.steps-light .num { font-family: var(--mono); font-size: 0.9375rem; font-weight: 500; color: var(--blue-ink); line-height: 1.6; }
.steps-light h3 { font-size: clamp(1.1875rem, 1.8vw, 1.4375rem); letter-spacing: -0.02em; }
.steps-light p { margin-top: 6px; max-width: 42rem; color: var(--ink-2); }

/* Simple three-across points */
.points { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px clamp(24px, 4vw, 56px); margin: 0; padding: 0; list-style: none; }
.points li { position: relative; padding-top: 22px; border-top: 2px solid var(--ink); }
.points li + li { border-top-color: var(--line); }
.points h3 { font-size: 1.125rem; letter-spacing: -0.015em; }
.points p { margin-top: 8px; color: var(--ink-2); }
@media (max-width: 860px) { .points { grid-template-columns: 1fr; gap: 0; } .points li { padding-block: 20px; } }

/* Centred short page (thank you, 404) */
.mini { display: grid; place-items: center; min-height: 62vh; padding-block: clamp(56px, 9vw, 120px); text-align: center; }
.mini h1 { max-width: 16ch; margin-inline: auto; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.06; letter-spacing: -0.035em; }
.mini p { margin: 18px auto 0; max-width: 34rem; color: var(--ink-2); font-size: 1.0625rem; }
.mini .cta-actions { justify-content: center; margin-top: 28px; }

/* Trade links */
.trades { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 clamp(24px, 4vw, 56px); margin: 0; padding: 0; list-style: none; }
.trades a { display: grid; gap: 4px; padding: 20px 0; border-top: 1px solid var(--line); text-decoration: none; transition: padding-left 0.25s var(--ease); }
.trades a:hover { padding-left: 10px; }
.trades li:first-child a, .trades li:nth-child(2) a { border-top-width: 2px; border-top-color: var(--ink); }
.trades a:hover b { text-decoration: underline; text-underline-offset: 4px; }
.trades b { font-weight: 600; }
.trades span { color: var(--ink-2); font-size: 0.9375rem; }
@media (max-width: 760px) { .trades { grid-template-columns: 1fr; } }

/* A wrap that is also a prose column keeps the page gutter and narrows its children */
.wrap.prose { max-width: 1128px; }
.wrap.prose > * { max-width: 38rem; }

/* Links inside copy carry the accent underline */
.prose a:not(.btn), .qa dd a, .points p a, .split p a { color: var(--ink); text-decoration-color: var(--blue); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.prose a:not(.btn):hover, .qa dd a:hover, .points p a:hover, .split p a:hover { color: var(--blue-ink); }

.btn-blue { background: var(--blue); color: var(--navy); font-weight: 600; }
.btn-blue:hover { background: oklch(0.82 0.13 234); }
.dark .btn-line { border-color: var(--dark-line); color: var(--on-dark); }
.dark .btn-line:hover { border-color: var(--on-dark); }

/* Tinted hero band, used where a page has no product artwork to show */
.page-hero.band { background: oklch(0.942 0.042 236); border-bottom: 1px solid var(--tint-line); padding-block: clamp(36px, 7vw, 88px) clamp(44px, 6vw, 80px); }
.page-hero.band + .section { border-top: 0; }
.mini.band { background: oklch(0.942 0.042 236); border-bottom: 1px solid var(--tint-line); }

/* Trade pages carry the live preview inside the hero */
.hero-editor { margin-top: clamp(28px, 3.5vw, 44px); }
.page-hero.band .hero-editor .editor { box-shadow: 0 1px 2px oklch(0.21 0.02 262 / 0.05), 0 28px 64px -34px oklch(0.21 0.02 262 / 0.3); }

/* Artwork sits as a white card on the hero band */
.page-hero.band .hero-art { background: var(--surface); border-color: oklch(0.88 0.035 236); }
.page-hero.band .fine { color: var(--ink-2); }

/* The home hero wears the same band as every other page */
.hero.band { background: oklch(0.942 0.042 236); border-bottom: 1px solid oklch(0.88 0.035 236); }
.hero.band .chip { background: var(--surface); border-color: oklch(0.88 0.035 236); }
.hero.band + .section { border-top: 0; }

/* Mobile menu */
.menu-btn { display: none; align-items: center; gap: 9px; min-height: 38px; margin-left: auto; padding: 0 14px; border: 1px solid var(--line-2); border-radius: 8px; background: var(--surface); font-size: 0.9375rem; font-weight: 500; color: var(--ink); cursor: pointer; }
.menu-lines { position: relative; width: 15px; height: 9px; }
.menu-lines::before, .menu-lines::after { content: ""; position: absolute; left: 0; right: 0; height: 1.5px; background: currentColor; transition: transform 0.25s var(--ease), top 0.25s var(--ease); }
.menu-lines::before { top: 0; }
.menu-lines::after { top: 7.5px; }
.menu-btn[aria-expanded="true"] .menu-lines::before { top: 3.5px; transform: rotate(45deg); }
.menu-btn[aria-expanded="true"] .menu-lines::after { top: 3.5px; transform: rotate(-45deg); }
@media (max-width: 820px) {
  .hdr-in { position: relative; flex-wrap: wrap; gap: 0 10px; min-height: 60px; }
  .hdr-in .brand { margin-right: auto; }
  .js .menu-btn { display: inline-flex; order: 3; margin-left: 0; }
  .js .hdr-actions { order: 2; margin-left: 0; gap: 10px; }
  .js .nav { display: none; order: 4; width: 100%; flex-direction: column; gap: 0; margin: 0; padding-bottom: 12px; }
  .js .nav.open { display: flex; }
  .js .nav a { padding: 14px 2px; border-bottom: 1px solid var(--line); font-size: 1.0625rem; }
  .js .hdr-actions { margin-left: 12px; }
  .js .hdr-login { display: none; }
  .js .nav .nav-login { display: block; }
}
.nav .nav-login { display: none; }
.nav a[aria-current="page"] { color: var(--ink); font-weight: 500; }
/* Small phones (under 375px): tighter gutter so logo, Start free and Menu share one row */
@media (max-width: 374px) {
  .wrap { padding-inline: 16px; }
  .js .hdr-actions { margin-left: 0; }
}
@media (max-width: 340px) {
  .menu-btn { padding: 0 12px; }
  .menu-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
}
@media (max-width: 419px) { .chip-more, .hide-xs { display: none; } }

/* WhatsApp: its own mark and colour, only where WhatsApp is the thing being shown */
.wa-glyph { fill: currentColor; stroke: none; }
.toast.wa .toast-ico, .wa-ico.wa-brand { background: var(--wa); color: #fff; }
.paid.on-wa { background: oklch(0.95 0.06 155); color: var(--wa-ink); }
.paid.on-wa .i { color: var(--wa); font-size: 1.125rem; }
.wa-list li::before { background: var(--wa); }
.wa-badge { display: inline-flex; align-items: center; gap: 8px; padding: 5px 12px 5px 10px; border-radius: 99px; background: oklch(0.95 0.06 155); color: var(--wa-ink); font-size: 0.8125rem; font-weight: 600; }
.wa-badge .i { color: var(--wa); font-size: 15px; }
/* The visit trail before an enquiry ends on the WhatsApp alert */
.ui-trail .feed li:first-child::before { background: var(--surface); border-color: var(--line-2); }
.ui-trail .feed li.sent::before { background: var(--wa); border-color: var(--wa); }
.ui-trail .feed li.sent b { font-weight: 600; }

/* ---------------------------------------------------------------
   Type scale, after shopify.com: very large, light display type,
   two-tone section heads, heading left with its line on the right
   --------------------------------------------------------------- */
.hero h1 { font-size: clamp(2.625rem, 1.2rem + 5.6vw, 6.25rem); font-weight: 400; line-height: 1.02; letter-spacing: -0.035em; }
.page-hero h1 { max-width: 15ch; font-size: clamp(2.5rem, 1rem + 4.8vw, 5.25rem); font-weight: 400; line-height: 1.02; letter-spacing: -0.035em; }
.mini h1 { font-size: clamp(2.25rem, 1rem + 4vw, 4.25rem); font-weight: 400; letter-spacing: -0.035em; }
.sec-head h2, .dark h2, .contact h2, .split h2, .cta h2 { font-size: clamp(1.875rem, 0.9rem + 3.4vw, 3.875rem); font-weight: 430; line-height: 1.05; letter-spacing: -0.035em; }
.wa-copy h2 { font-size: clamp(1.875rem, 0.9rem + 3.4vw, 3.875rem); font-weight: 430; line-height: 1.05; letter-spacing: -0.035em; }
.lede { font-size: clamp(1.125rem, 0.8rem + 0.9vw, 1.4375rem); line-height: 1.45; }
.points h3, .steps-light h3, .feat-copy h3 { font-weight: 560; }
.points h3, .steps-light h3, .steps h3, .feat-copy h3, .qa dt { line-height: 1.3; }
.dim { color: var(--ink-3); }
.dark .dim, .cta .dim { color: var(--on-dark-2); }

/* Heading on the left, its supporting line on the right */
@media (min-width: 900px) {
  .sec-head:has(> p:not(.label)) { grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); column-gap: clamp(40px, 6vw, 96px); max-width: none; align-items: end; }
  .sec-head:has(> p:not(.label)) > .label { grid-column: 1 / -1; }
  .sec-head:has(> p:not(.label)) > h2 { grid-column: 1; }
  .sec-head:has(> p:not(.label)) > p:not(.label) { grid-column: 2; padding-bottom: 0.45em; }
}

/* ---------------------------------------------------------------
   Motion. Text is never animated: every heading, paragraph and price
   is there at first paint. Movement lives inside the illustrations.
   --------------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  /* desktop only: illustrations drift a little against the scroll */
  .js [data-drift] { translate: 0 var(--drift, 0px); }

  /* text links draw their underline */
  .text-link, .prose a:not(.btn), .qa dd a, .points p a, .split p a, .qa-more a { text-decoration: none; background: linear-gradient(currentColor, currentColor) 0 100% / 100% 1.5px no-repeat; transition: background-size 0.35s var(--ease), color 0.2s; }
  .text-link:hover, .prose a:not(.btn):hover, .qa dd a:hover, .points p a:hover, .split p a:hover, .qa-more a:hover { background-size: 0% 1.5px; background-position: 100% 100%; }
}

/* Moving parts inside the illustrations. base.js arms each card (.arm), which holds its
   parts at the start; .play runs them once the card is fully in view, and again every few
   seconds while it stays. Without .arm the card is simply complete. */
@media (prefers-reduced-motion: no-preference) {
  @keyframes settle { from { opacity: 0; transform: translateY(10px); } }
  @keyframes pop { from { opacity: 0; transform: translateY(8px) scale(0.96); } }
  @keyframes type { from { clip-path: inset(0 100% 0 0); } to { clip-path: inset(0 0 0 0); } }
  @keyframes grow { from { transform: scaleX(0); } }
  @keyframes rise { from { transform: scaleY(0.12); } }
  @keyframes press { 40% { transform: scale(0.95); background: var(--navy-2); } }
  @keyframes draw { from { stroke-dashoffset: 24; } to { stroke-dashoffset: 0; } }
  @keyframes drop { from { opacity: 0; transform: translateY(-22px) scale(0.96); } }
  @keyframes chip { 40% { border-color: var(--blue-ink); background: var(--tint-2); color: var(--blue-ink); } }
  @keyframes tick { 40% { color: var(--blue-ink); transform: scale(1.25); } }
  @keyframes ring { from { box-shadow: 0 0 0 0 oklch(0.72 0.14 236 / 0.5); } to { box-shadow: 0 0 0 8px oklch(0.72 0.14 236 / 0); } }
  @keyframes ring-wa { from { box-shadow: 0 0 0 0 oklch(0.78 0.17 150 / 0.55); } to { box-shadow: 0 0 0 8px oklch(0.78 0.17 150 / 0); } }
  @keyframes breathe { 50% { opacity: 0.4; } }

  /* armed and waiting: everything holds at its first frame; a rewind restarts it */
  .arm:not(.play) *, .arm:not(.play) *::before, .arm:not(.play) *::after { animation-play-state: paused !important; }
  .rewind *, .rewind *::before, .rewind *::after { animation: none !important; }

  /* live indicators keep a slow pulse */
  .arm .live i { animation: ring 2s ease-out 0.25s infinite; }

  /* search: the query types itself, then the result settles */
  .arm .search-box [data-k] { animation: type 1.1s steps(22, end) 0.12s both; }
  .arm .result { animation: settle 0.6s var(--ease) 1.3s both; }

  /* live traffic: visits land oldest first, the newest pulses */
  .arm .feed li { animation: settle 0.6s var(--ease) both; animation-delay: calc(0.12s + (3 - var(--n, 0)) * 0.24s); }
  .arm .feed li:first-child::before { animation: ring 1.5s ease-out 1.2s 2; }

  /* the trail before an enquiry: in order, ending on the WhatsApp alert */
  .arm .ui-trail .feed li { animation-delay: calc(0.12s + var(--n, 0) * 0.24s); }
  .arm .ui-trail .feed li:first-child::before { animation: none; }
  .arm .ui-trail .feed li.sent::before { animation: ring-wa 1.5s ease-out 1.2s 2; }

  /* enquiry: the pages they read light up in turn, then it is sent to WhatsApp */
  .arm .trail li span { animation: chip 0.8s var(--ease) both; animation-delay: calc(0.15s + var(--n, 0) * 0.3s); }
  .arm .paid.on-wa { animation: pop 0.6s var(--ease) 1.15s both; }

  /* checkout: Pay now is pressed, the confirmation drops in and ticks */
  .arm .pb-wide { animation: press 0.55s ease 0.25s both; }
  .arm .pb-wide ~ .paid { animation: pop 0.6s var(--ease) 0.8s both; }
  .arm .pb-wide ~ .paid .i { stroke-dasharray: 24; animation: draw 0.5s ease 1.25s both; }

  /* announcements: each status arrives, the live one pulses */
  .arm .posts .tag { animation: pop 0.55s var(--ease) both; animation-delay: calc(0.15s + var(--n, 0) * 0.26s); }
  .arm .posts .tag.done { animation: pop 0.55s var(--ease) 0.15s both, ring 1.5s ease-out 1s 2; }

  /* report: the bars grow to their share */
  .arm .bar-track::after { transform-origin: left; animation: grow 1.1s var(--ease) both; animation-delay: calc(0.12s + var(--n, 0) * 0.16s); }

  /* site health: a day of checks ripples in, the latest keeps breathing */
  .arm .beats span { transform-origin: bottom; animation: rise 0.65s var(--ease) both; animation-delay: calc(0.1s + var(--n, 0) * 32ms); }
  .arm .beats span:last-child { animation: rise 0.65s var(--ease) 0.87s both, breathe 2.2s ease-in-out 1.6s infinite; }

  /* checklists: each line ticks in turn */
  .arm .checks li .i { animation: tick 0.65s ease both; animation-delay: calc(0.15s + var(--n, 0) * 0.3s); }
  .arm .checks li em { animation: settle 0.5s var(--ease) both; animation-delay: calc(0.22s + var(--n, 0) * 0.3s); }

  /* lock screen: notifications slide down, the WhatsApp enquiry lands last on top */
  .arm .wa-card { animation: drop 0.65s var(--ease) both; animation-delay: calc(0.12s + (2 - var(--n, 0)) * 0.4s); }
}

/* Headlines beside artwork get a slightly smaller size so they hold to three lines */
.page-hero .with-art h1 { max-width: none; font-size: clamp(2.375rem, 0.9rem + 3.8vw, 4.25rem); }

/* ---------------------------------------------------------------
   Account pages: sign up, log in, the first login on a new site
   --------------------------------------------------------------- */
.hdr-focus .hdr-in { justify-content: space-between; gap: 16px; }
.hdr-aside { margin: 0; font-size: 0.9375rem; color: var(--ink-2); }
.hdr-aside a { color: var(--ink); font-weight: 500; text-underline-offset: 3px; }
.foot-focus { padding-block: 28px; }
.foot-focus .foot-base { margin-top: 0; padding-top: 0; border-top: 0; }

.auth { padding-block: clamp(28px, 4vw, 56px) clamp(48px, 6vw, 80px); }
.auth-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr); gap: 40px clamp(40px, 6vw, 88px); align-items: start; }
.auth-main { max-width: 34rem; }
.auth h1 { margin-top: 12px; font-size: clamp(2.125rem, 3.4vw, 3rem); font-weight: 500; line-height: 1.05; letter-spacing: -0.035em; }
.auth-lede { margin-top: 14px; font-size: 1.0625rem; color: var(--ink-2); }
.auth-plan { margin-top: 14px; padding: 10px 14px; border-radius: 10px; background: var(--tint-2); border: 1px solid var(--tint-line); font-size: 0.9375rem; color: var(--ink); }

.auth-form { display: grid; gap: 22px; margin-top: 28px; }
.auth-set { display: grid; gap: 16px; margin: 0; padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.auth-set legend { padding: 0 8px; margin-left: -8px; font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-3); }
.field { display: grid; gap: 7px; }
.field-label { font-size: 0.875rem; font-weight: 500; }
.field-note { font-size: 0.8125rem; line-height: 1.4; color: var(--ink-3); }
.field-note.is-good { color: var(--blue-ink); font-weight: 500; }
.field-note.is-bad { color: var(--bad); font-weight: 500; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-in[aria-invalid="true"] { border-color: var(--bad); box-shadow: inset 0 0 0 1px var(--bad); }
[data-error-for] { color: var(--bad); font-weight: 500; }

.addr-in { display: flex; align-items: stretch; border: 1px solid var(--line-2); border-radius: 8px; background: var(--surface); overflow: hidden; }
.addr-in:focus-within { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.addr-in .field-in { border: 0; border-radius: 0; background: none; }
.addr-in .field-in:focus-visible { box-shadow: none; }
.addr-suffix { display: grid; place-items: center; flex: none; padding: 0 12px; border-left: 1px solid var(--line); background: var(--bg); font-family: var(--mono); font-size: 0.8125rem; color: var(--ink-2); }
.pw-in { position: relative; display: block; }
.pw-in .field-in { padding-right: 76px; }
.pw-toggle { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); min-height: 36px; padding: 0 12px; border: 0; border-radius: 6px; background: var(--bg-2); font-size: 0.8125rem; font-weight: 500; color: var(--ink); cursor: pointer; }
.pw-toggle:hover { background: var(--line); }

.btn-lg { min-height: 52px; font-size: 1rem; }
.auth-fine { font-size: 0.8125rem; line-height: 1.5; color: var(--ink-3); }
.auth-fine a { color: var(--ink-2); text-underline-offset: 3px; }
.form-alert { margin: 0; padding: 12px 14px; border: 1px solid var(--bad); border-radius: 10px; background: oklch(0.97 0.03 25); color: var(--bad); font-size: 0.9375rem; font-weight: 500; }
.auth-alt { margin-top: 22px; font-size: 0.9375rem; color: var(--ink-2); }
.auth-alt a { color: var(--ink); font-weight: 500; text-underline-offset: 3px; }

.auth-working { margin-top: 28px; padding: 24px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.auth-working-title { margin-top: 10px; font-size: 1.375rem; font-weight: 560; letter-spacing: -0.02em; }
.auth-steps { margin-top: 16px; }
.auth-steps em { font-style: normal; font-weight: 500; color: var(--ink-3); }
.auth-working-note { margin-top: 14px; font-size: 0.9375rem; color: var(--ink-2); }
.auth-working-go { margin-top: 18px; }

.auth-side { position: sticky; top: 92px; display: grid; gap: 18px; }
.auth-preview .editor { margin-top: 0; }
.editor-preview .ed-side { display: none; }
.editor-preview .ed-body { grid-template-columns: minmax(0, 1fr); }
.editor-preview .status { display: none; }
.editor-preview .ed-bar { grid-template-columns: minmax(0, 1fr); }
.editor-preview .ed-title { display: none; }
.editor-preview .ed-addr { justify-self: center; }
.editor-preview .ed-canvas { padding: 18px 14px; }
/* a lone phone reads better slightly larger, with the alerts area given back */
@container (max-width: 520px) {
  .editor-preview .stage { aspect-ratio: 5 / 6; }
  .editor-preview .phone { --u: 2.5cqw; left: 21cqw; top: 2cqw; }
}
.auth-cap { font-size: 0.8125rem; color: var(--ink-3); }
.auth-points { display: grid; gap: 12px; margin: 4px 0 0; padding: 0; list-style: none; font-size: 0.9375rem; color: var(--ink-2); }
.auth-points li { position: relative; padding-left: 21px; }
.auth-points li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 7px; height: 7px; background: var(--blue); }
.auth-points b { color: var(--ink); font-weight: 600; }

/* One column when there is nothing to show beside the form */
.auth-narrow { grid-template-columns: minmax(0, 1fr); max-width: 38rem; }
.auth-narrow .auth-main { max-width: none; }

/* A card that is a choice, not a form section */
.auth-card { display: grid; gap: 12px; margin-top: 22px; }
.auth-h2 { margin-top: 34px; font-size: 1.5rem; font-weight: 560; letter-spacing: -0.02em; }
.auth-card-title { font-size: 1.125rem; font-weight: 600; letter-spacing: -0.015em; }
.auth-card .btn { margin-top: 4px; }
.auth-card a { color: var(--ink); text-underline-offset: 3px; }
.auth-more { padding: 0; }
.auth-more summary { display: grid; gap: 4px; padding: 20px; cursor: pointer; }
.auth-more summary::-webkit-details-marker { display: none; }
.auth-more summary::marker { content: ""; }
.auth-more summary .auth-card-title { display: flex; align-items: center; gap: 8px; font-size: 1rem; }
.auth-more summary .auth-card-title::after { content: ""; width: 7px; height: 7px; border-right: 1.5px solid var(--ink-3); border-bottom: 1.5px solid var(--ink-3); transform: rotate(45deg) translate(-2px, -2px); }
.auth-more[open] summary .auth-card-title::after { transform: rotate(225deg) translate(-1px, -1px); }
.auth-more .auth-form { margin: 0; padding: 0 20px 20px; }
.addr-go { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; align-items: end; }
.welcome + .auth-set { margin-top: 26px; }

/* Steps and pick lists in the build brief */
.brief-step { margin: 0; font-family: var(--mono); font-size: 0.8125rem; color: var(--ink-3); }
.brief-nav { display: flex; flex-wrap: wrap; gap: 10px; }
.brief-nav .btn-lg { flex: 1 1 12rem; }
.pick { display: grid; gap: 10px; margin: 0; padding: 0; border: 0; min-width: 0; }
.pick legend { padding: 0; }
.picks { display: flex; flex-wrap: wrap; gap: 8px; }
.picks label { position: relative; }
.picks input { position: absolute; opacity: 0; width: 1px; height: 1px; margin: 0; }
.picks span { display: inline-flex; align-items: center; min-height: 40px; padding: 0 14px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); font-size: 0.9375rem; color: var(--ink-2); cursor: pointer; transition: background-color 0.15s, border-color 0.15s, color 0.15s; }
.picks span:hover { border-color: var(--line-2); color: var(--ink); }
.picks input:checked + span { background: var(--ink); border-color: var(--ink); color: var(--surface); }
.picks input:focus-visible + span { outline: 2px solid var(--blue-ink); outline-offset: 2px; }
.auth-actions { margin-top: 28px; }
.mini-note { font-size: 0.9375rem; color: var(--ink-3); }
.mini-note a { color: var(--ink); text-underline-offset: 3px; }

@media (max-width: 900px) {
  .auth-grid { grid-template-columns: 1fr; }
  .auth-main { max-width: none; }
  .auth-side { position: static; }
  .addr-go { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------
   Phones. 320px is the floor; controls are at least 44px tall.
   --------------------------------------------------------------- */
@media (max-width: 820px) {
  .hdr-actions .btn-sm, .menu-btn { min-height: 44px; }
}
@media (max-width: 720px) {
  /* one plan at a time: a summary card, then what it includes */
  .js .plans, .js .plans thead, .js .plans tbody { display: block; }
  .js .plans tr { display: grid; grid-template-columns: minmax(0, 1fr) 96px; }
  .js .plans thead tr, .js .plans tr.group { grid-template-columns: minmax(0, 1fr); }
  .js .plans .corner { display: none; }
  .js .plans thead th[data-col] { display: grid; grid-template-columns: minmax(0, 1fr) auto; column-gap: 16px; align-items: baseline; width: auto; padding: 22px 20px 20px; border-left: 0; }
  .js .plans .p-name { grid-area: 1 / 1; font-size: 1.125rem; }
  .js .plans .p-for { grid-area: 2 / 1; min-height: 0; margin-top: 4px; }
  .js .plans .p-price { grid-area: 1 / 2; margin-top: 0; text-align: right; }
  .js .plans .p-per { grid-area: 2 / 2; margin: 4px 0 0; text-align: right; }
  .js .plans thead .btn { grid-column: 1 / -1; margin-top: 18px; min-height: 46px; }
  .js .plans tbody th, .js .plans td { width: auto; }
  .js .plans td { display: grid; place-items: center; }
  .js .plans td.no::before { content: attr(data-on); width: auto; height: auto; padding: 2px 8px; border: 1px solid var(--line); border-radius: 6px; background: var(--surface); font-size: 0.75rem; font-weight: 500; color: var(--ink-2); }
  .plan-switch button { min-height: 44px; }
}
@media (max-width: 600px) {
  /* illustrations use the full width */
  .feat-art, .split .art { padding: 12px; border-radius: 14px; }
  .hero-art, .page-hero.band .hero-art { padding: 0; background: none; border: 0; }
  .hero-art .ui { max-width: none; }
  .ui { padding: 16px; }

  /* numbered rows: number beside the title, text full width below */
  .steps-light li, .steps li { grid-template-columns: auto minmax(0, 1fr); gap: 8px 12px; align-items: baseline; }
  .steps-light li > div, .steps li > div { display: contents; }
  .steps-light li p, .steps li p { grid-column: 1 / -1; }
  .feat-copy p, .feat-copy .plan { grid-column: 1 / -1; }

  .auth-set { padding: 16px; }
  .addr-suffix { font-size: 0.75rem; padding: 0 8px; }
  .field-row { grid-template-columns: 1fr; }

  /* footer: two columns */
  .foot-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 20px; }
  .foot-base { margin-top: 24px; }
}
/* Touch screens of any size, and every phone: controls at least 44px */
@media (pointer: coarse), (max-width: 600px) {
  .btn { min-height: 46px; }
  .btn-sm { min-height: 44px; }
  .field-in { min-height: 44px; }
  .kinds span { min-height: 40px; padding: 0 13px; }
  .swatches { gap: 2px; padding: 0; }
  .swatches label { display: block; padding: 7px; }
  .swatches span { width: 30px; height: 30px; }
  .socials { gap: 0; margin-left: -12px; }
  .socials a { width: 44px; height: 44px; }
  .plan-switch button { min-height: 44px; }
  .pw-in .field-in { min-height: 52px; }
  .pw-toggle { min-height: 44px; padding: 0 14px; }
  .foot-cols ul { gap: 0; }
  .foot-cols a, .foot-base a { display: flex; align-items: center; min-height: 44px; }
  .foot-base ul { gap: 0 20px; }
}
