/* G-Rated VA storefront — one vendored stylesheet, no build step, no CDN JS.
   Design system: type scale, spacing scale, semantic color tokens, elevation.
   Mobile-first. Light + dark both first-class via CSS variables + prefers-color-scheme. */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* ---- spacing scale ---- */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;

  /* ---- type scale ---- */
  --text-xs: 0.78rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-md: 1.125rem;
  --text-lg: 1.3rem;
  --text-xl: 1.6rem;
  --text-2xl: clamp(1.9rem, 3.6vw + 1rem, 2.75rem);
  --text-3xl: clamp(2.6rem, 6vw + 1rem, 4.4rem);

  --font-display: "Fraunces", ui-serif, Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --max-width: 1160px;
  --measure: 620px;

  /* ---- semantic color tokens: light ---- */
  --bg: #fbfaf7;
  --bg-raised: #ffffff;
  --bg-sunken: #f2f1eb;
  --surface: #ffffff;
  --surface-border: #e6e3d9;
  --text: #191d17;
  --text-dim: #52584c;
  --text-faint: #837e6f;
  --border: #e2ded0;
  --border-strong: #cfcabb;

  --accent: #1f5f3f;
  --accent-strong: #123f28;
  --accent-soft: #e8efe4;
  --accent-text: #fbfbf7;
  --accent-2: #a3762f;

  --tag-bg: #e8efe4;
  --tag-text: #1f5f3f;
  --danger: #a3341f;
  --danger-bg: #fbeae5;
  --focus: #1f5f3f;

  --shadow-sm: 0 1px 2px rgba(30, 25, 10, 0.06);
  --shadow-md: 0 6px 20px -6px rgba(30, 25, 10, 0.16), 0 2px 6px rgba(30, 25, 10, 0.06);
  --shadow-lg: 0 24px 60px -20px rgba(20, 20, 10, 0.28), 0 8px 24px -8px rgba(20, 20, 10, 0.12);

  --wash: radial-gradient(60% 55% at 82% 8%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 70%),
          radial-gradient(46% 40% at 8% 92%, color-mix(in srgb, var(--accent-2) 14%, transparent), transparent 70%);

  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0c0f0b;
    --bg-raised: #14180f;
    --bg-sunken: #090b07;
    --surface: #14180f;
    --surface-border: #262c1e;
    --text: #eef1e7;
    --text-dim: #b7bda9;
    --text-faint: #838a76;
    --border: #262c1e;
    --border-strong: #343c28;

    --accent: #5fbb87;
    --accent-strong: #7fd3a3;
    --accent-soft: #17251b;
    --accent-text: #06130a;
    --accent-2: #d3a45c;

    --tag-bg: #17251b;
    --tag-text: #7fd3a3;
    --danger: #e2897b;
    --danger-bg: #241512;
    --focus: #5fbb87;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 6px 20px -6px rgba(0, 0, 0, 0.5), 0 2px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 24px 60px -20px rgba(0, 0, 0, 0.65), 0 8px 24px -8px rgba(0, 0, 0, 0.4);
    color-scheme: dark;
  }
}

:root[data-theme="dark"] {
  --bg: #0c0f0b;
  --bg-raised: #14180f;
  --bg-sunken: #090b07;
  --surface: #14180f;
  --surface-border: #262c1e;
  --text: #eef1e7;
  --text-dim: #b7bda9;
  --text-faint: #838a76;
  --border: #262c1e;
  --border-strong: #343c28;

  --accent: #5fbb87;
  --accent-strong: #7fd3a3;
  --accent-soft: #17251b;
  --accent-text: #06130a;
  --accent-2: #d3a45c;

  --tag-bg: #17251b;
  --tag-text: #7fd3a3;
  --danger: #e2897b;
  --danger-bg: #241512;
  --focus: #5fbb87;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 6px 20px -6px rgba(0, 0, 0, 0.5), 0 2px 6px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 24px 60px -20px rgba(0, 0, 0, 0.65), 0 8px 24px -8px rgba(0, 0, 0, 0.4);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--wash), var(--bg);
  background-repeat: no-repeat;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--accent); }
