/* ==========================================================================
   Website Worx — shared stylesheet

   Light and dark are both first-class. Every colour used in the page comes
   from a semantic token below, never a raw hex, so a theme change is a
   token change and nothing else has to move.
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. Fonts
   Fraunces (SIL OFL — see assets/fonts/OFL.txt), self-hosted so the privacy
   notice's "no third-party requests" claim stays true. Variable weight +
   optical size: browsers pick the right opsz from the rendered font size.
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/fraunces-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/fraunces-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  color-scheme: light;

  /* Brand constants — these do not change between themes */
  --navy-900: #071426;
  --navy-800: #0b1e35;
  --navy-700: #123050;
  --brass:    #c8a24a;
  --brass-lt: #e0be6a;

  /* Semantic — light */
  --bg:            #fbf7ef;
  --bg-alt:        #f3ebdd;
  --surface:       #ffffff;
  --surface-2:     #fbf7ef;
  --border:        #e5d9c4;
  --border-strong: #cdbb9c;
  --text:          #0b1b2b;
  --text-muted:    #55697c;
  --accent:        #8a6b22;   /* passes AA on --bg for text use */
  --accent-bright: #c8a24a;   /* decorative / large only */
  --on-accent:     #2a1f06;

  /* Contrast band — the navy sections */
  --band-bg:      #071426;
  --band-surface: #0b1e35;
  --band-text:    #fbf7ef;
  --band-muted:   #adc0d4;
  --band-border:  rgba(233, 224, 206, 0.15);

  --shadow-sm: 0 1px 2px rgba(7, 20, 38, .06), 0 2px 8px rgba(7, 20, 38, .05);
  --shadow-md: 0 4px 12px rgba(7, 20, 38, .08), 0 12px 32px rgba(7, 20, 38, .08);
  --shadow-lg: 0 8px 24px rgba(7, 20, 38, .12), 0 32px 64px rgba(7, 20, 38, .16);

  /* Type — the display face is the brand's voice; body stays on the system
     stack for speed. Georgia is the closest common fallback while Fraunces
     loads. */
  --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;

  --container: 1120px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --header-h: 70px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

:root[data-theme="dark"] {
  color-scheme: dark;

  --bg:            #050c16;
  --bg-alt:        #08121f;
  --surface:       #0d1a2b;
  --surface-2:     #101f33;
  --border:        rgba(197, 214, 235, .14);
  --border-strong: rgba(197, 214, 235, .28);
  --text:          #e9eff6;
  --text-muted:    #9cb0c5;
  --accent:        #e0be6a;   /* passes AA on the dark background */
  --accent-bright: #e0be6a;
  --on-accent:     #2a1f06;

  --band-bg:      #08121f;
  --band-surface: #0d1a2b;
  --band-text:    #e9eff6;
  --band-muted:   #9cb0c5;
  --band-border:  rgba(197, 214, 235, .14);

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .4), 0 2px 8px rgba(0, 0, 0, .3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, .45), 0 12px 32px rgba(0, 0, 0, .35);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, .5), 0 32px 64px rgba(0, 0, 0, .45);
}

/* Respect a stated preference for more contrast */
@media (prefers-contrast: more) {
  :root {
    --border: var(--border-strong);
    --text-muted: var(--text);
  }
}

/* --------------------------------------------------------------------------
   2. Reset and base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

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

/* Honour the OS "reduce motion" setting rather than overriding it */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

body {
  margin: 0;
  /* rem-based sizing throughout, so browser text-size settings work */
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}

img, svg { max-width: 100%; }
img { display: block; height: auto; }
p { margin: 0; }
a { color: inherit; }

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: -.021em;
  font-weight: 660;
}

/* The big headings carry the brand's type identity; h3/h4 stay on the sans
   stack so cards and lists keep their workmanlike clarity. A serif needs far
   less negative tracking than the sans. */
h1, h2, .h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -.008em;
  line-height: 1.12;
}

/* Sticky header must not cover the thing you just jumped to */
:target,
[id] { scroll-margin-top: calc(var(--header-h) + 18px); }

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
}

.section { padding-block: clamp(64px, 9vw, 112px); }
.section--tight { padding-block: clamp(48px, 6vw, 76px); }
.section--alt { background: var(--bg-alt); }

