@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:opsz,wght@8..60,400;8..60,600;8..60,700&family=Inter:wght@400;500;600;700&display=swap');

html { scroll-behavior: smooth; }

/* Highlight targeted section with a brief flash */
:target {
  scroll-margin-top: 24px;
  animation: anchor-highlight 1.5s ease;
}
@keyframes anchor-highlight {
  0%   { background-color: #fef3c7; }
  100% { background-color: transparent; }
}

:root {
  --text: #323232;
  --text-secondary: #505050;
  --text-muted: #8a8a8a;
  --bg: #ffffff;
  --bg-sidebar: #fafafa;
  --border: #e3e3e3;
  --accent: #64943E;
  --accent-dark: #374030;
  --active-bar: #374030;
  --dark-bg: #323232;
  --light-bg: #F1F3F4;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

/* ── SITE HEADER ── */
.site-header {
  background: var(--dark-bg);
  color: #fff;
  padding: 0 32px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
}
.site-header-logo {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 2px;
  letter-spacing: -0.02em;
}
.site-header-logo .logo-ops {
  color: #fff;
}
.site-header-logo .logo-pilot {
  color: var(--accent);
}
.site-header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-header-nav a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  transition: color .15s;
}
.site-header-nav a:hover {
  color: #fff;
}
.site-header-nav .header-btn {
  background: var(--accent);
  color: #fff;
  padding: 6px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  transition: background .15s;
}
.site-header-nav .header-btn:hover {
  background: var(--accent-dark);
}

/* Header search bar */
.header-search {
  flex: 1;
  max-width: 380px;
  position: relative;
  margin: 0 24px;
}
.header-search input {
  width: 100%;
  padding: 7px 12px 7px 32px;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 6px;
  background: rgba(255,255,255,.1) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23aaa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E") 9px center no-repeat;
  color: #fff;
  outline: none;
  transition: border-color .15s, background .15s;
}
.header-search input::placeholder {
  color: rgba(255,255,255,.45);
}
.header-search input:focus {
  border-color: var(--accent);
  background-color: rgba(255,255,255,.15);
}
.header-search-results {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  z-index: 300;
  max-height: 400px;
  overflow-y: auto;
}
.header-search-results .search-result-item {
  display: block;
  padding: 10px 14px;
  text-decoration: none;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: background .1s;
}
.header-search-results .search-result-item:last-child { border-bottom: none; }
.header-search-results .search-result-item:hover { background: #f5f5f5; }
.header-search-results .sr-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 2px;
}
.header-search-results .sr-desc {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header-search-results .search-no-results {
  padding: 14px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

/* ── VARIABLE FILTER BAR (template-variables page only) ── */
.var-filter-bar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  position: sticky;
  top: 52px;
  z-index: 100;
}
.var-filter-bar input {
  width: 100%;
  padding: 10px 12px 10px 36px;
  font-size: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--light-bg);
  color: var(--text);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.var-filter-bar input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(100,148,62,.15);
}
.var-filter-bar input::placeholder { color: var(--text-muted); }
.var-filter-input-wrap {
  position: relative;
}
.var-filter-icon {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}
.var-filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.var-tag {
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  color: var(--text-muted);
  cursor: pointer;
  transition: all .15s;
}
.var-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.var-tag.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.var-filter-count {
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-muted);
}
/* Filter results panel */
.var-filter-results {
  display: none;
  margin-top: 12px;
  max-height: 420px;
  overflow-y: auto;
  border-top: 1px solid var(--border);
  padding-top: 10px;
}
.vfr-group { margin-bottom: 10px; }
.vfr-group-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--accent);
  padding: 4px 0;
}
.vfr-item {
  display: grid;
  grid-template-columns: minmax(180px, auto) 1fr auto;
  gap: 10px;
  align-items: baseline;
  padding: 6px 8px;
  border-radius: 6px;
  transition: background .1s;
}
.vfr-item:hover { background: var(--light-bg); }
.vfr-var {
  font-size: 13px;
  color: var(--accent-dark);
  font-weight: 500;
}
.vfr-desc {
  font-size: 13px;
  color: var(--text);
}
.vfr-example {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
  text-align: right;
}
.vfr-empty {
  padding: 16px 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}
/* hidden rows / sections during filter */
.var-section-hidden { display: none !important; }
.var-row-hidden { display: none !important; }
.var-highlight { background: rgba(100,148,62,.12); border-radius: 2px; }