a:hover { color: var(--accent-strong); }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------------------------------------------------------------- header */
header.site {
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  position: sticky;
  top: 0;
  z-index: 20;
}

header.site .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: var(--sp-4);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.brand:hover { color: var(--text); }
.brand-mark {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--accent), var(--accent-strong));
  color: var(--accent-text);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  flex: none;
}
.brand .dot { color: var(--accent); }

header.site nav {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}
header.site nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  transition: color 0.15s ease;
}
header.site nav a:hover { color: var(--text); }
header.site nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 1.5px;
  background: var(--accent);
  transition: right 0.18s ease;
}
header.site nav a:not(.btn):hover::after { right: 0; }

@media (max-width: 640px) {
  header.site nav a:not(.btn) { display: none; }
  header.site nav { gap: var(--sp-3); }
  .brand { font-size: 1.05rem; }
}
@media (prefers-reduced-motion: reduce) {
  header.site nav a::after { transition: none; }
}
/* `header.site nav a` sets a muted link colour and outranks `.btn` on
   specificity, which left the primary call-to-action as pale text on the
   green button (~1.6:1 contrast, unreadable in dark mode). Restore the
   button's own colour explicitly. */
header.site nav a.btn {
  padding: 9px 16px;
  width: auto;
  color: var(--accent-text);
}
header.site nav a.btn:hover { color: var(--accent-text); }

/* ----------------------------------------------------------------- main */
main { padding: 0 0 var(--sp-8); }

section { padding: var(--sp-7) 0; }
section + section { border-top: 1px solid var(--border); }
.wrap > section:first-child,
main > section:first-child { border-top: none; }

.section-inner { max-width: var(--measure); }
.section-wide { max-width: 100%; }

.hero {
  padding-top: var(--sp-6);
  padding-bottom: var(--sp-7);
  border-top: none;
  display: grid;
  gap: var(--sp-7);
  align-items: start;
}

.hero-copy { max-width: var(--measure); }

.accent-ital {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}

/* Content is ALWAYS visible. A scroll-reveal animation used to hide these
   sections until an IntersectionObserver fired -- and in testing seven of nine
   sections stayed invisible after scrolling the whole page. On the page that
   has to convert a $550 sale, no amount of polish is worth a blank section.
   The class is kept as a styling hook; it no longer controls visibility. */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, html.js .reveal { opacity: 1; transform: none; transition: none; }
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; color: var(--text); }

h1 {
  font-size: var(--text-3xl);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 var(--sp-4);
}

h2 {
  font-size: var(--text-2xl);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 var(--sp-2);
}

h3 { font-size: var(--text-md); font-weight: 600; margin: 0 0 4px; font-family: var(--font-body); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  font-size: var(--text-xs);
  letter-spacing: 0.11em;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 var(--sp-3);
}
.eyebrow::before {
  content: "";
  width: 16px;
  height: 1.5px;
  background: var(--accent);
  display: inline-block;
}

.lede {
  color: var(--text-dim);
  font-size: var(--text-md);
  max-width: var(--measure);
  margin: 0 0 var(--sp-5);
}

p { color: var(--text-dim); }
.dim { color: var(--text-dim); }
.faint { color: var(--text-faint); font-size: var(--text-sm); }

/* ------------------------------------------------------------------ card */
.card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
  box-shadow: var(--shadow-sm);
}
.card + .card { margin-top: var(--sp-3); }
.card-raised { box-shadow: var(--shadow-md); }

.grid { display: grid; gap: var(--sp-4); }
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
}

.list-plain { list-style: none; margin: 0; padding: 0; }
.list-plain li { padding: var(--sp-3) 0; border-top: 1px solid var(--border); }
.list-plain li:first-child { border-top: none; padding-top: 0; }