.section--band {
  background: var(--band-bg);
  color: var(--band-text);
}
.section--band .lede,
.section--band .prose p { color: var(--band-muted); }

.center { text-align: center; }

.eyebrow {
  font-size: .775rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section--band .eyebrow { color: var(--brass-lt); }

.h2 { font-size: clamp(1.85rem, 4.1vw, 2.7rem); }
.h3 { font-size: clamp(1.35rem, 2.6vw, 1.7rem); }

.lede {
  font-size: clamp(1.02rem, 1.6vw, 1.17rem);
  color: var(--text-muted);
  max-width: 62ch;
}

.section-head { max-width: 66ch; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-inline: auto; }
.section-head.center .lede { margin-inline: auto; }

.section-head-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(32px, 4.5vw, 48px);
}
.section-head-row .section-head { margin-bottom: 0; }

.more-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 640;
  font-size: .95rem;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1.5px solid transparent;
  transition: border-color .16s var(--ease);
}
.more-link:hover { border-bottom-color: currentColor; }
.section--band .more-link { color: var(--brass-lt); }

.prose { max-width: 68ch; }
.prose p + p { margin-top: 16px; }
.prose h3 { margin: 34px 0 12px; font-size: 1.22rem; }
.prose ul { margin: 14px 0; padding-left: 20px; color: var(--text-muted); }
.prose li + li { margin-top: 8px; }
.prose p { color: var(--text-muted); }

/* --------------------------------------------------------------------------
   4. Accessibility
   -------------------------------------------------------------------------- */
/* Off-screen but still read by assistive tech; also hides the form honeypot */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--brass);
  color: var(--on-accent);
  padding: 12px 20px;
  border-radius: 0 0 var(--r-sm) 0;
  font-weight: 700;
  text-decoration: none;
}
.skip:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--accent-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font: inherit;
  font-weight: 650;
  font-size: .97rem;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .18s var(--ease), background-color .18s var(--ease),
              border-color .18s var(--ease), color .18s var(--ease),
              box-shadow .18s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--brass);
  color: var(--on-accent);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--brass-lt); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-outline:hover { background: var(--surface); border-color: var(--text); }

.btn-on-band {
  background: transparent;
  color: var(--band-text);
  border-color: var(--band-border);
}
.btn-on-band:hover {
  background: rgba(233, 224, 206, .1);
  border-color: rgba(233, 224, 206, .55);
}

.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: .92rem; }

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

.header-in {
  display: flex;
  align-items: center;
  gap: 12px;
  height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 640;
  font-size: 1.13rem;
  letter-spacing: -.005em;
}
/* Matches the mark's 1000 572.27 viewBox so it never distorts */
.logo-mark {
  width: 38px;
  height: 21.7px;
  color: var(--text);
  flex: 0 0 auto;
}
.logo i { font-style: normal; color: var(--accent); }

.nav {
  display: none;
  margin-left: auto;
  align-items: center;
  gap: 2px;
}
.nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: .94rem;
  font-weight: 550;
  padding: 9px 13px;
  border-radius: var(--r-sm);
  transition: color .16s, background-color .16s;
}
.nav a:hover { color: var(--text); background: var(--bg-alt); }
.nav a[aria-current="page"] { color: var(--text); font-weight: 650; }

.header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav + .header-actions { margin-left: 10px; }
.header-cta { display: none; }

.theme-toggle {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  flex: 0 0 auto;
  transition: background-color .16s, border-color .16s;
}
.theme-toggle:hover { background: var(--bg-alt); border-color: var(--border-strong); }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 40px;
  padding: 0 9px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  cursor: pointer;
  flex: 0 0 auto;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .2s var(--ease), opacity .2s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 10px 0 18px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  padding: 13px 22px;
}
.mobile-nav a:hover { background: var(--bg-alt); }
.mobile-nav .btn { margin: 12px 22px 0; width: calc(100% - 44px); }