/* ── SITE FOOTER ── */
.site-footer {
  background: var(--dark-bg);
  color: rgba(255,255,255,.6);
  padding: 32px 40px;
  margin-left: 260px;
  font-size: 13px;
}
.site-footer-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}
.site-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.site-footer-brand .footer-logo {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.site-footer-brand .footer-logo .logo-pilot {
  color: var(--accent);
}
.site-footer-brand p {
  margin: 0;
  font-size: 12.5px;
  color: rgba(255,255,255,.45);
  max-width: 280px;
  line-height: 1.5;
}
.site-footer-links {
  display: flex;
  gap: 40px;
}
.site-footer-links div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.site-footer-links .footer-heading {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.35);
  margin-bottom: 2px;
}
.site-footer-links a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: 13px;
  transition: color .15s;
}
.site-footer-links a:hover {
  color: #fff;
}
.site-footer-bottom {
  max-width: 1060px;
  margin: 20px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 12px;
  color: rgba(255,255,255,.3);
  text-align: center;
}

/* ── SIDEBAR ── */
.sidebar {
  position: fixed;
  top: 52px; left: 0;
  width: 260px;
  height: calc(100vh - 52px);
  background: var(--bg-sidebar);
  border-right: 1px solid var(--border);
  overflow-y: auto;
  z-index: 100;
  padding: 0 0 40px 0;
  transition: transform .3s;
}
.sidebar-header {
  padding: 24px 20px 16px;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0;
  background: var(--bg-sidebar);
  z-index: 2;
}
.sidebar-header .logo {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  cursor: pointer;
}
.sidebar-header .logo .back-arrow {
  font-size: 16px;
  margin-right: 2px;
}

.sidebar nav { padding: 12px 0; }
.sidebar nav a {
  display: block;
  padding: 6px 20px 6px 18px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 400;
  border-left: 3px solid transparent;
  transition: all .15s;
  line-height: 1.5;
}
.sidebar nav a:hover {
  color: var(--text);
  background: rgba(0,0,0,.03);
}
.sidebar nav a.active {
  font-weight: 600;
  color: var(--text);
  border-left-color: var(--active-bar);
  background: transparent;
}

.sidebar nav .section-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  padding: 20px 20px 6px 18px;
  cursor: default;
  display: block;
}

/* ── MAIN ── */
.main {
  margin-left: 260px;
  min-height: calc(100vh - 52px);
  margin-top: 52px;
  background: var(--bg);
}
.hamburger {
  display: none;
  background: none; border: none;
  font-size: 24px; cursor: pointer; color: var(--text);
}

.content {
  max-width: 1060px;
  margin: 0 auto;
  padding: 52px 56px 100px;
}

/* ── SECTION HEADER ── */
.section-hero {
  background: none;
  color: var(--text);
  padding: 0;
  border-radius: 0;
  margin-bottom: 32px;
  border: none;
}
.section-hero h1 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.section-hero p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 0;
}
.section-hero::after {
  content: '';
  display: block;
  border-bottom: 1px solid var(--border);
  margin-top: 24px;
}
.last-updated {
  font-size: 13px;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 8px;
}

/* ── HEADINGS ── */
h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  margin: 48px 0 12px;
  color: var(--text);
}
h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 32px 0 8px;
  color: var(--text);
}
h4 {
  font-size: 15px;
  font-weight: 600;
  margin: 20px 0 6px;
}

p { margin: 0 0 14px; }
ul, ol { margin: 0 0 14px 22px; }
li { margin-bottom: 4px; }

/* ── SCREENSHOTS ── */
.screenshot {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 28px 0 16px;
  box-shadow: none;
}
.screenshot .placeholder-icon { display: none; }
.screenshot .placeholder-text {
  color: var(--text-muted);
  font-size: 13px;
  font-style: italic;
  padding: 32px 0;
}
.screenshot img {
  max-width: 100%;
  width: auto;
  display: block;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}
.screenshot-caption,
.screenshot figcaption {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  text-align: left;
  line-height: 1.5;
}
.screenshot.has-image { padding: 0; text-align: left; }
.screenshot.has-image .placeholder-icon,
.screenshot.has-image .placeholder-text { display: none; }