.feature {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  padding: var(--sp-4);
  margin: 0 calc(var(--sp-4) * -1);
  border-top: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: background 0.18s ease, transform 0.18s ease;
}
.feature:first-child { border-top: none; }
.feature:hover { background: var(--bg-raised); transform: translateX(2px); box-shadow: var(--shadow-sm); }
.feature .mark {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: transform 0.18s ease;
}
.feature:hover .mark { transform: scale(1.08); }
.feature .mark svg { width: 17px; height: 17px; }
@media (prefers-reduced-motion: reduce) {
  .feature, .feature .mark { transition: none; }
  .feature:hover { transform: none; }
  .feature:hover .mark { transform: none; }
}
.feature .body h3 { margin-bottom: 4px; }
.feature .body p { margin: 0; font-size: 0.96rem; }

/* ------------------------------------------------------------------ btn */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: var(--accent-text);
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 14px 22px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  width: 100%;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -8px color-mix(in srgb, var(--accent) 55%, transparent), var(--shadow-sm);
}
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  .btn { transition: background 0.15s ease, border-color 0.15s ease; }
  .btn:hover { transform: none; }
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-secondary:hover { background: var(--bg-sunken); border-color: var(--border-strong); }

.btn-row { display: flex; flex-direction: column; gap: var(--sp-3); }
@media (min-width: 560px) {
  .btn-row { flex-direction: row; }
  .btn-row .btn { width: auto; }
}

/* ---------------------------------------------------------------- price */
.price-row {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin: 6px 0 2px;
}
.price-amount { font-family: var(--font-display); font-size: 2.1rem; font-weight: 600; letter-spacing: -0.02em; }
.price-unit { color: var(--text-faint); font-size: 0.95rem; }
.price-plus { color: var(--text-faint); font-size: 1.1rem; margin: 0 2px; }

/* ------------------------------------------------------------- price card */
.price-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(155deg, var(--accent), var(--accent-2) 60%, var(--border) 100%);
  box-shadow: var(--shadow-lg);
}
.price-card-inner {
  background: var(--surface);
  border-radius: calc(var(--radius-lg) - 2px);
  padding: var(--sp-6) var(--sp-5);
}
.price-includes { list-style: none; margin: var(--sp-5) 0 0; padding: 0; display: grid; gap: 10px; }
.price-includes li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; color: var(--text-dim); }
.price-includes svg { flex: none; width: 18px; height: 18px; margin-top: 1px; color: var(--accent); }

.tag {
  display: inline-block;
  background: var(--tag-bg);
  color: var(--tag-text);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 4px 11px;
  border-radius: var(--radius-pill);
  margin: 0 6px 6px 0;
}

/* --------------------------------------------------------------- steps */
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.steps li {
  counter-increment: step;
  position: relative;
  padding: 4px 0 var(--sp-6) 42px;
  border-left: 2px solid var(--border);
  margin-left: 15px;
}
.steps li:last-child { border-color: transparent; padding-bottom: 0; }
.steps li::before {
  content: counter(step);
  position: absolute;
  left: -15px;
  top: 2px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-text);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.steps li:nth-child(even)::before { background: var(--accent-2); }
.steps h3 { margin-bottom: 4px; }
.steps p { margin: 0; font-size: 0.95rem; }

/* --------------------------------------------------------------- forms */
form { margin: 0; }

fieldset {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-4) var(--sp-4) 6px;
  margin: 0 0 var(--sp-5);
  background: var(--bg-raised);
}
legend {
  padding: 0 6px;
  font-weight: 700;
  font-size: 0.95rem;
}
legend .faint { display: block; font-weight: 400; margin-top: 2px; }

.field { margin-bottom: var(--sp-4); }
.field label {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.field .hint {
  display: block;
  font-size: 0.82rem;
  color: var(--text-faint);
  margin-bottom: 6px;
  font-weight: 400;
}
.field .opt {
  font-weight: 400;
  color: var(--text-faint);
  font-size: 0.8rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  font: inherit;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  transition: border-color 0.15s ease;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--focus);
  outline-offset: 1px;
  border-color: var(--focus);
}
textarea { resize: vertical; min-height: 64px; }

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  margin: var(--sp-3) 0;
}
.checkbox-row input[type="checkbox"] {
  margin-top: 3px;
  flex: none;
  width: 17px;
  height: 17px;
  accent-color: var(--accent);
}

