/* ==========================================================================
   DemoWP — site styles
   Vanilla CSS, no build. Mobile-first. WCAG AA target.
   --------------------------------------------------------------------------
   Fonts: loaded from Google Fonts in each page <head>. To fully self-host,
   drop the woff2 files in assets/fonts/ and replace the <link> with the
   @font-face block noted at the bottom of this file.
   Families: Space Grotesk (display) · IBM Plex Sans (text) · IBM Plex Mono (code)
   ========================================================================== */

/* ---- Design tokens ------------------------------------------------------- */
:root {
  /* Brand blue (ecosystem #0074bb) and derived steps */
  --blue-700: #00568c;
  --blue-600: #0074bb;
  --blue-500: #1a86c9;
  --blue-100: #d3e8f6;
  --blue-50:  #eaf4fb;

  /* Supporting accent — isolation / safe (used sparingly) */
  --teal-600: #0e8f80;
  --teal-50:  #e3f4f1;

  /* Status */
  --amber-600: #b26a00;
  --amber-50:  #fbf0dd;

  /* Cool neutrals (ink + slate) */
  --ink:       #11161c;
  --slate-800: #1f2730;
  --slate-700: #36424f;
  --slate-600: #54616f;
  --slate-500: #6b7888;
  --slate-400: #97a3b1;
  --slate-300: #c5cdd7;
  --slate-200: #dde3ea;
  --line:      #e6eaef;
  --line-soft: #eef1f5;

  /* Surfaces */
  --bg:        #ffffff;
  --bg-soft:   #f6f8fb;
  --bg-ink:    #0e1419;

  /* Typography */
  --font-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-text: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Radii */
  --r-sm: 7px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 26px;

  /* Shadow — restrained, technical */
  --sh-sm: 0 1px 2px rgba(17, 22, 28, .05), 0 1px 1px rgba(17, 22, 28, .04);
  --sh-md: 0 6px 16px rgba(17, 22, 28, .07), 0 2px 5px rgba(17, 22, 28, .05);
  --sh-lg: 0 24px 50px -18px rgba(15, 35, 56, .26), 0 6px 16px rgba(17, 22, 28, .06);

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 56px);
  --section-y: clamp(64px, 9vw, 120px);

  --focus: 0 0 0 3px rgba(0, 116, 187, .35);
}

/* ---- Reset / base -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@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;
  font-family: var(--font-text);
  font-size: 17px;
  line-height: 1.65;
  color: var(--slate-700);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.015em;
  font-weight: 600;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

a { color: var(--blue-600); text-decoration: none; }
a:hover { color: var(--blue-700); }

img, svg { display: block; max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 16px; top: -60px;
  background: var(--ink); color: #fff; padding: 10px 16px;
  border-radius: var(--r-sm); z-index: 200; transition: top .15s ease;
}
.skip-link:focus { top: 16px; color: #fff; }

/* ---- Layout helpers ------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); }
.section--soft { background: var(--bg-soft); }
.section--tight { padding-block: clamp(44px, 6vw, 72px); }

.stack > * + * { margin-top: 1rem; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-600);
  font-weight: 500;
  margin: 0 0 14px;
  display: flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 1.5px; background: var(--blue-500); display: inline-block;
}

.section-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head h2 { font-size: clamp(30px, 4.4vw, 46px); }
.section-head p { margin-top: 18px; font-size: clamp(17px, 1.4vw, 19px); color: var(--slate-600); }

.lead { font-size: clamp(18px, 1.6vw, 21px); color: var(--slate-600); line-height: 1.6; }

/* ---- Buttons ------------------------------------------------------------- */
.btn {
  --btn-bg: var(--blue-600);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  padding: 14px 22px;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease, transform .12s ease, color .16s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--blue-700); color: #fff; }
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--slate-200);
}
.btn--ghost:hover { background: var(--bg-soft); color: var(--ink); border-color: var(--slate-300); }