/* ── TABLES ── */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 24px;
  font-size: 14px;
}
th {
  background: var(--bg-sidebar);
  color: var(--text);
  font-weight: 600;
  text-align: left;
  padding: 10px 14px;
  border-bottom: 2px solid var(--border);
}
td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}
tr:hover td { background: #fafafa; }

/* ── CALLOUTS ── */
.callout {
  padding: 16px 20px;
  border-radius: 4px;
  margin: 16px 0 20px;
  font-size: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.callout .callout-icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; width: 20px; height: 20px; }
.callout .callout-icon svg { width: 18px; height: 18px; flex-shrink: 0; }
.callout-tip { background: #f0f7ef; border-left: 3px solid var(--accent); }
.callout-note { background: #edf4fc; border-left: 3px solid var(--accent); }
.callout-warning { background: #fef7ed; border-left: 3px solid #e68619; }

/* ── STEPS ── */
.steps {
  counter-reset: step;
  margin: 16px 0 28px;
}
.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 4px;
  padding: 8px 0;
  background: none;
  border: none;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: #e8e8e8;
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
  margin-top: 2px;
}
.step-content { flex: 1; line-height: 1.6; font-size: 15px; }
.step-content strong { font-weight: 600; }

/* ── CODE ── */
code {
  background: #f4f4f4;
  padding: 2px 5px;
  border-radius: 3px;
  font-size: 13px;
  color: #c7254e;
}
pre {
  background: #1e293b;
  color: #e2e8f0;
  padding: 16px 18px;
  border-radius: 4px;
  overflow-x: auto;
  margin: 12px 0 20px;
  font-size: 13px;
  line-height: 1.6;
}
pre code { background: none; color: inherit; padding: 0; }

/* ── QUICK LINKS ── */
.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin: 20px 0 32px;
}
.quick-link {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 22px;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s, transform .15s;
  text-decoration: none;
  color: var(--text);
  display: block;
}
.quick-link:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(100,148,62,.12);
  transform: translateY(-2px);
}
.quick-link .ql-icon { font-size: 26px; margin-bottom: 8px; }
.quick-link .ql-title { font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.quick-link .ql-desc { font-size: 13.5px; color: var(--text-secondary); line-height: 1.5; }
.quick-link .ql-desc a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.quick-link .ql-desc a:hover {
  color: var(--accent-dark);
}
.quick-link .ql-thumb {
  margin-top: 12px;
  width: 100%;
  border-radius: 6px;
  border: 1px solid var(--border);
  box-shadow: 0 1px 6px rgba(0,0,0,.05);
  display: block;
}

/* ── BADGES ── */
.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 600;
}
.badge-green { background: #dcfce7; color: #166534; }
.badge-yellow { background: #fef9c3; color: #854d0e; }
.badge-orange { background: #fed7aa; color: #9a3412; }
.badge-red { background: #fecaca; color: #991b1b; }
.badge-blue { background: #dbeafe; color: #1e40af; }
.badge-gray { background: #f3f4f6; color: #374151; }

/* ── SIDEBAR TREE NAV ── */
.nav-tree {
  margin: 0;
}
.nav-tree > a {
  display: block;
  padding: 6px 20px 6px 18px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 400;
  border-left: 3px solid transparent;
  transition: all .15s;
  line-height: 1.5;
}
.nav-tree > a:hover {
  color: var(--text);
  background: rgba(0,0,0,.03);
}
.nav-tree > a.active {
  font-weight: 600;
  color: var(--text);
  border-left-color: var(--active-bar);
  background: transparent;
}
.tree-branch {
  padding-left: 0;
}
.tree-node {
  position: relative;
}
.tree-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 20px 4px 28px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  user-select: none;
  border-left: 3px solid transparent;
  transition: all .15s;
  text-decoration: none;
}
.tree-toggle:hover {
  color: var(--text);
  background: rgba(0,0,0,.03);
}
.tree-arrow {
  display: inline-block;
  font-size: 10px;
  transition: transform .2s;
  width: 12px;
  text-align: center;
  flex-shrink: 0;
}
.tree-node.open > .tree-toggle .tree-arrow {
  transform: rotate(90deg);
}
.tree-children {
  display: none;
  padding-left: 12px;
}
.tree-node.open > .tree-children {
  display: block;
}
.tree-children a {
  display: block;
  padding: 3px 20px 3px 36px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 400;
  border-left: 3px solid transparent;
  transition: all .15s;
  line-height: 1.6;
}
.tree-children a:hover {
  color: var(--text);
  background: rgba(0,0,0,.03);
}
/* Deeper nesting */
.tree-children .tree-toggle {
  padding-left: 36px;
  font-size: 12.5px;
}
.tree-children .tree-children a {
  padding-left: 48px;
  font-size: 12px;
}
.tree-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 20px;
}

/* ── FEATURE SHOWCASE HERO ── */
.feature-showcase {
  position: relative;
  border-radius: 20px;
  padding: 40px 24px 48px;
  margin-bottom: 48px;
  text-align: center;
  background: linear-gradient(135deg, rgba(100,148,62,.05) 0%, transparent 30%, transparent 70%, rgba(100,148,62,.05) 100%);
  border: 1px solid rgba(100,148,62,.10);
  overflow: visible;
}
.feature-showcase .blob-tr,
.feature-showcase .blob-bl {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.feature-showcase .blob-tr {
  top: -70px; right: -50px;
  background: radial-gradient(circle, rgba(100,148,62,.10) 0%, transparent 70%);
}
.feature-showcase .blob-bl {
  bottom: -70px; left: -50px;
  background: radial-gradient(circle, rgba(100,148,62,.08) 0%, transparent 70%);
}
.showcase-logo {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
  z-index: 1;
}
.showcase-logo-dot {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}
.showcase-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.25;
  position: relative;
  z-index: 1;
}
.showcase-subtitle {
  font-size: 14.5px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.showcase-body {
  position: relative;
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
  z-index: 1;
}
.showcase-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  border: 1px solid var(--border);
}

/* Floating annotation pills around the showcase */
.showcase-annotation {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 5px 14px 5px 10px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text);
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
  white-space: nowrap;
  z-index: 3;
  cursor: default;
  transition: transform .2s, box-shadow .2s;
}
.showcase-annotation:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,.10);
}
.showcase-annotation .ann-icon {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* Tooltip popup on hover */
.showcase-annotation[data-tip]::before {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a2e;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.5;
  white-space: normal;
  text-align: center;
  min-width: 160px;
  max-width: 220px;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
  z-index: 20;
}
.showcase-annotation[data-tip]:hover::before {
  opacity: 1;
}

/* connector lines pointing toward screenshot */
.showcase-annotation::after {
  content: '';
  position: absolute;
  background: var(--accent);
  height: 2px;
  border-radius: 1px;
  opacity: .40;
}
.ann-left::after {
  left: 100%;
  top: 50%;
  width: var(--ann-w, 60px);
  transform-origin: 0% 50%;
}
.ann-right::after {
  right: 100%;
  top: 50%;
  width: var(--ann-w, 60px);
  transform-origin: 100% 50%;
}
.ann-pos-tl.ann-left::after  { transform: rotate(var(--ann-rot, 20deg)); }
.ann-pos-ml.ann-left::after  { transform: rotate(var(--ann-rot, 4deg)); }
.ann-pos-bl.ann-left::after  { transform: rotate(var(--ann-rot, -20deg)); }
.ann-pos-tr.ann-right::after { transform: rotate(var(--ann-rot, -20deg)); }
.ann-pos-mr.ann-right::after { transform: rotate(var(--ann-rot, -4deg)); }
.ann-pos-br.ann-right::after { transform: rotate(var(--ann-rot, 20deg)); }
/* custom: no preset position — set top/bottom/left/right via inline style */
.ann-pos-custom::after       { transform: rotate(var(--ann-rot, 0deg)); }

/* common positions (relative to .feature-showcase) */
.ann-pos-tl { top: 18%; left: 2%; }
.ann-pos-ml { top: 42%; left: 0; }
.ann-pos-bl { bottom: 16%; left: 2%; }
.ann-pos-tr { top: 18%; right: 2%; }
.ann-pos-mr { top: 46%; right: 0; }
.ann-pos-br { bottom: 16%; right: 2%; }
.ann-pos-tc { top: 8%; left: 50%; transform: translateX(-50%); }

@media (max-width: 1100px) {
  .showcase-annotation { display: none; }
  .showcase-body { max-width: 100%; }
}

/* ── HOVER PREVIEW POPUP ── */
.hover-preview {
  position: relative;
  display: inline;
  cursor: help;
  border-bottom: 1.5px dashed var(--accent);
  color: var(--accent);
  font-weight: 500;
}
.hover-preview .preview-popup {
  display: none;
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 300;
  pointer-events: none;
}
.hover-preview .preview-popup img {
  max-width: 340px;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  border: 1px solid var(--border);
}
.hover-preview .preview-popup .popup-label {
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  font-style: italic;
}
.hover-preview:hover .preview-popup {
  display: block;
}
/* flip popup above/below if near top */
.hover-preview.popup-below .preview-popup {
  bottom: auto;
  top: calc(100% + 10px);
}

/* ── MOBILE ── */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 99;
}

@media (max-width: 1100px) {
  .content { max-width: 100%; padding: 48px 40px 80px; }
}

@media (max-width: 768px) {
  .sidebar { transform: translateX(-100%); }
  .sidebar.open { transform: translateX(0); }
  .sidebar-overlay.open { display: block; }
  .main { margin-left: 0; }
  .hamburger { display: block; position: fixed; top: 64px; left: 12px; z-index: 50; }
  .content { padding: 48px 20px 60px; }
  .section-hero h1 { font-size: 28px; }
  h2 { font-size: 21px; }
  .quick-links { grid-template-columns: 1fr; }
  .site-header-nav a:not(.header-btn) { display: none; }
  .header-search { max-width: 200px; margin: 0 12px; }
  .site-footer { margin-left: 0; padding: 24px 20px; }
  .site-footer-inner { flex-direction: column; gap: 20px; }
  .site-footer-links { gap: 24px; }
}

/* ══════════════════════════════════════════
   PRO SHOWCASE — Multi-image grid showcases
   ══════════════════════════════════════════ */

/* Container */
.pro-showcase {
  position: relative;
  border-radius: 20px;
  padding: 40px 28px 44px;
  margin: 28px 0 48px;
  background: linear-gradient(135deg, rgba(100,148,62,.04) 0%, #fafffe 30%, #fafffe 70%, rgba(100,148,62,.04) 100%);
  border: 1px solid rgba(100,148,62,.12);
  overflow: hidden;
}
.pro-showcase::before {
  content: '';
  position: absolute;
  top: -100px; right: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100,148,62,.08) 0%, transparent 70%);
  pointer-events: none;
}
.pro-showcase::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100,148,62,.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Header */
.pro-showcase-header {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.pro-showcase-logo {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 8px;
}
.pro-showcase-logo::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
.pro-showcase-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.25;
}
.pro-showcase-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto;
}