.error-text {
  color: var(--danger);
  font-size: 0.85rem;
  margin: 4px 0 0;
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--danger);
}
.banner {
  border-radius: var(--radius-md);
  padding: var(--sp-4) var(--sp-4);
  margin-bottom: var(--sp-5);
  border: 1px solid var(--border);
}
.banner.success { background: var(--tag-bg); border-color: var(--accent); }
.banner.error { background: var(--danger-bg); border-color: var(--danger); color: var(--danger); }
.banner.error p, .banner.error strong { color: var(--danger); }

/* -------------------------------------------------------------- table */
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
th, td {
  text-align: left;
  padding: var(--sp-2) var(--sp-3);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
th { color: var(--text-faint); font-weight: 600; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.04em; }
.table-scroll { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-md); }
.table-scroll table { border: none; }
.table-scroll th:first-child, .table-scroll td:first-child { padding-left: var(--sp-4); }

.status-pill {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: var(--tag-bg);
  color: var(--tag-text);
  white-space: nowrap;
}

/* ------------------------------------------------------------ approval queue mockup */
.queue-mock {
  background: var(--bg-sunken);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: perspective(1400px) rotateY(-4deg) rotateX(1.5deg);
  transform-origin: center left;
  transition: transform 0.35s ease;
}
.queue-mock:hover { transform: perspective(1400px) rotateY(-1deg) rotateX(0.5deg) translateY(-2px); }
@media (max-width: 859px) {
  .queue-mock { transform: none; }
  .queue-mock:hover { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .queue-mock, .queue-mock:hover { transition: none; transform: none; }
}
.queue-mock::before {
  content: "Illustrative — not a screenshot";
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-4);
  font-size: 0.66rem;
  letter-spacing: 0.05em;
  color: var(--text-faint);
  text-transform: uppercase;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  font-weight: 600;
}
.queue-label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  margin: 0 0 var(--sp-3);
}
.queue-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.queue-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.queue-card + .queue-card { margin-top: var(--sp-3); opacity: 0.6; transform: scale(0.97); box-shadow: var(--shadow-sm); }
.queue-card + .queue-card:hover { transform: scale(0.97) translateY(-2px); }
@media (prefers-reduced-motion: reduce) {
  .queue-card, .queue-card:hover, .queue-card + .queue-card:hover { transition: none; }
}
.queue-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
}
.queue-who { display: flex; align-items: center; gap: 10px; }
.queue-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent), var(--accent-strong));
  color: var(--accent-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  font-family: var(--font-display);
  flex: none;
  box-shadow: var(--shadow-sm);
}
.queue-name { font-weight: 600; font-size: 0.92rem; line-height: 1.2; }
.queue-meta { font-size: 0.78rem; color: var(--text-faint); }
.queue-channel {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  background: var(--tag-bg);
  color: var(--tag-text);
  white-space: nowrap;
}
.queue-msg {
  background: var(--bg-sunken);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: var(--sp-3) var(--sp-4);
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: var(--sp-3);
  line-height: 1.5;
}
.queue-actions {
  display: flex;
  gap: 8px;
}
.qbtn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: var(--bg-raised);
  color: var(--text-dim);
}
.qbtn svg { width: 14px; height: 14px; }
.qbtn-approve { background: var(--accent); border-color: var(--accent); color: var(--accent-text); }
.qbtn-reject { color: var(--danger); }

/* -------------------------------------------------------------- footer */
footer.site {
  border-top: 1px solid var(--border);
  padding: var(--sp-7) 0 var(--sp-8);
  background: var(--bg-sunken);
}
footer.site .foot-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--sp-5);
  padding-bottom: var(--sp-5);
  margin-bottom: var(--sp-5);
  border-bottom: 1px solid var(--border);
}
footer.site .foot-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
}
footer.site .foot-links { display: flex; gap: var(--sp-5); flex-wrap: wrap; }
footer.site .foot-links a { color: var(--text-dim); text-decoration: none; font-size: 0.9rem; }
footer.site .foot-links a:hover { color: var(--text); }
footer.site p { font-size: 0.85rem; margin: 5px 0; max-width: 640px; }

