:root {
  --kw-ink: #15251c;
  --kw-ink-soft: #3e4c44;
  --kw-green: #3f7556;
  --kw-green-strong: #2f6045;
  --kw-green-pale: #eaf2ec;
  --kw-mint: #b9d7c4;
  --kw-sand: #eee8dc;
  --kw-paper: #fbfcfa;
  --kw-white: #ffffff;
  --kw-line: #dfe6e1;
  --kw-shadow: 0 24px 70px rgba(20, 38, 28, .11);
  --kw-radius: 24px;
  --kw-content: 1180px;
  --kw-font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body.kw-site {
  margin: 0;
  background: var(--kw-paper);
  color: var(--kw-ink);
  font-family: var(--kw-font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.kw-menu-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; height: auto; }
.kw-skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 9999;
  background: var(--kw-ink);
  color: #fff;
  padding: .7rem 1rem;
  border-radius: 10px;
}
.kw-skip-link:focus { top: 1rem; }

.kw-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 252, 250, .88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.kw-header.is-scrolled { border-color: rgba(21,37,28,.08); box-shadow: 0 10px 40px rgba(21,37,28,.06); }
body.admin-bar .kw-header { top: 32px; }
.kw-header-inner {
  width: min(calc(100% - 40px), var(--kw-content));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.kw-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 760;
  letter-spacing: -.025em;
  flex: 0 0 auto;
}
.kw-brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px 12px 16px 12px;
  background: var(--kw-ink);
  color: var(--kw-white);
  display: inline-grid;
  place-items: center;
  font-size: 18px;
  box-shadow: inset -8px -8px 18px rgba(255,255,255,.08);
}
.kw-brand-name { font-size: 21px; }
.kw-brand-lockup {
  display: inline-grid;
  justify-items: start;
  gap: 3px;
  line-height: 1;
}
.kw-brand-claim {
  display: block;
  padding-left: 2px;
  color: #68736d;
  font-size: 11px;
  font-weight: 680;
  letter-spacing: .025em;
  line-height: 1.15;
  white-space: nowrap;
}

.kw-brand-image {
  display: block;
  width: auto;
  height: 42px;
  max-width: 250px;
  object-fit: contain;
}
.kw-brand-image-footer {
  height: 40px;
  max-width: 240px;
}
.kw-custom-logo img { display: block; width: auto; max-height: 48px; }
.kw-custom-logo .custom-logo-link { display: flex; align-items: center; }
.kw-nav { margin-left: auto; display: flex; align-items: center; gap: 26px; }
.kw-nav-list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 24px; }
.kw-nav-list > li { position: relative; }
.kw-nav-list a { text-decoration: none; color: var(--kw-ink-soft); font-size: 15px; font-weight: 650; }
.kw-nav-list a:hover, .kw-nav-list a:focus-visible { color: var(--kw-green-strong); }
.kw-nav-list > .menu-item-has-children > a { display: inline-flex; align-items: center; gap: 7px; }
.kw-nav-list > .menu-item-has-children > a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}
.kw-nav-list > .menu-item-has-children::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -12px;
  right: -12px;
  height: 14px;
}
.kw-nav-list .sub-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 20;
  min-width: 190px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(21,37,28,.09);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(21,37,28,.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}