/* Image grid layouts */
.pro-showcase-grid {
  display: grid;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.pro-showcase-grid.cols-2 {
  grid-template-columns: 1fr 1fr;
}
.pro-showcase-grid.cols-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.pro-showcase-grid.cols-1 {
  grid-template-columns: 1fr;
  max-width: 600px;
  margin: 0 auto;
}
/* Featured layout: 1 large + 2 small */
.pro-showcase-grid.featured {
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
}
.pro-showcase-grid.featured .pro-card:first-child {
  grid-row: 1 / 3;
}

/* Card */
.pro-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: transform .2s, box-shadow .2s;
}
.pro-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,.10);
}
.pro-card-img {
  width: 100%;
  display: block;
  border-bottom: 1px solid var(--border);
}
.pro-card-body {
  padding: 14px 16px 16px;
}
.pro-card-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 4px;
}
.pro-card-label::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.pro-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Flow showcase — horizontal step flow */
.pro-flow {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative;
  z-index: 1;
}
.pro-flow-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.pro-flow-step + .pro-flow-step::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 10px solid var(--accent);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  opacity: .5;
}
.pro-flow-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
  border: 2px solid;
}
.pro-flow-badge.when { background: #f0fdf4; color: var(--accent); border-color: #c5ddb4; }
.pro-flow-badge.if   { background: #fefce8; color: #a16207; border-color: #fde68a; }
.pro-flow-badge.then { background: #eff6ff; color: #2563eb; border-color: #bfdbfe; }
.pro-flow-badge.step-num { background: #f3f4f6; color: #374151; border-color: #e5e7eb; }

.pro-flow-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
  width: 100%;
  transition: transform .2s;
}
.pro-flow-card:hover { transform: translateY(-2px); }
.pro-flow-card img {
  width: 100%;
  display: block;
}
.pro-flow-card .pro-card-body {
  padding: 10px 12px 12px;
}

/* Single featured image with side annotations */
.pro-showcase-single {
  display: flex;
  gap: 28px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.pro-showcase-single .pro-side-labels {
  flex: 0 0 180px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pro-showcase-single .pro-main-img {
  flex: 1;
  min-width: 0;
}
.pro-showcase-single .pro-main-img img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
}
.pro-side-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text);
  line-height: 1.45;
}
.pro-side-label::before {
  content: '';
  width: 8px; height: 8px;
  min-width: 8px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 3px;
}
.pro-side-label strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}
.pro-side-label span {
  font-weight: 400;
  color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 1100px) {
  .pro-showcase-grid.cols-3 { grid-template-columns: 1fr 1fr; }
  .pro-showcase-grid.featured { grid-template-columns: 1fr; }
  .pro-showcase-grid.featured .pro-card:first-child { grid-row: auto; }
  .pro-flow { flex-direction: column; gap: 20px; }
  .pro-flow-step + .pro-flow-step::before { display: none; }
  .pro-showcase-single { flex-direction: column; }
  .pro-showcase-single .pro-side-labels { flex: none; flex-direction: row; flex-wrap: wrap; gap: 12px; }
}
@media (max-width: 768px) {
  .pro-showcase { padding: 28px 16px 32px; }
  .pro-showcase-grid.cols-2,
  .pro-showcase-grid.cols-3 { grid-template-columns: 1fr; }
  .pro-showcase-title { font-size: 22px; }
}

/* ── SIDEBAR SEARCH ── */
.sidebar-search {
  padding: 10px 14px 8px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
#doc-search {
  width: 100%;
  padding: 7px 10px 7px 30px;
  font-size: 13px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238a8a8a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E") 8px center no-repeat;
  color: var(--text);
  outline: none;
  transition: border-color .15s;
}
#doc-search:focus { border-color: var(--accent); }
#doc-search::placeholder { color: var(--text-muted); }

.search-results {
  position: absolute;
  top: calc(100% - 8px);
  left: 0; right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.10);
  z-index: 200;
  max-height: 360px;
  overflow-y: auto;
}
.search-result-item {
  display: block;
  padding: 10px 14px;
  text-decoration: none;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: background .1s;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: #f5f5f5; }
.sr-section {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-right: 4px;
}
.sr-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 2px;
}
.sr-desc {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-no-results {
  padding: 14px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

/* ── PREV / NEXT PAGE NAVIGATION ── */
.page-nav {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 36px 0 0;
  margin-top: 56px;
  border-top: 2px solid var(--border);
  gap: 16px;
  max-width: 100%;
}
.page-nav-btn {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  background: var(--bg);
  transition: border-color .2s, box-shadow .2s, background .2s, transform .15s;
  min-width: 160px;
}
.page-nav-btn .nav-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--muted);
}
.page-nav-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: #f4f8f1;
  box-shadow: 0 4px 14px rgba(100,148,62,.12);
  transform: translateY(-2px);
}
.page-nav-btn:hover .nav-label {
  color: var(--accent);
}
.page-nav-btn.disabled {
  visibility: hidden;
  pointer-events: none;
}
.page-nav-prev { margin-right: auto; text-align: left; }
.page-nav-next { margin-left: auto; text-align: right; }
@media (max-width: 768px) {
  .page-nav { flex-direction: column; align-items: stretch; gap: 10px; }
  .page-nav-btn { min-width: 0; }
  .page-nav-prev, .page-nav-next { margin: 0; text-align: center; }
}