/* -------------------------------------------------------------- misc */
/* full-bleed background band for emphasis sections */
.band { position: relative; }
.band::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  background: var(--bg-sunken);
  z-index: -1;
}
.band-quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.4rem, 2.2vw + 1rem, 1.9rem);
  line-height: 1.32;
  color: var(--text);
  max-width: 760px;
  letter-spacing: -0.01em;
}
.band-quote strong { font-weight: 600; font-style: normal; color: var(--accent); }

.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

.icon { width: 18px; height: 18px; display: inline-block; vertical-align: -3px; }

.divider-fade {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  border: none;
  margin: 0;
}

@media (min-width: 860px) {
  .hero { grid-template-columns: 1.05fr 0.95fr; gap: var(--sp-8); }
  section { padding: var(--sp-9) 0; }
  h1 { margin-bottom: var(--sp-5); }
}


/* ------------------------------------------------------- instagram / contact */
.foot-contact { margin: var(--sp-3) 0; }
.foot-contact-label {
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 8px;
  font-weight: 600;
}
.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.ig-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.ig-link:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }
.ig-glyph {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  padding: 6px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
}
@media (prefers-reduced-motion: reduce) {
  .ig-link { transition: none; }
  .ig-link:hover { transform: none; }
}
@media (max-width: 640px) {
  .foot-contact { margin: var(--sp-4) 0; }
}

/* ------------------------------------------------------- plans (2 tiers) */
/* Two cards side by side on desktop, stacked on phones. The Starter card is
   deliberately quieter than Pro -- same information, less visual weight -- so
   the comparison reads at a glance without hiding anything. */
.plans {
  display: grid;
  gap: var(--sp-5);
  margin-top: var(--sp-5);
  align-items: start;
}
@media (min-width: 900px) {
  .plans { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
}

/* Starter: flat border instead of the gradient edge Pro keeps. */
.price-card:not(.price-card-feature) {
  background: var(--border);
  box-shadow: var(--shadow-sm);
}
.price-card-feature { z-index: 1; }

.plan-badge {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-text);
  background: var(--accent);
  border-radius: 999px;
  padding: 5px 11px;
  margin-bottom: var(--sp-3);
}
.plan-name { font-size: 1.5rem; margin: 0 0 4px; }
.plan-blurb { margin: 0 0 var(--sp-4); font-size: 0.92rem; }

.plan-excl-label {
  margin: var(--sp-5) 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-dim);
}
/* Struck-through would be unreadable; muted + an x mark carries it. */
.price-excludes { margin-top: 10px; }
/* Colour alone carries the "excluded" meaning -- an extra opacity layer here
   made the real contrast ratio unverifiable against the measured value. */
.price-excludes li { color: var(--text-dim); }
.price-excludes li svg { color: var(--text-dim); }

.plan-form {
  margin-top: var(--sp-5);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border);
}
.plan-form .btn { width: 100%; margin-top: var(--sp-3); }
.btn-quiet {
  background: transparent;
  color: var(--accent-strong);
  border: 1px solid var(--accent);
}
.btn-quiet:hover {
  background: var(--accent-soft);
  border-color: var(--accent-strong);
  color: var(--accent-strong);
  box-shadow: var(--shadow-sm);
}

/* --- hero plan picker --- */
.plan-choice { display: grid; gap: 8px; margin: var(--sp-4) 0 var(--sp-3); }
@media (min-width: 520px) { .plan-choice { grid-template-columns: 1fr 1fr; } }
.plan-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--bg);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.plan-opt:hover { border-color: var(--accent); }
.plan-opt:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: inset 0 0 0 1px var(--accent);
}
.plan-opt:has(input:focus-visible) { outline: 2px solid var(--focus); outline-offset: 2px; }
.plan-opt input { margin: 0; accent-color: var(--accent); flex: none; }
.plan-opt-body { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.plan-opt-name { font-weight: 700; font-size: 0.95rem; }
.plan-opt-price { font-size: 0.8rem; color: var(--text-dim); }