@media (min-width: 980px) {
  .nav { display: flex; }
  .header-cta { display: inline-flex; }
  .burger { display: none; }
  .mobile-nav { display: none !important; }
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--band-bg);
  color: var(--band-text);
  padding-block: clamp(56px, 8vw, 92px) clamp(64px, 9vw, 104px);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 162, 74, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 162, 74, .07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 65% at 72% 32%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 90% 65% at 72% 32%, #000 0%, transparent 72%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 640px; height: 640px;
  right: -180px; top: -260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28, 68, 112, .5) 0%, transparent 68%);
}
.hero-in {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(44px, 6vw, 64px);
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.15rem, 5.6vw, 3.65rem);
  letter-spacing: -.014em;
}
.hero h1 em { font-style: normal; color: var(--brass-lt); }
.hero-sub {
  font-size: clamp(1.04rem, 1.9vw, 1.22rem);
  color: var(--band-muted);
  max-width: 52ch;
  margin-top: 20px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-note { margin-top: 18px; font-size: .88rem; color: var(--band-muted); }
.hero-note a { color: var(--brass-lt); text-underline-offset: 3px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px 7px 11px;
  border-radius: 999px;
  background: rgba(200, 162, 74, .13);
  border: 1px solid rgba(200, 162, 74, .32);
  font-size: .83rem;
  font-weight: 600;
  color: var(--brass-lt);
  margin-bottom: 22px;
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brass); flex: 0 0 auto; }

@media (min-width: 960px) {
  .hero-in { grid-template-columns: 1.02fr .98fr; }
}

/* Page hero for the inner pages */
.page-hero {
  background: var(--band-bg);
  color: var(--band-text);
  padding-block: clamp(48px, 6.5vw, 78px);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 520px; height: 520px;
  right: -160px; top: -240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28, 68, 112, .45) 0%, transparent 70%);
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem, 4.8vw, 3rem); max-width: 20ch; }
.page-hero .lede { color: var(--band-muted); margin-top: 18px; }

.crumbs { font-size: .87rem; color: var(--band-muted); margin-bottom: 16px; }
.crumbs a { color: var(--band-muted); text-decoration: none; }
.crumbs a:hover { color: var(--band-text); text-decoration: underline; }
.crumbs span { margin-inline: 8px; opacity: .5; }

/* --------------------------------------------------------------------------
   8. Browser mock (decorative)
   -------------------------------------------------------------------------- */
.mock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.mock-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 14px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.mock-bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--border-strong); flex: 0 0 auto; }
.mock-url {
  margin-left: 8px;
  flex: 1;
  height: 20px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: .63rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-weight: 600;
}
.mock-body { padding: 20px; }
.mock-hero {
  background: var(--navy-800);
  border-radius: var(--r-md);
  padding: 22px 20px;
  color: #fbf7ef;
}
.mock-hero b { display: block; font-size: 1.06rem; letter-spacing: -.02em; }
.mock-hero small { display: block; color: #adc0d4; font-size: .76rem; margin-top: 5px; }
.mock-pill {
  display: inline-block;
  margin-top: 14px;
  background: var(--brass);
  color: var(--on-accent);
  font-size: .7rem;
  font-weight: 700;
  padding: 6px 13px;
  border-radius: 999px;
}
.mock-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 14px; }
.mock-card { background: var(--bg-alt); border-radius: 10px; padding: 12px 11px; }
.bar { height: 6px; border-radius: 3px; background: var(--border-strong); opacity: .8; }
.bar.brass { background: var(--brass); opacity: .55; }
.bar.w40 { width: 40%; } .bar.w55 { width: 55%; }
.bar.w70 { width: 70%; } .bar.w85 { width: 85%; }
.mock-card .bar + .bar { margin-top: 7px; }
.mock-lines { margin-top: 14px; }
.mock-lines .bar + .bar { margin-top: 8px; }

/* --------------------------------------------------------------------------
   9. Value strip
   -------------------------------------------------------------------------- */
.strip {
  background: var(--band-surface);
  border-top: 1px solid var(--band-border);
  padding-block: 26px;
}
.strip-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 26px; }
.strip-item {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--band-text);
  font-size: .9rem;
  font-weight: 560;
}
.strip-item svg { flex: 0 0 auto; color: var(--brass-lt); }
@media (min-width: 820px) { .strip-grid { grid-template-columns: repeat(4, 1fr); } }