/* ═══════════════════════════════════════════
   LANDING PAGE — ported from React design
   ═══════════════════════════════════════════ */

/* -- Hero badge -- */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(100,148,62,.1);
  border: 1px solid rgba(100,148,62,.2);
  margin-bottom: 20px;
}

/* -- Hero CTA buttons -- */
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .15s, box-shadow .2s, background .2s;
}
.btn-hero:hover { transform: translateY(-2px); }
.btn-hero-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(100,148,62,.25);
}
.btn-hero-primary:hover {
  background: #578434;
  box-shadow: 0 6px 24px rgba(100,148,62,.30);
}
.btn-hero-secondary {
  background: var(--bg);
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-hero-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* -- Floating preview card -- */
.preview-card-wrap {
  margin: 48px auto 0;
  max-width: 960px;
}
.preview-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(0,0,0,.08);
  background: var(--bg);
}
.preview-card-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  background: var(--dark-bg);
  font-size: 12px;
  color: rgba(255,255,255,.55);
}
.preview-dot { width: 10px; height: 10px; border-radius: 50%; }
.preview-dot-r { background: #ff5f57; }
.preview-dot-y { background: #febc2e; }
.preview-dot-g { background: #28c840; }
.preview-card-bar span:last-child { margin-left: auto; margin-right: auto; }
.preview-card-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.preview-pane {
  background: var(--bg);
  padding: 20px;
}
.preview-pane h4 {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--text);
}
.preview-pane h4 svg { color: var(--accent); }

/* metric grid */
.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}
.metric-box {
  background: var(--light-bg);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}
.metric-box span { display: block; font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .4px; }
.metric-box strong { font-size: 18px; color: var(--text); }

/* mini chart */
.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 36px;
}
.mini-chart span {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: var(--accent);
  opacity: .35;
}
.mini-chart span:nth-child(1) { height: 40%; }
.mini-chart span:nth-child(2) { height: 65%; }
.mini-chart span:nth-child(3) { height: 50%; }
.mini-chart span:nth-child(4) { height: 80%; }
.mini-chart span:nth-child(5) { height: 55%; opacity: .6; }
.mini-chart span:nth-child(6) { height: 90%; opacity: .7; }
.mini-chart span:nth-child(7) { height: 70%; opacity: .5; }