.btn--light {
  background: #fff; color: var(--blue-700); border-color: var(--blue-100);
}
.btn--light:hover { background: var(--blue-50); color: var(--blue-700); }

.btn--lg { padding: 17px 28px; font-size: 17px; }
.btn--block { width: 100%; }

.textlink {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 600; color: var(--blue-600);
}
.textlink svg { width: 16px; height: 16px; transition: transform .16s ease; }
.textlink:hover svg { transform: translateX(3px); }

/* ---- Header -------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__row {
  display: flex; align-items: center; gap: 24px;
  height: 70px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); font-family: var(--font-display); font-weight: 600; font-size: 20px; letter-spacing: -.02em; }
.brand:hover { color: var(--ink); }
.brand__mark { width: 30px; height: 30px; flex: none; }
.brand b { color: var(--blue-600); font-weight: 600; }

.primary-nav { margin-left: 8px; }
.primary-nav ul { display: flex; align-items: center; gap: 4px; }
.primary-nav .nav-cta { display: none; } /* in-menu Buy shows only in mobile drawer */
.primary-nav a {
  display: inline-block; padding: 9px 14px; border-radius: var(--r-sm);
  color: var(--slate-700); font-weight: 500; font-size: 15.5px;
  white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}
.primary-nav a:hover { background: var(--bg-soft); color: var(--ink); }
.primary-nav a[aria-current="page"] { color: var(--blue-700); background: var(--blue-50); }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: 14px; }

.lang-switch { display: inline-flex; align-items: center; font-family: var(--font-mono); font-size: 13.5px; border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; }
.lang-switch a { padding: 6px 11px; color: var(--slate-500); font-weight: 500; }
.lang-switch a + a { border-left: 1px solid var(--line); }
.lang-switch a[aria-current="true"] { background: var(--ink); color: #fff; }
.lang-switch a:hover:not([aria-current="true"]) { background: var(--bg-soft); color: var(--ink); }

.nav-toggle {
  display: none; width: 42px; height: 42px; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--line); border-radius: var(--r-sm); cursor: pointer; color: var(--ink);
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 920px) {
  .header-actions .btn--buy { display: none; }
}
@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; order: 3; }
  .header-actions { margin-left: auto; gap: 10px; }
  .primary-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--sh-md);
    padding: 12px var(--gutter) 20px;
    margin: 0;
    display: none;
  }
  .primary-nav.is-open { display: block; }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .primary-nav a { padding: 12px 14px; font-size: 17px; }
  .primary-nav .nav-cta { margin-top: 10px; display: block; }
  .primary-nav .nav-cta .btn { width: 100%; }
}

/* ---- Hero ---------------------------------------------------------------- */
.hero {
  position: relative;
  padding-block: clamp(48px, 7vw, 96px);
  background:
    radial-gradient(1100px 460px at 78% -8%, var(--blue-50), transparent 62%),
    linear-gradient(180deg, #fff, #fcfdfe);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero h1 { font-size: clamp(38px, 5.6vw, 64px); letter-spacing: -.03em; }
.hero__sub { margin-top: 22px; max-width: 33ch; }
.hero__cta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__meta { margin-top: 26px; font-family: var(--font-mono); font-size: 13.5px; color: var(--slate-500); display: flex; flex-wrap: wrap; gap: 7px 18px; }
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--teal-600); }

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__sub { max-width: 52ch; }
}