/* --------------------------------------------------------------------------
   10. Grids and cards
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: 20px; }
@media (min-width: 660px) {
  .grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 940px) { .grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card h3 { font-size: 1.08rem; margin-bottom: 9px; }
.card p { color: var(--text-muted); font-size: .95rem; }

.icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: color-mix(in srgb, var(--brass) 18%, transparent);
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   12. Steps
   -------------------------------------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: 22px; }
@media (min-width: 700px)  { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .steps.cols-4 { grid-template-columns: repeat(4, 1fr); } }

.step { position: relative; padding-top: 52px; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 0; left: 0;
  width: 38px; height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-weight: 750;
  font-size: 1rem;
  background: var(--navy-800);
  color: var(--brass-lt);
}
.step h3 { font-size: 1.04rem; margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: .94rem; }
.section--band .step p { color: var(--band-muted); }

/* --------------------------------------------------------------------------
   13. Pricing
   -------------------------------------------------------------------------- */
.plans { display: grid; gap: 22px; align-items: start; }
@media (min-width: 900px) { .plans { grid-template-columns: repeat(3, 1fr); } }

.plan {
  background: var(--band-surface);
  border: 1px solid var(--band-border);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  height: 100%;
  color: var(--band-text);
}
.plan.featured {
  background: var(--surface);
  color: var(--text);
  border-color: var(--brass);
  box-shadow: var(--shadow-lg);
  position: relative;
}
@media (min-width: 900px) { .plan.featured { transform: scale(1.035); } }

.plan-tag {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--brass);
  color: var(--on-accent);
  font-size: .71rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 15px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan h3 { font-size: 1.16rem; }
.plan-desc { font-size: .89rem; color: var(--band-muted); margin-top: 6px; min-height: 2.6em; }
.plan.featured .plan-desc { color: var(--text-muted); }

.price { display: flex; align-items: baseline; gap: 5px; margin: 20px 0 4px; }
.price b { font-size: 2.7rem; font-weight: 700; letter-spacing: -.035em; line-height: 1; }
.price span { font-size: .92rem; color: var(--band-muted); }
.plan.featured .price span { color: var(--text-muted); }
.price-sub { font-size: .8rem; color: var(--band-muted); }
.plan.featured .price-sub { color: var(--text-muted); }

.plan .btn { margin: 24px 0 22px; }

.feats { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
/* Hanging checkmark: the whole feature flows as one line of text and wraps
   together, instead of flex splitting "3 changes a month" and ", within 3
   working days" into two columns with a gap between them. */
.feats li { position: relative; padding-left: 24px; font-size: .91rem; line-height: 1.5; }
/* Tick as a pseudo-element rather than 20 copies of the same inline SVG */
.feats li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  color: var(--brass-lt);
}
.plan.featured .feats li::before { color: var(--accent); }
.feats li.is-head::before { content: "→"; }

.setup {
  margin-top: 34px;
  background: var(--band-surface);
  border: 1px solid var(--band-border);
  border-radius: var(--r-md);
  padding: 24px 26px;
  color: var(--band-text);
}
.setup h3 { font-size: 1.04rem; margin-bottom: 8px; }
.setup p { color: var(--band-muted); font-size: .93rem; }
.setup p + p { margin-top: 10px; }
.setup strong { color: var(--brass-lt); }

/* Comparison table */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.compare {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: .93rem;
}
table.compare th, table.compare td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
table.compare thead th {
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border-strong);
}
table.compare tbody th { font-weight: 620; color: var(--text); width: 34%; }
table.compare td { color: var(--text-muted); }
table.compare tbody tr:hover { background: var(--bg-alt); }

/* --------------------------------------------------------------------------
   14. FAQ
   -------------------------------------------------------------------------- */
.faq { display: grid; gap: 12px; max-width: 820px; margin-inline: auto; }

details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
details[open] { box-shadow: var(--shadow-sm); }

summary {
  cursor: pointer;
  list-style: none;
  padding: 19px 54px 19px 22px;
  font-weight: 620;
  font-size: 1rem;
  position: relative;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "";
  position: absolute;
  right: 22px; top: 50%;
  width: 9px; height: 9px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .2s var(--ease);
}
details[open] summary::after { transform: translateY(-25%) rotate(225deg); }
summary:hover { background: var(--bg-alt); }

.faq-body { padding: 0 22px 21px; color: var(--text-muted); font-size: .95rem; max-width: 70ch; }
.faq-body p + p { margin-top: 11px; }

/* --------------------------------------------------------------------------
   15. Forms
   -------------------------------------------------------------------------- */