/* flow list */
.flow-list { display: flex; flex-direction: column; gap: 6px; }
.flow-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12.5px;
  color: var(--text-muted);
  background: var(--light-bg);
}
.flow-item-active { color: var(--text); background: rgba(100,148,62,.08); }
.flow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}
.flow-item-active .flow-dot { background: var(--accent); }

/* pill group */
.pill-group { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; }
.pill-tag {
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  background: rgba(100,148,62,.1);
  color: var(--accent);
}

/* -- Feature cards with icons -- */
.lp-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.lp-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color .2s, box-shadow .2s, transform .15s;
}
.lp-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(100,148,62,.10);
  transform: translateY(-3px);
}
.lp-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(100,148,62,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}
.lp-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.lp-card > p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 14px;
}
.lp-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lp-card-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}
.lp-card-list li svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

/* -- Spotlight alternating rows -- */
.lp-spotlight { margin-top: 56px; }
.lp-spotlight-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.lp-spotlight-row:last-child { border-bottom: 1px solid var(--border); }
.lp-spotlight-row.reverse .lp-spotlight-img { order: 2; }
.lp-spotlight-row.reverse .lp-spotlight-text { order: 1; }
.lp-spotlight-img img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.lp-spotlight-text .lp-eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--accent);
  margin-bottom: 8px;
}
.lp-spotlight-text h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.lp-spotlight-text p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* -- FAQ accordion -- */
.lp-faq { margin-top: 56px; }
.lp-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.lp-faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .2s;
}
.lp-faq-item[open] { border-color: var(--accent); }
.lp-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.lp-faq-q::-webkit-details-marker { display: none; }
.lp-faq-marker {
  font-size: 20px;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform .2s;
}
.lp-faq-item[open] .lp-faq-marker { transform: rotate(45deg); color: var(--accent); }
.lp-faq-a {
  padding: 0 20px 16px;
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* -- CTA section -- */
.lp-cta {
  text-align: center;
  padding: 64px 0 48px;
  margin-top: 56px;
  border-top: 2px solid var(--border);
}
.lp-cta h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.lp-cta > p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}
.lp-cta .btn-hero { margin: 0 auto; }
.lp-support-text {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
}
.lp-support-text a { color: var(--accent); }

/* -- Section header reusable -- */
.lp-section-header { margin-bottom: 8px; }
.lp-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--accent);
  margin-bottom: 8px;
}
.lp-section-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.lp-section-sub {
  font-size: 15px;
  color: var(--text-secondary);
}

/* -- Responsive -- */
@media (max-width: 768px) {
  .preview-card-body { grid-template-columns: 1fr; }
  .lp-spotlight-row { grid-template-columns: 1fr; gap: 24px; }
  .lp-spotlight-row.reverse .lp-spotlight-img { order: 0; }
  .lp-spotlight-row.reverse .lp-spotlight-text { order: 0; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-hero { justify-content: center; }
  .lp-cta h2 { font-size: 22px; }
}