.kw-nav-list .sub-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 9px;
  color: var(--kw-ink);
  font-size: 14px;
  white-space: nowrap;
}
.kw-nav-list .sub-menu a:hover,
.kw-nav-list .sub-menu a:focus-visible {
  color: var(--kw-green-strong);
  background: #f1f6f2;
}
.kw-nav-list > .menu-item-has-children:hover > .sub-menu,
.kw-nav-list > .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.kw-nav-actions { display: flex; align-items: center; gap: 12px; }
.kw-login-link { text-decoration: none; font-size: 15px; font-weight: 700; color: var(--kw-ink); }
.kw-header-cta,
.kw-button-primary .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--kw-green-strong) !important;
  background: var(--kw-green-strong) !important;
  color: #fff !important;
  text-decoration: none;
  border-radius: 999px !important;
  min-height: 46px;
  padding: 0 20px !important;
  font-size: 15px;
  font-weight: 760;
  box-shadow: 0 10px 28px rgba(47,96,69,.18);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.kw-header-cta:hover, .kw-button-primary .wp-block-button__link:hover { transform: translateY(-1px); background: #274f39 !important; box-shadow: 0 14px 34px rgba(47,96,69,.24); }
.kw-menu-toggle { display: none; }

.kw-main { overflow: hidden; }
.kw-main > .alignfull { width: 100%; margin-left: 0; margin-right: 0; }
.kw-main > :not(.alignfull), .kw-main .wp-block-group__inner-container { max-width: var(--kw-content); }
.kw-hero {
  position: relative;
  padding: clamp(70px, 8vw, 118px) 20px 76px;
  background:
    radial-gradient(circle at 82% 18%, rgba(185,215,196,.55), transparent 28%),
    radial-gradient(circle at 10% 84%, rgba(238,232,220,.8), transparent 32%),
    var(--kw-paper);
}
.kw-hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -180px;
  top: 55px;
  border: 1px solid rgba(63,117,86,.14);
  border-radius: 48% 52% 58% 42%;
  transform: rotate(25deg);
}
.kw-hero-grid, .kw-split { width: min(100%, var(--kw-content)); margin: 0 auto; gap: clamp(42px, 6vw, 82px); }
.kw-eyebrow {
  margin: 0 0 18px;
  color: var(--kw-green-strong);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.kw-hero-title {
  max-width: 780px;
  margin: 0;
  font-size: clamp(48px, 6.2vw, 80px);
  line-height: .99;
  letter-spacing: -.055em;
  font-weight: 780;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.kw-hero-lead, .kw-section-lead { color: var(--kw-ink-soft); font-size: clamp(18px, 2vw, 21px); line-height: 1.58; }
.kw-hero-lead { max-width: 690px; margin: 28px 0 30px; }
.kw-hero-actions { gap: 12px; }
.kw-hero-actions .wp-block-button__link { min-height: 54px; padding: 0 24px !important; }
.kw-button-secondary .wp-block-button__link {
  border: 1px solid rgba(21,37,28,.2) !important;
  background: rgba(255,255,255,.64) !important;
  color: var(--kw-ink) !important;
  border-radius: 999px !important;
  font-weight: 720;
  text-decoration: none;
}
.kw-button-secondary .wp-block-button__link:hover { border-color: var(--kw-green) !important; background: #fff !important; }
.kw-hero-note { margin: 20px 0 0; color: #68736d; font-size: 13px; font-weight: 620; }

.kw-product-preview {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(21,37,28,.09);
  border-radius: 28px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--kw-shadow);
  transform: rotate(1.5deg);
}
.kw-preview-top { height: 58px; padding: 0 18px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--kw-line); font-size: 13px; font-weight: 760; }
.kw-preview-mark { width: 26px; height: 26px; border-radius: 9px; background: var(--kw-ink); color: #fff; display: grid; place-items: center; font-size: 11px; }
.kw-preview-dot { width: 8px; height: 8px; border-radius: 50%; background: #65a77c; margin-left: auto; box-shadow: 0 0 0 4px #e8f3eb; }
.kw-preview-body { padding: 24px; background: linear-gradient(180deg, #fbfcfa, #f3f6f2); }
.kw-preview-title { display: grid; gap: 3px; margin-bottom: 20px; }
.kw-preview-title small, .kw-preview-card small { color: #7a8580; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; font-weight: 760; }
.kw-preview-title strong { font-size: 20px; letter-spacing: -.025em; }
.kw-preview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.kw-preview-card { min-height: 112px; padding: 14px; border: 1px solid #e3e9e4; border-radius: 16px; background: #fff; display: grid; align-content: start; gap: 5px; box-shadow: 0 8px 18px rgba(21,37,28,.04); }
.kw-preview-card strong { font-size: 12px; line-height: 1.35; }
.kw-preview-icon { width: 26px; height: 26px; border-radius: 8px; background: var(--kw-green-pale); color: var(--kw-green-strong); display: grid; place-items: center; font-size: 10px; font-weight: 850; margin-bottom: 6px; }
.kw-preview-row { display: flex; align-items: center; gap: 8px; margin-top: 12px; padding: 12px 14px; background: #eaf2ec; border-radius: 14px; font-size: 11px; color: #536159; }
.kw-preview-row strong { margin-left: auto; color: var(--kw-green-strong); }
.kw-preview-status { width: 7px; height: 7px; background: #68a17a; border-radius: 50%; }

.kw-module-strip { padding: 17px 20px; background: var(--kw-ink); color: #dfe9e2; }
.kw-module-strip p { max-width: var(--kw-content); margin: 0 auto; text-align: center; font-size: 13px; font-weight: 690; letter-spacing: .02em; }
.kw-module-strip span { opacity: .35; margin: 0 10px; }
.kw-section { padding: clamp(78px, 9vw, 126px) 20px; }
.kw-section > * { width: min(100%, var(--kw-content)); margin-left: auto; margin-right: auto; }
.kw-section-title { max-width: 850px; margin-top: 0; margin-bottom: 20px; font-size: clamp(38px, 4.7vw, 62px); line-height: 1.04; letter-spacing: -.045em; font-weight: 770; }
.kw-section > .kw-section-lead { max-width: 760px; margin-left: auto; margin-right: auto; }
.kw-section-product > .kw-eyebrow, .kw-section-product > .kw-section-title, .kw-section-product > .kw-section-lead,
.kw-section-process > .kw-eyebrow, .kw-section-process > .kw-section-title { text-align: center; }
.kw-card-grid { gap: 16px; margin-top: 34px !important; }
.kw-card-grid + .kw-card-grid { margin-top: 16px !important; }
.kw-feature-card {
  height: 100%;
  min-height: 235px;
  padding: 28px;
  border: 1px solid var(--kw-line);
  border-radius: var(--kw-radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(21,37,28,.035);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.kw-feature-card:hover { transform: translateY(-4px); border-color: #cbd8cf; box-shadow: 0 18px 42px rgba(21,37,28,.08); }
.kw-feature-card h3, .kw-process-card h3, .kw-audience-item h3 { margin: 10px 0 10px; font-size: 21px; letter-spacing: -.025em; }
.kw-feature-card p:last-child, .kw-process-card p:last-child, .kw-audience-item p:last-child { margin-bottom: 0; color: #5f6d65; font-size: 15px; }
.kw-card-kicker { margin: 0; color: var(--kw-green); font-size: 12px; font-weight: 840; letter-spacing: .08em; }

.kw-section-audience { background: #eef3ef; }
.kw-section-audience .kw-section-title { font-size: clamp(38px, 4.4vw, 58px); }
.kw-audience-list { display: grid; gap: 12px; }
.kw-audience-item { padding: 22px 24px; border: 1px solid rgba(21,37,28,.08); border-radius: 20px; background: rgba(255,255,255,.74); }
.kw-audience-item h3 { margin-top: 0; }

.kw-section-process { background: #fff; }
.kw-process-grid { gap: 16px; margin-top: 42px !important; }
.kw-process-card { height: 100%; min-height: 245px; padding: 28px; border-radius: 22px; background: #f5f7f4; }
.kw-step { width: 40px; height: 40px; display: grid; place-items: center; margin: 0 0 24px; border-radius: 13px; background: var(--kw-ink); color: #fff; font-weight: 800; }
.kw-centered-actions { justify-content: center; margin-top: 34px; }

.kw-section-platform { position: relative; overflow: hidden; background: var(--kw-sand); }
.kw-section-platform::after { content: ""; position: absolute; right: -80px; bottom: -140px; width: 360px; height: 360px; border: 1px solid rgba(21,37,28,.12); border-radius: 42% 58% 49% 51%; transform: rotate(-18deg); }
.kw-check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.kw-check-list li { position: relative; padding: 16px 18px 16px 52px; border-radius: 16px; background: rgba(255,255,255,.65); font-weight: 650; }
.kw-check-list li::before { content: "✓"; position: absolute; left: 17px; top: 15px; width: 24px; height: 24px; border-radius: 50%; background: var(--kw-green-strong); color: #fff; display: grid; place-items: center; font-size: 13px; }

.kw-final-cta { padding: 96px 20px; background: var(--kw-ink); color: #fff; }
.kw-final-cta-inner { max-width: 900px !important; margin: 0 auto; text-align: center; }
.kw-final-cta .kw-eyebrow { color: #a9d1b8; }
.kw-final-title { margin: 0 0 20px; font-size: clamp(42px, 5vw, 66px); letter-spacing: -.045em; line-height: 1.02; }
.kw-final-cta-inner > p:not(.kw-eyebrow) { color: #c8d4cc; font-size: 18px; }
.kw-button-light .wp-block-button__link { border-radius: 999px !important; background: #fff !important; color: var(--kw-ink) !important; font-weight: 780; min-height: 52px; padding: 0 26px !important; text-decoration: none; }

.kw-footer { padding: 58px 20px 26px; background: #0f1c15; color: #dce5df; }
.kw-footer-main, .kw-footer-bottom { width: min(100%, var(--kw-content)); margin: 0 auto; }
.kw-footer-main { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; padding-bottom: 48px; }
.kw-brand-footer { color: #fff; }
.kw-brand-footer .kw-brand-mark { background: #dce8df; color: var(--kw-ink); }
.kw-footer-brand p { max-width: 360px; color: #98a89e; font-size: 14px; }
.kw-footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.kw-footer-links div { display: grid; align-content: start; gap: 9px; }
.kw-footer-links strong { margin-bottom: 8px; color: #fff; font-size: 13px; }
.kw-footer-links a { color: #aab9b0; text-decoration: none; font-size: 14px; }
.kw-footer-links a:hover { color: #fff; }
.kw-footer-bottom { padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 20px; color: #7f9086; font-size: 12px; }

.kw-page-shell { min-height: 65vh; padding: 76px 20px 100px; }
.kw-content-wrap { width: min(100%, 860px); margin: 0 auto; }
.kw-page-header h1, .kw-not-found h1 { font-size: clamp(42px, 6vw, 68px); letter-spacing: -.045em; line-height: 1.05; }
.kw-page-content { color: var(--kw-ink-soft); }
.kw-404-actions { display: flex; gap: 18px; align-items: center; margin-top: 28px; }

@media (max-width: 1020px) {
  .kw-nav-list { gap: 15px; }
  .kw-nav { gap: 18px; }
  .kw-nav-list a { font-size: 14px; }
  .kw-header-inner { width: min(calc(100% - 28px), var(--kw-content)); }
}

@media (max-width: 900px) {

  .kw-brand-image { height: 40px; max-width: 220px; }
  .kw-brand-claim { font-size: 10px; }
  .kw-header { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .kw-header-inner { min-height: 70px; }
  .kw-menu-toggle {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 0;
    background: transparent;
    color: var(--kw-ink);
    padding: 9px 2px 9px 10px;
    font: inherit;
    font-size: 14px;
    font-weight: 720;
  }
  .kw-menu-icon { width: 26px; height: 20px; display: grid; align-content: center; gap: 6px; }
  .kw-menu-icon span { display: block; height: 2px; border-radius: 2px; background: currentColor; transition: transform .2s ease; }
  .kw-menu-toggle[aria-expanded="true"] .kw-menu-icon span:first-child { transform: translateY(4px) rotate(45deg); }
  .kw-menu-toggle[aria-expanded="true"] .kw-menu-icon span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .kw-nav {
    position: fixed;
    top: 70px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1001;
    margin: 0;
    padding: 24px 22px max(24px, env(safe-area-inset-bottom));
    background: var(--kw-paper);
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 22px;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  body.admin-bar .kw-nav { top: 102px; }
  .kw-nav.is-open { display: flex; }
  .kw-nav-list { display: grid; gap: 0; }
  .kw-nav-list > li { position: static; border-bottom: 1px solid var(--kw-line); }
  .kw-nav-list > .menu-item-has-children::after { display: none; }
  .kw-nav-list > .menu-item-has-children > a { display: block; }
  .kw-nav-list > .menu-item-has-children > a::after { display: none; }
  .kw-nav-list a { display: block; padding: 17px 2px; font-size: 21px; color: var(--kw-ink); }
  .kw-nav-list .sub-menu {
    position: static;
    min-width: 0;
    margin: -4px 0 10px;
    padding: 0 0 4px 16px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .kw-nav-list .sub-menu li { border: 0; }
  .kw-nav-list .sub-menu a {
    padding: 10px 2px;
    color: var(--kw-ink-soft);
    font-size: 17px;
    font-weight: 620;
    white-space: normal;
  }
  .kw-nav-list .sub-menu a:hover,
  .kw-nav-list .sub-menu a:focus-visible { background: transparent; }
  .kw-nav-actions { margin-top: auto; display: grid; gap: 14px; }
  .kw-nav-actions .kw-login-link { text-align: center; padding: 12px; }
  .kw-header-cta { min-height: 52px; }
  .kw-hero-grid, .kw-split { flex-wrap: wrap !important; }
  .kw-hero-grid > .wp-block-column, .kw-split > .wp-block-column { flex-basis: 100% !important; }
  .kw-product-preview { max-width: 620px; margin: 10px auto 0; transform: none; }
  .kw-card-grid, .kw-process-grid { flex-wrap: wrap !important; }
  .kw-card-grid > .wp-block-column, .kw-process-grid > .wp-block-column { flex-basis: calc(50% - 10px) !important; }
  .kw-footer-main { grid-template-columns: 1fr; }
}

@media (max-width: 782px) {
  body.admin-bar .kw-header { top: 46px; }
  body.admin-bar .kw-nav { top: 116px; }
}

@media (max-width: 620px) {
  body.kw-site { font-size: 16px; }
  .kw-header-inner { width: calc(100% - 28px); }
  .kw-brand-name { font-size: 19px; }
  .kw-brand-mark { width: 34px; height: 34px; border-radius: 10px 10px 14px 10px; }
  .kw-menu-toggle-label { display: none; }
  .kw-hero { padding-top: 56px; padding-bottom: 54px; }
  .kw-hero-title { font-size: clamp(38px, 11vw, 46px); line-height: 1.01; letter-spacing: -.045em; }
  .kw-hero-lead { margin-top: 22px; }
  .kw-hero-actions { display: grid !important; }
  .kw-hero-actions .wp-block-button { width: 100%; }
  .kw-hero-actions .wp-block-button__link { width: 100%; }
  .kw-preview-body { padding: 16px; }
  .kw-preview-grid { grid-template-columns: 1fr; }
  .kw-preview-card { min-height: auto; }
  .kw-module-strip p { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 7px; }
  .kw-module-strip span { margin: 0 2px; }
  .kw-section { padding: 72px 18px; }
  .kw-section-title { font-size: 40px; }
  .kw-card-grid, .kw-process-grid { display: grid !important; }
  .kw-card-grid > .wp-block-column, .kw-process-grid > .wp-block-column { flex-basis: 100% !important; }
  .kw-feature-card, .kw-process-card { min-height: 0; }
  .kw-footer { padding-left: 18px; padding-right: 18px; }
  .kw-footer-main { gap: 38px; }
  .kw-footer-links { grid-template-columns: 1fr 1fr; gap: 18px; }
  .kw-footer-bottom { flex-direction: column; }
  .kw-final-cta { padding: 74px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; }
}

/* v1.0.9 — brand lockup, wrapper-aware hero/CTA alignment and preview icon. */
.kw-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.kw-brand-symbol {
  display: block;
  width: auto;
  height: 49px;
  flex: 0 0 auto;
  object-fit: contain;
}
.kw-brand-copy {
  display: grid;
  justify-items: start;
  align-content: center;
  gap: 4px;
  min-width: 0;
}
.kw-brand-wordmark {
  display: block;
  width: auto;
  height: 30px;
  max-width: 200px;
  object-fit: contain;
}
.kw-brand-copy .kw-brand-claim {
  padding-left: 1px;
  color: #68736d;
  font-size: 11px;
  font-weight: 680;
  letter-spacing: .025em;
  line-height: 1.15;
  white-space: nowrap;
}
.kw-brand-footer .kw-brand-copy .kw-brand-claim {
  color: #98a89e;
}

/* WordPress/Gutenberg may insert a `.wp-block-group__inner-container`
   between a full-width section and its first real block. In v1.0.8 the
   inner grid itself was centered, but on installations with that wrapper the
   wrapper remained left-aligned. Center the actual outer stage in both DOM
   variants, then let the inner block fill it. */
.kw-hero > .kw-hero-grid,
.kw-hero > .wp-block-group__inner-container {
  width: min(calc(100% - 80px), var(--kw-content)) !important;
  max-width: var(--kw-content) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.kw-hero > .wp-block-group__inner-container > .kw-hero-grid {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.kw-final-cta > .kw-final-cta-inner,
.kw-final-cta > .wp-block-group__inner-container {
  width: min(calc(100% - 80px), 900px) !important;
  max-width: 900px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}
.kw-final-cta > .wp-block-group__inner-container > .kw-final-cta-inner {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: center !important;
}

/* Use the actual Kobelwerk application icon in the illustrative product
   preview instead of the temporary letter K. The text remains in the stored
   Gutenberg markup as a harmless fallback if CSS is unavailable. */
.kw-preview-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background-color: transparent;
  background-image: url('../brand/kobelwerk-app-icon-dark.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: transparent;
  font-size: 0;
  overflow: hidden;
}

@media (max-width: 900px) {
  .kw-brand-symbol { height: 45px; }
  .kw-brand-wordmark { height: 27px; max-width: 180px; }
  .kw-brand-copy .kw-brand-claim { font-size: 10px; }
  .kw-hero > .kw-hero-grid,
  .kw-hero > .wp-block-group__inner-container,
  .kw-final-cta > .kw-final-cta-inner,
  .kw-final-cta > .wp-block-group__inner-container {
    width: 100% !important;
  }
}

@media (max-width: 620px) {
  .kw-brand-lockup { gap: 8px; }
  .kw-brand-symbol { height: 41px; }
  .kw-brand-wordmark { height: 24px; max-width: 158px; }
  .kw-brand-copy { gap: 3px; }
  .kw-brand-copy .kw-brand-claim { font-size: 9px; letter-spacing: .015em; }
}


/* v1.0.10 — neutral homepage content, availability states and requirements CTA. */
.kw-section-audience > .kw-eyebrow,
.kw-section-audience > .kw-section-title,
.kw-section-audience > .kw-section-lead,
.kw-section-process > .kw-section-lead {
  text-align: center;
}
.kw-audience-grid {
  gap: 16px;
  margin-top: 38px !important;
  align-items: stretch;
}
.kw-audience-grid > .wp-block-column { display: flex; }
.kw-audience-card {
  width: 100%;
  min-height: 285px;
  padding: 28px;
  border: 1px solid rgba(21,37,28,.09);
  border-radius: var(--kw-radius);
  background: rgba(255,255,255,.78);
  box-shadow: 0 10px 30px rgba(21,37,28,.035);
}
.kw-audience-card-available {
  border-color: rgba(47,96,69,.28);
  background: #fff;
  box-shadow: 0 18px 46px rgba(47,96,69,.08);
}
.kw-audience-card h3 {
  margin: 18px 0 12px;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -.03em;
}
.kw-audience-card > p:last-child {
  margin-bottom: 0;
  color: #5f6d65;
  font-size: 15px;
  line-height: 1.6;
}
.kw-status-badge {
  display: inline-flex;
  width: auto !important;
  margin: 0 !important;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 820;
  line-height: 1;
  letter-spacing: .045em;
  text-transform: uppercase;
}
.kw-status-available {
  background: #dfeee4;
  color: var(--kw-green-strong);
}
.kw-status-soon {
  background: #eceeea;
  color: #68736d;
}
.kw-section-contact {
  background: #f4f1e9;
}
.kw-contact-panel {
  width: min(100%, var(--kw-content)) !important;
  max-width: var(--kw-content) !important;
  padding: clamp(38px, 6vw, 64px);
  border: 1px solid rgba(21,37,28,.09);
  border-radius: 30px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 20px 60px rgba(21,37,28,.06);
  text-align: center;
}
.kw-contact-panel .kw-section-title {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.kw-contact-panel .kw-section-lead {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.kw-contact-note {
  max-width: 680px;
  margin: 18px auto 0;
  color: #6b776f;
  font-size: 14px;
}

@media (max-width: 900px) {
  .kw-audience-grid { flex-wrap: wrap !important; }
  .kw-audience-grid > .wp-block-column { flex-basis: calc(50% - 10px) !important; }
}

@media (max-width: 620px) {
  .kw-audience-grid { display: grid !important; }
  .kw-audience-grid > .wp-block-column { flex-basis: 100% !important; }
  .kw-audience-card { min-height: 0; padding: 24px; }
  .kw-contact-panel { padding: 30px 22px; border-radius: 24px; }
}


/* v1.0.11 — widen the special-requirements panel to the main content axis while keeping readable text line lengths. */

/* v1.0.12 — dedicated audience landing pages and linked availability cards. */
.kw-card-link {
  margin-top: 20px !important;
  margin-bottom: 0 !important;
}
.kw-card-link a {
  color: var(--kw-green-strong);
  font-size: 14px;
  font-weight: 780;
  text-decoration: none;
}
.kw-card-link a:hover { text-decoration: underline; text-underline-offset: 4px; }
.kw-audience-card > .kw-card-link:last-child { margin-top: auto !important; padding-top: 18px; }
.kw-audience-card { display: flex; flex-direction: column; }

.kw-audience-landing { overflow: hidden; }
.kw-landing-hero {
  position: relative;
  padding: clamp(86px, 9vw, 126px) 20px;
  background:
    radial-gradient(circle at 83% 30%, rgba(197,226,210,.58), transparent 36%),
    linear-gradient(135deg, #fbfaf6 0%, #f7f9f5 60%, #eef5ef 100%);
}
.kw-landing-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 70px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(21,37,28,.1);
  border-radius: 50%;
  pointer-events: none;
}
.kw-landing-hero > .wp-block-group__inner-container {
  position: relative;
  z-index: 1;
  width: min(100%, var(--kw-content));
  margin-left: auto;
  margin-right: auto;
}
.kw-landing-hero > .wp-block-group__inner-container > .kw-landing-hero-grid { width: 100%; }
.kw-landing-hero-grid {
  position: relative;
  z-index: 1;
  width: min(100%, var(--kw-content));
  margin: 0 auto;
  gap: clamp(44px, 6vw, 82px);
}
.kw-landing-title {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--kw-ink);
  font-size: clamp(52px, 6.5vw, 82px);
  font-weight: 790;
  line-height: .99;
  letter-spacing: -.055em;
}
.kw-landing-lead {
  max-width: 720px;
  margin: 28px 0 30px;
  color: var(--kw-ink-soft);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.6;
}
.kw-landing-hero .kw-status-badge + .kw-landing-title { margin-top: 18px; }
.kw-landing-status-card {
  position: relative;
  padding: clamp(30px, 4vw, 44px);
  border: 1px solid rgba(21,37,28,.1);
  border-radius: 28px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 24px 70px rgba(21,37,28,.09);
}
.kw-landing-status-card-available { border-color: rgba(47,96,69,.25); }
.kw-landing-status-card h2 {
  margin: 18px 0 12px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.kw-landing-status-card > p:not(.kw-status-badge):not(.kw-card-kicker) { color: #5d6a63; line-height: 1.6; }
.kw-compact-check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.kw-compact-check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--kw-ink);
  font-size: 14px;
  font-weight: 680;
}
.kw-compact-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--kw-green);
  color: #fff;
  font-size: 11px;
}
.kw-landing-section > .kw-eyebrow,
.kw-landing-section > .kw-section-title,
.kw-landing-section > .kw-section-lead { text-align: center; }
.kw-landing-soon-section { background: #eef3ef; }
.kw-mini-cta {
  padding: 30px;
  border: 1px solid rgba(21,37,28,.09);
  border-radius: 24px;
  background: rgba(255,255,255,.82);
}
.kw-mini-cta h3 {
  margin: 0 0 12px;
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: -.03em;
}
.kw-mini-cta p { color: #5f6d65; line-height: 1.6; }
.kw-card-grid-two > .wp-block-column { flex-basis: calc(50% - 8px) !important; }

@media (max-width: 900px) {
  .kw-landing-hero-grid { flex-wrap: wrap !important; }
  .kw-landing-hero-grid > .wp-block-column { flex-basis: 100% !important; }
  .kw-landing-status-card { max-width: 680px; }
}

@media (max-width: 620px) {
  .kw-landing-hero { padding: 62px 18px 70px; }
  .kw-landing-title { font-size: clamp(42px, 12vw, 52px); }
  .kw-landing-lead { margin-top: 22px; }
  .kw-landing-status-card { padding: 26px 22px; border-radius: 24px; }
  .kw-card-grid-two > .wp-block-column { flex-basis: 100% !important; }
}



/* v1.0.14 – products landing page */
.kw-products-more { margin-top: 34px !important; }
.kw-product-landing .kw-landing-status-card .kw-card-kicker { margin-top: 0; }
.kw-product-landing .kw-section-product .kw-card-grid { margin-top: 22px; }
.kw-product-landing .kw-section-product .kw-feature-card { height: 100%; }

/* v1.0.15 – keep the long products hero word intact on desktop */
.kw-landing-title {
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}
@media (min-width: 781px) {
  .kw-landing-title .kw-keep-word { white-space: nowrap; }
}