.form {
  background: var(--band-surface);
  border: 1px solid var(--band-border);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3.4vw, 34px);
  color: var(--band-text);
}
.field + .field { margin-top: 17px; }
.field label { display: block; font-size: .87rem; font-weight: 620; margin-bottom: 7px; }
.field .req { color: var(--brass-lt); }

.field input, .field select, .field textarea {
  width: 100%;
  font: inherit;
  font-size: .96rem;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  background: var(--band-bg);
  border: 1.5px solid var(--band-border);
  color: var(--band-text);
  transition: border-color .16s;
}
.field textarea { resize: vertical; min-height: 112px; }
.field input::placeholder, .field textarea::placeholder { color: var(--band-muted); opacity: .7; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--brass);
  outline: none;
}
.field [aria-invalid="true"] { border-color: #e07a5f; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23adc0d4' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

.form .btn { margin-top: 24px; }
.form-note { margin-top: 14px; font-size: .8rem; color: var(--band-muted); line-height: 1.55; }
.form-status {
  margin-top: 16px;
  padding: 13px 16px;
  border-radius: var(--r-sm);
  font-size: .9rem;
  display: none;
  background: rgba(47, 122, 91, .18);
  border: 1px solid rgba(90, 190, 145, .42);
  color: #b6e7cf;
}
.form-status.show { display: block; }

.contact-in { display: grid; gap: clamp(36px, 5vw, 56px); }
@media (min-width: 940px) { .contact-in { grid-template-columns: .92fr 1.08fr; } }

.contact-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 16px; }
.contact-list li { display: flex; gap: 13px; align-items: flex-start; font-size: .95rem; }
.contact-list svg { flex: 0 0 auto; margin-top: 3px; color: var(--brass-lt); }
.contact-list a { text-decoration-color: rgba(200, 162, 74, .5); text-underline-offset: 3px; }

/* --------------------------------------------------------------------------
   16. Pricing card
   A corner prompt, deliberately not a modal: it never covers the content,
   never blocks interaction, and never takes focus away from what someone
   was reading. It can be ignored completely and the page still works.
   -------------------------------------------------------------------------- */
.pricecard {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: min(330px, calc(100vw - 40px));
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 20px 20px 18px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.pricecard[hidden] { display: none; }
.pricecard.open { opacity: 1; transform: none; }

/* On a phone it spans the width rather than hugging one corner */
@media (max-width: 560px) {
  .pricecard { left: 12px; right: 12px; bottom: 12px; width: auto; }
}

.pricecard h2 { font-size: 1.02rem; padding-right: 30px; }
.pricecard-sub { font-size: .84rem; color: var(--text-muted); margin-top: 5px; }

.pricecard-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 28px; height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
}
.pricecard-close:hover { background: var(--bg-alt); color: var(--text); }

.mini-plans { display: grid; gap: 6px; margin: 15px 0 13px; }
.mini-plan {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--bg-alt);
  font-size: .89rem;
}
.mini-plan.is-pick {
  border-color: var(--brass);
  background: color-mix(in srgb, var(--brass) 12%, transparent);
}
.mini-plan .name { font-weight: 620; }
.mini-plan .amt { font-weight: 700; white-space: nowrap; font-variant-numeric: tabular-nums; }
.mini-plan .amt span { font-weight: 500; font-size: .76rem; color: var(--text-muted); }

.pricecard-note {
  font-size: .82rem;
  line-height: 1.55;
  color: var(--text-muted);
  border-left: 3px solid var(--brass);
  padding-left: 11px;
  margin-bottom: 15px;
}
.pricecard-note b { color: var(--text); }

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--band-bg);
  color: var(--band-muted);
  padding-block: 52px 40px;
  font-size: .89rem;
  border-top: 1px solid var(--band-border);
}
.footer-grid {
  display: grid;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--band-border);
}
@media (min-width: 760px)  { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; } }
.footer .logo { color: var(--band-text); }
.footer .logo-mark { color: var(--band-text); }
.footer .logo i { color: var(--brass-lt); }
.footer h4 {
  color: var(--band-text);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer a { color: var(--band-muted); text-decoration: none; }
.footer a:hover { color: var(--band-text); text-decoration: underline; }
.footer-note { padding-top: 24px; display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; }