/* Demo "window" mock */
.demo-window {
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--sh-lg);
  overflow: hidden;
}
.demo-window__bar {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px; border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.demo-dots { display: flex; gap: 7px; }
.demo-dots i { width: 11px; height: 11px; border-radius: 50%; background: var(--slate-200); display: block; }
.demo-url {
  flex: 1; font-family: var(--font-mono); font-size: 12.5px; color: var(--slate-500);
  background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 6px 11px;
  display: flex; align-items: center; gap: 8px; overflow: hidden; white-space: nowrap;
}
.demo-url svg { width: 13px; height: 13px; flex: none; color: var(--teal-600); }
.demo-window__body { padding: 20px; display: grid; gap: 16px; }
.demo-expiry {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 12px 15px; border-radius: var(--r-md);
  background: var(--blue-50); border: 1px solid var(--blue-100);
}
.demo-expiry__label { font-size: 14px; color: var(--slate-600); display: flex; align-items: center; gap: 9px; }
.demo-expiry__label svg { width: 17px; height: 17px; color: var(--blue-600); }
.demo-countdown { font-family: var(--font-mono); font-weight: 500; font-size: 20px; color: var(--blue-700); font-variant-numeric: tabular-nums; }
.demo-progress { height: 5px; border-radius: 99px; background: var(--blue-100); overflow: hidden; }
.demo-progress i { display: block; height: 100%; background: var(--blue-500); border-radius: 99px; }
.demo-admin { display: grid; grid-template-columns: 64px 1fr; gap: 14px; }
.demo-admin__side { display: grid; gap: 8px; align-content: start; }
.demo-admin__side span { height: 9px; border-radius: 4px; background: var(--slate-200); }
.demo-admin__side span:nth-child(1) { background: var(--blue-200, #bfddf2); }
.demo-admin__main { display: grid; gap: 11px; }
.demo-admin__main .ph { height: 11px; border-radius: 5px; background: var(--line); }
.demo-admin__main .ph.w-40 { width: 40%; }
.demo-admin__main .ph.w-70 { width: 70%; }
.demo-admin__main .ph.tall { height: 64px; border-radius: 8px; background: var(--bg-soft); border: 1px solid var(--line); }
.demo-flag {
  position: relative; margin-top: -2px;
  font-family: var(--font-mono); font-size: 11.5px; color: var(--teal-600);
  display: inline-flex; align-items: center; gap: 7px;
}
.demo-flag::before { content: ""; width: 7px; height: 7px; border: 1.5px dashed var(--teal-600); border-radius: 2px; }

/* ---- Logo strip / social proof ------------------------------------------ */
.proofbar { border-bottom: 1px solid var(--line-soft); background: #fff; }
.proofbar__row { display: flex; align-items: center; gap: 18px; padding-block: 22px; flex-wrap: wrap; }
.proofbar__tag { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--slate-400); }
.proofbar p { font-size: 15.5px; color: var(--slate-600); }
.proofbar a { font-weight: 600; }

/* ---- Generic grids ------------------------------------------------------- */
.grid { display: grid; gap: clamp(16px, 2vw, 24px); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

/* ---- Cards --------------------------------------------------------------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px; transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.card--hover:hover { border-color: var(--blue-100); box-shadow: var(--sh-md); transform: translateY(-2px); }
.card__icon {
  width: 46px; height: 46px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-50); color: var(--blue-600); margin-bottom: 18px;
}
.card__icon svg { width: 23px; height: 23px; }
.card h3 { font-size: 19px; margin-bottom: 8px; }
.card p { font-size: 15.5px; color: var(--slate-600); }

/* audience card variant */
.audience { display: grid; gap: 14px; }
.audience .card__kicker { font-family: var(--font-mono); font-size: 12px; color: var(--slate-400); letter-spacing: .08em; }

/* ---- Steps --------------------------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: clamp(16px, 2vw, 22px); grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative; padding: 26px 24px; border-radius: var(--r-lg);
  background: #fff; border: 1px solid var(--line);
}
.step__n {
  font-family: var(--font-mono); font-size: 13px; font-weight: 500;
  width: 34px; height: 34px; border-radius: 9px; display: flex; align-items: center; justify-content: center;
  background: var(--ink); color: #fff; margin-bottom: 18px;
}
.step h3 { font-size: 17px; margin-bottom: 7px; }
.step p { font-size: 14.5px; color: var(--slate-600); }

/* ---- Features grid (compact) -------------------------------------------- */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
@media (min-width: 760px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .features { grid-template-columns: repeat(2, 1fr); } }
.feature { background: #fff; padding: 24px; display: grid; grid-template-columns: 42px 1fr; gap: 16px; align-items: start; }
.feature__ic { width: 42px; height: 42px; border-radius: 10px; background: var(--bg-soft); color: var(--blue-600); display: flex; align-items: center; justify-content: center; }
.feature__ic svg { width: 21px; height: 21px; }
.feature h3 { font-size: 16.5px; margin-bottom: 5px; }
.feature p { font-size: 14.5px; color: var(--slate-600); line-height: 1.55; }
@media (max-width: 600px) { .feature { grid-template-columns: 1fr; } .feature__ic { margin-bottom: -4px; } }

.features--3 { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(16px,2vw,22px); background: none; border: 0; }
@media (max-width: 980px){ .features--3 { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 600px){ .features--3 { grid-template-columns: 1fr;} }
.features--3 .feature { border: 1px solid var(--line); border-radius: var(--r-lg); }

/* ---- Security split ------------------------------------------------------ */
.security {
  border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--line);
  background:
    radial-gradient(800px 300px at 10% -20%, rgba(14,143,128,.10), transparent 60%),
    var(--bg-ink);
  color: #cdd6df;
}
.security__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); padding: clamp(32px, 5vw, 60px); }
.security h2 { color: #fff; font-size: clamp(28px, 3.6vw, 40px); }
.security__lead { margin-top: 18px; color: #aeb9c4; font-size: 17px; max-width: 46ch; }
.security__panels { display: grid; gap: 18px; }
.security-panel { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); border-radius: var(--r-lg); padding: 22px 24px; }
.security-panel h3 { color: #fff; font-size: 15px; font-family: var(--font-mono); font-weight: 500; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.security-panel ul { display: grid; gap: 12px; }
.security-panel li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: #d6dee6; }
.security-panel li svg { width: 19px; height: 19px; flex: none; margin-top: 1px; }
.ic-no { color: #ef8a7a; }
.ic-yes { color: #4dc6b4; }
@media (max-width: 860px) { .security__inner { grid-template-columns: 1fr; } }

/* ---- Setup / code snippet ------------------------------------------------ */
.setup { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,56px); align-items: center; }
@media (max-width: 860px){ .setup { grid-template-columns: 1fr; } }
.code-card { background: var(--bg-ink); border-radius: var(--r-lg); padding: 22px 24px; box-shadow: var(--sh-lg); font-family: var(--font-mono); font-size: 14px; line-height: 1.9; color: #c6d0da; }
.code-card .c-row { display: flex; gap: 12px; }
.code-card .c-key { color: #6fb6e6; }
.code-card .c-val { color: #e6edf3; }
.code-card .c-cmt { color: #5e6b78; }
.code-card .c-dim { color: #7d8a98; }
.code-head { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; color: #7d8a98; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.code-head i { width: 9px; height: 9px; border-radius: 50%; background: #2f3a45; }

/* requirements chips */
.req-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.chip {
  font-family: var(--font-mono); font-size: 13.5px; color: var(--slate-700);
  background: #fff; border: 1px solid var(--line); border-radius: 99px; padding: 8px 14px;
  display: inline-flex; align-items: center; gap: 8px;
}
.chip svg { width: 14px; height: 14px; color: var(--teal-600); }

/* ---- FAQ ----------------------------------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px; font-family: var(--font-display); font-weight: 500; font-size: clamp(17px, 2vw, 20px); color: var(--ink);
}
.faq__q:hover { color: var(--blue-700); }
.faq__icon { flex: none; width: 26px; height: 26px; position: relative; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--blue-600); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.faq__icon::before { left: 5px; right: 5px; top: 12px; height: 2px; }
.faq__icon::after { top: 5px; bottom: 5px; left: 12px; width: 2px; }
.faq__q[aria-expanded="true"] .faq__icon::after { transform: scaleY(0); opacity: 0; }
.faq__a { overflow: hidden; max-height: 0; transition: max-height .26s ease; }
.faq__a-inner { padding: 0 4px 24px; color: var(--slate-600); font-size: 16px; max-width: 70ch; }

/* ---- CTA band ------------------------------------------------------------ */
.cta-band { position: relative; overflow: hidden; border-radius: var(--r-xl); padding: clamp(40px, 6vw, 76px); text-align: center;
  background:
    radial-gradient(700px 320px at 50% -30%, rgba(255,255,255,.16), transparent 60%),
    linear-gradient(180deg, var(--blue-600), var(--blue-700));
  color: #fff;
}
.cta-band h2 { color: #fff; font-size: clamp(28px, 4vw, 46px); }
.cta-band p { margin: 18px auto 0; max-width: 48ch; color: rgba(255,255,255,.9); font-size: 18px; }
.cta-band__actions { margin-top: 32px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- Pricing ------------------------------------------------------------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 22px); align-items: stretch; }
@media (max-width: 860px) { .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }
.price-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: 32px; }
.price-card__sites { font-family: var(--font-mono); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--slate-500); }
.price-card__name { font-family: var(--font-display); font-size: 24px; color: var(--ink); margin: 6px 0 20px; font-weight: 600; }
.price-card__price { display: flex; align-items: baseline; gap: 8px; }
.price-card__amount { font-family: var(--font-display); font-size: 46px; font-weight: 600; color: var(--ink); letter-spacing: -.02em; }
.price-card__per { color: var(--slate-500); font-size: 15px; white-space: nowrap; }
.price-card__list { margin: 24px 0 28px; display: grid; gap: 12px; }
.price-card__list li { display: flex; gap: 11px; font-size: 15px; color: var(--slate-600); }
.price-card__list svg { width: 18px; height: 18px; color: var(--teal-600); flex: none; margin-top: 2px; }
.price-card .btn { margin-top: auto; }
.price-renew {
  display: inline-flex; align-items: center; gap: 7px; width: fit-content;
  margin: 14px 0 2px; padding: 7px 13px; border-radius: 99px;
  font-size: 13.5px; font-weight: 600; color: var(--teal-600);
  background: var(--teal-50); border: 1px solid #cdeae5;
  transition: background .15s ease;
}
.price-renew:hover { background: #d7f0eb; color: var(--teal-600); }
.price-renew svg { width: 14px; height: 14px; flex: none; }

.renewal { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(28px,4vw,48px); align-items: center; scroll-margin-top: 90px; }
@media (max-width: 820px){ .renewal { grid-template-columns: 1fr; } }
.renewal-table { width: 100%; border-collapse: collapse; font-size: 15px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.renewal-table th, .renewal-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.renewal-table thead th { font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--slate-500); font-weight: 500; background: var(--bg-soft); }
.renewal-table td:not(:first-child) { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.renewal-table tr:last-child td { border-bottom: 0; }
.renewal-table .save { color: var(--teal-600); }

/* ---- Plugins page -------------------------------------------------------- */
.plug-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px,2vw,22px); }
@media (max-width: 760px){ .plug-grid { grid-template-columns: 1fr; } }
.plug-card { display: flex; flex-direction: column; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; }
.plug-card__top { display: flex; align-items: center; gap: 12px; }
.plug-card__badge { font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; padding: 4px 9px; border-radius: 6px; }
.badge-free { background: var(--teal-50); color: var(--teal-600); }
.badge-prem { background: var(--blue-50); color: var(--blue-700); }
.badge-skill { background: var(--amber-50); color: var(--amber-600); }
.plug-card h3 { font-size: 18px; }
.plug-card p { font-size: 14.5px; color: var(--slate-600); flex: 1; }
.plug-card .textlink { font-size: 15px; }

/* ---- About --------------------------------------------------------------- */
.about-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(32px,5vw,64px); align-items: start; }
@media (max-width: 860px){ .about-grid { grid-template-columns: 1fr; } }
.about-body p + p { margin-top: 18px; }
.about-body p { font-size: 18px; color: var(--slate-700); }
.stat-card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; }
.stat-card__num { font-family: var(--font-display); font-size: 40px; color: var(--blue-600); font-weight: 600; letter-spacing: -.02em; }
.stat-card__lbl { color: var(--slate-600); margin-top: 6px; font-size: 15px; }
.linklist { display: grid; gap: 2px; }
.linklist a { display: flex; align-items: baseline; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--slate-700); }
.linklist a:hover { color: var(--blue-700); }
.linklist .ll-key { font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--slate-400); width: 64px; flex: none; }
.linklist .ll-val { font-weight: 500; }

/* ---- Image placeholder --------------------------------------------------- */
.ph-img {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background-color: var(--bg-soft);
  background-image: repeating-linear-gradient(135deg, var(--line-soft) 0 14px, #fff 14px 28px);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; min-height: 220px;
}
.ph-img span { font-family: var(--font-mono); font-size: 12.5px; color: var(--slate-500); background: #fff; border: 1px solid var(--line); padding: 6px 12px; border-radius: 99px; }

/* ---- Band: nonprofit / generic accent ----------------------------------- */
.band {
  border-radius: var(--r-xl); padding: clamp(28px,4vw,48px);
  background: var(--teal-50); border: 1px solid #cdeae5;
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
}
@media (max-width: 720px){ .band { grid-template-columns: 1fr; } }
.band h3 { font-size: clamp(21px,2.6vw,28px); color: var(--ink); }
.band p { margin-top: 10px; color: var(--slate-700); max-width: 60ch; }

/* ---- Footer -------------------------------------------------------------- */
.site-footer { background: var(--bg-ink); color: #9aa6b2; padding-block: clamp(48px,6vw,72px) 36px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(28px,4vw,48px); }
@media (max-width: 860px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 520px){ .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand { color: #fff; }
.site-footer .brand b { color: var(--blue-500); }
.footer-about { color: #8593a0; font-size: 15px; margin-top: 16px; max-width: 34ch; }
.footer-col h4 { color: #fff; font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: #9aa6b2; font-size: 15px; }
.footer-col a:hover { color: #fff; }
.footer-bottom { margin-top: clamp(36px,5vw,56px); padding-top: 24px; border-top: 1px solid rgba(255,255,255,.09); display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: center; justify-content: space-between; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.footer-legal a { color: #8593a0; font-size: 13.5px; }
.footer-legal a:hover { color: #fff; }
.footer-copy { font-size: 13.5px; color: #74828f; font-family: var(--font-mono); }

/* ---- Page hero (interior pages) ----------------------------------------- */
.page-hero { padding-block: clamp(48px,6vw,84px) clamp(36px,4vw,52px); background: linear-gradient(180deg, var(--bg-soft), #fff); border-bottom: 1px solid var(--line-soft); }
.page-hero h1 { font-size: clamp(34px,5vw,54px); }
.page-hero p { margin-top: 18px; max-width: 56ch; }

/* ---- Utilities ----------------------------------------------------------- */
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.muted { color: var(--slate-500); }
.mono { font-family: var(--font-mono); }
.vh { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.note { font-size: 14px; color: var(--slate-500); }

/* To fully self-host fonts, add files to assets/fonts/ and uncomment:
@font-face { font-family:"Space Grotesk"; src:url("../fonts/SpaceGrotesk-Variable.woff2") format("woff2"); font-weight:400 700; font-display:swap; }
@font-face { font-family:"IBM Plex Sans"; src:url("../fonts/IBMPlexSans-Regular.woff2") format("woff2"); font-weight:400; font-display:swap; }
@font-face { font-family:"IBM Plex Sans"; src:url("../fonts/IBMPlexSans-Medium.woff2") format("woff2"); font-weight:500; font-display:swap; }
@font-face { font-family:"IBM Plex Sans"; src:url("../fonts/IBMPlexSans-SemiBold.woff2") format("woff2"); font-weight:600; font-display:swap; }
@font-face { font-family:"IBM Plex Mono"; src:url("../fonts/IBMPlexMono-Regular.woff2") format("woff2"); font-weight:400; font-display:swap; }
*/
