:root{
  --bg: #f7f8fb;
  --card: #ffffff;
  --text: #101828;
  --muted: #667085;
  --border: #eaecf0;
  --shadow: 0 10px 30px rgba(16,24,40,.06);
  --shadow2: 0 4px 16px rgba(16,24,40,.06);

  /* default details panel width (resizable via JS) */
  --cwDetailsW: 380px;
}

*{ box-sizing: border-box; }

html, body{
  margin: 0;
  padding: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
               "Apple Color Emoji","Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
}

/* App frame */
.prowler-wrap{
  max-width: 1400px;
  margin: 40px auto;
  padding: 0 16px;
}

/* Base card */
.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

/* -------------------------------------------------
   HERO
-------------------------------------------------- */
.cwHero{
  width: 100%;
  text-align: center;
  padding: 10px 0 2px;
}
.cwHeroTitle{
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0b1220;
}
.cwHeroSub{
  margin-top: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #667085;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.cwHeroVer{
  font-size: 12px;
  font-weight: 900;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid #d0d5dd;
  background: #f2f4f7;
  color: #344054;
}

/* -------------------------------------------------
   Generic UI bits
-------------------------------------------------- */
.cwPanel{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow2);
  padding: 12px;
  min-width: 0;
  overflow: hidden;
}

.cwPanelTitle{
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
}

.cwLabel{
  font-size: 12px;
  font-weight: 800;
  color: #344054;
  margin: 0 0 6px;
}

.cwInput, .cwSelect{
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  outline: none;
}
.cwInput:focus, .cwSelect:focus{
  border-color: #b2ddff;
  box-shadow: 0 0 0 3px rgba(46,144,250,.15);
}

.cwBtn{
  height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  font-weight: 800;
  color: #344054;
  cursor: pointer;
}
.cwBtn:hover{ background:#f9fafb; }

.cwBtnSmall{
  height: 34px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  font-weight: 900;
  color: #344054;
  cursor: pointer;
}
.cwBtnSmall:hover{ background:#f9fafb; }
.cwBtnSmall:disabled{ opacity:.5; cursor:not-allowed; }

.cwTabs{
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cwTab{
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-weight: 900;
  color: #344054;
  cursor: pointer;
}
.cwTabActive{
  background: #101828;
  color: #fff;
  border-color: #101828;
}

/* KPI cards */
.cwKpi{
  min-width: 140px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
}
.cwKpiLabel{ font-size:12px; font-weight:800; color:#667085; }
.cwKpiValue{ font-size:22px; font-weight:900; margin-top:4px; }
.cwKpiFail .cwKpiValue{ color:#b42318; }
.cwKpiPass .cwKpiValue{ color:#16a34a; }
.cwKpiManual .cwKpiValue{ color:#f79009; }

/* Pager */
.cwPager{
  display:flex;
  gap:10px;
  align-items:center;
  font-weight:900;
  color:#344054;
}
.cwPagerText{ font-weight:900; color:#344054; }

/* Filters row */
.cwFilters{
  margin-top:10px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:flex-end;
}

/* -------------------------------------------------
   TABLE
-------------------------------------------------- */
.cwTableWrap{
  width: 100%;
  overflow: auto;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.cwTable{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  background: #fff;
}

.cwTable thead th{
  background: #0b1220;
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  padding: 12px 12px;
  text-align: left;
  white-space: nowrap;
}
.cwTable thead th:first-child{ border-top-left-radius: 14px; }
.cwTable thead th:last-child{ border-top-right-radius: 14px; }

.cwTable tbody td{
  padding: 12px 12px;
  border-top: 1px solid #f2f4f7;
  vertical-align: top;
  font-size: 13px;
  color: #101828;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: normal;
  overflow-wrap: normal;
}

.cwTable tbody tr:hover td{ background:#fcfcfd; cursor:pointer; }

.cwX{ color:#b42318; font-weight:900; }
.cwOk{ color:#16a34a; font-weight:900; }
.cwDot{ color:#667085; font-weight:900; }

/* Severity badge */
.cwSev{
  display:inline-block;
  padding:4px 10px;
  border-radius:999px;
  font-weight:900;
  font-size:11px;
  border:1px solid var(--border);
}
.cwSevCrit{ background:#fbe7ef; border-color:#f5c2d3; color:#7a0916; }
.cwSevHigh{ background:#fee4e2; border-color:#fecdca; color:#b42318; }
.cwSevMed{ background:#ffedd5; border-color:#fed7aa; color:#b45309; }
.cwSevLow{ background:#dcfce7; border-color:#bbf7d0; color:#166534; }
.cwSevOther{ background:#f2f4f7; border-color:#eaecf0; color:#344054; }

/* -------------------------------------------------
   DETAILS PANEL
-------------------------------------------------- */
.cwDetailsTitle{
  overflow-wrap:anywhere;
  word-break:break-word;
  white-space:normal;
}

.cwKV{
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 12px;
  background: #fff;
  min-width: 0;
}
.cwKVKey{
  font-size: 13px;
  font-weight: 900;
  color: #667085;
}
.cwKVVal{
  margin-top: 6px;
  font-size: 18px;
  font-weight: 900;
  color: #101828;
  min-width: 0;
}
.cwKVValSmall{
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.cwBlock{
  margin-top: 12px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px;
  background: #fff;
}
.cwBlockTitle{
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 8px;
  color: #0b1220;
}
.cwBlockBody{ color:#101828; }

.cwMono{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.cwBreak{
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
}

/* clickable links inside details blocks */
.cwLinkInline{
  color: #175cd3;
  font-weight: 900;
  text-decoration: none;
}
.cwLinkInline:hover{
  text-decoration: underline;
}

/* Status badges in details */
.cwStatusBadge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  border: 1px solid var(--border);
  line-height: 1;
}
.cwStatusFail{ background:#fee4e2; border-color:#fecdca; color:#b42318; }
.cwStatusPass{ background:#dcfce7; border-color:#bbf7d0; color:#16a34a; }
.cwStatusManual{ background:#ffedd5; border-color:#fed7aa; color:#b45309; }
.cwStatusOther{ background:#f2f4f7; border-color:#eaecf0; color:#344054; }

/* -------------------------------------------------
   FINDINGS + DETAILS (FLEX + RESIZE + SYNC SCROLL)
-------------------------------------------------- */
.cwFindingsGrid{
  display: flex;
  gap: 14px;
  align-items: stretch;
  min-width: 0;
}

.cwFindingsLeft{
  flex: 1 1 auto;
  min-width: 0;
}

/* Scroll containers for sync */
.cwSplitScroll{
  max-height: calc(100vh - 260px);
  overflow: auto;
}

/* draggable divider */
.cwSplitHandle{
  width: 10px;
  margin: 0 -2px;
  cursor: col-resize;
  position: relative;
  border-radius: 999px;
  user-select: none;
  touch-action: none;
}
.cwSplitHandle::before{
  content:"";
  position:absolute;
  inset: 0;
  border-radius: 999px;
}
.cwSplitHandle:hover::before{
  background: rgba(16,24,40,.06);
}
.cwSplitHandle::after{
  content:"";
  position:absolute;
  top: 18px;
  bottom: 18px;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(16,24,40,.18);
}

/* details pane fixed (resizable via CSS var) */
.cwDetailsPanel{
  width: var(--cwDetailsW);
  flex: 0 0 var(--cwDetailsW);
  min-width: 320px;
  max-width: 520px;
}

/* -------------------------------------------------
   GROUPED SECURITY FINDINGS (accordion)
   - title wraps
   - pills stay aligned in a right column
-------------------------------------------------- */
.cwFindingGroup{
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow2);
  margin-bottom: 12px;
}

.cwFindingSummary{
  cursor: pointer;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 12px 14px;
  list-style: none;
  align-items: start;
}
.cwFindingSummary::-webkit-details-marker{ display:none; }

.cwFindingLeft{ min-width:0; }

/* ✅ allow wrap */
.cwFindingTitle{
  font-weight: 950;
  color:#0b1220;
  letter-spacing:-0.01em;
  line-height:1.2;
  white-space: normal;         /* was nowrap */
  overflow: visible;           /* was hidden */
  text-overflow: clip;         /* was ellipsis */
}

/* keep meta readable under wrapped titles */
.cwFindingMeta{
  margin-top:6px;
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  color:#667085;
  font-weight:900;
  font-size:12px;
}
.cwFindingMetaDot{ opacity:.5; }
.cwFindingMetaText{ color:#667085; }

/* ✅ keep pills aligned right (and wrapping nicely if needed) */
.cwFindingSummary .cwPills{
  justify-self: end;
  align-self: start;
  justify-content: flex-end;
  max-width: 340px;   /* keeps a nice column; adjust if you want */
}

/* body */
.cwFindingBody{
  padding: 12px 14px;
  background: #fcfcfd;
  border-top: 1px solid #f2f4f7;
}

/* group tables slightly tighter */
.cwGroupTable thead th{ font-size:11px; }
.cwGroupTable tbody td{ font-size:12px; }

/* -------------------------------------------------
   COMPLIANCE TREE (existing)
-------------------------------------------------- */
.cwEmpty{
  padding:14px;
  border:1px solid var(--border);
  border-radius:12px;
  background:#fff;
  color:#667085;
}

.cwSection{
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}
.cwSection + .cwSection{ margin-top: 12px; }

.cwSectionSummary{
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  list-style: none;
}
.cwSectionSummary::-webkit-details-marker{ display:none; }

.cwSectionTitle{
  font-weight: 900;
  color: #101828;
}

.cwPills{
  display:flex;
  gap:8px;
  align-items:center;
  flex-wrap:wrap;
}

.cwPill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  font-size: 12px;
}
.cwFail{ background:#fee4e2; color:#b42318; border-color:#fecdca; }
.cwPass{ background:#d1fadf; color:#067647; border-color:#abefc6; }
.cwManual{ background:#fef0c7; color:#b54708; border-color:#fedf89; }

.cwBar{
  height: 10px;
  display: flex;
  background: #f2f4f7;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cwBarFail{ background:#f04438; }
.cwBarPass{ background:#22c55e; }
.cwBarManual{ background:#f79009; }

.cwSectionBody{
  padding: 12px 14px;
  background: #fcfcfd;
}

.cwCheck{
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}
.cwCheck + .cwCheck{ margin-top: 10px; }

.cwCheckSummary{
  cursor: pointer;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 10px 12px;
  list-style: none;
  align-items: start;
}
.cwCheckSummary::-webkit-details-marker{ display:none; }

.cwCheckLeft{ min-width:0; }
.cwCheckSummary .cwPills{
  justify-self: end;
  align-self: start;
  justify-content: flex-end;
  max-width: 340px;
}
.cwCheckId{ font-weight:900; color:#101828; }
.cwCheckTitle{
  margin-top:2px;
  color:#667085;
  font-size:12px;
  white-space: normal;       /* allow wrapping */
  overflow: visible;
  text-overflow: clip;
}

.cwNote{
  padding: 10px 12px;
  color: #667085;
  font-weight: 800;
  font-size: 12px;
}

/* -------------------------------------------------
   Responsive
-------------------------------------------------- */
@media (max-width: 1100px){
  .prowler-wrap{ max-width: 980px; }
}

/* Stack panes on smaller screens */
@media (max-width: 1200px){
  .cwFindingsGrid{
    flex-direction: column;
  }
  .cwSplitHandle{ display:none; }
  .cwDetailsPanel{
    width: 100%;
    flex: 0 0 auto;
    min-width: 0;
    max-width: none;
    position: static !important;
    top: auto !important;
  }
  .cwSplitScroll{
    max-height: none;
    overflow: visible;
  }
  .cwFindingTitle{ max-width: 100%; white-space: normal; }
}

/* === FORCE compliance check header to wrap + keep pills aligned (override) === */
.cwCheckSummary{
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: start !important;
  gap: 12px !important;
}

.cwCheckLeft{ min-width: 0 !important; }

.cwCheckTitle{
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  max-width: none !important;
}

.cwCheckSummary .cwPills{
  justify-self: end !important;
  align-self: start !important;
  justify-content: flex-end !important;
  max-width: 340px !important;
}

/* --- Compliance: break long check IDs (underscores) so they don't collide with pills --- */
.cwCheckId{
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
}

/* Optional: also apply to security group titles just in case */
.cwFindingTitle{
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
}

/* =================================================
   LANDING PAGE SYSTEM (reuses dashboard tokens/cards)
================================================== */

:root{
  --cwNavy: #0b1220;
  --cwNavy2: #101828;
  --cwAccent: #f04438;  /* you can swap to your brand pink/red */
  --cwAccent2: #ff2e6a; /* optional */
  --cwSoft: #f8fafc;
}

.landingWrap{
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 18px 40px;
}

/* NAV */
.landingNav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 14px 10px;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247,248,251,.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(234,236,240,.8);
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color: var(--text);
}
.brandMark{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.5), transparent 45%),
    linear-gradient(135deg, var(--cwAccent), var(--cwNavy));
  box-shadow: 0 8px 18px rgba(16,24,40,.12);
  border: 1px solid rgba(16,24,40,.10);
}
.brandText{
  font-weight: 950;
  letter-spacing: -0.02em;
}
.brandTag{
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
  margin-left: 6px;
  display:none;
}

.navLinks{
  display:flex;
  align-items:center;
  gap: 16px;
  flex-wrap: wrap;
}
.navLinks a{
  color: #344054;
  font-weight: 900;
  text-decoration:none;
  font-size: 13px;
}
.navLinks a:hover{ color: #0b1220; }

.navCta{
  background: var(--cwNavy);
  color:#fff !important;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--cwNavy);
  box-shadow: 0 10px 20px rgba(16,24,40,.10);
}
.navCta:hover{
  background: #000;
  border-color: #000;
}

/* HERO */
.landingHero{
  padding: 54px 0 18px;
}

.heroGrid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  align-items: start;
}

.heroKicker{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-weight: 950;
  font-size: 12px;
  color: #344054;
  box-shadow: var(--shadow2);
}

.landingHero h1{
  margin: 14px 0 10px;
  font-size: clamp(34px, 3.6vw, 54px);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -0.04em;
  color: var(--cwNavy);
}

.heroSub{
  margin: 0;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.6;
  color: #475467;
  max-width: 54ch;
}

.heroButtons{
  margin-top: 18px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items:center;
}

.btnPrimaryWide{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 46px;
  padding: 0 16px;
  border-radius: 14px;
  background: var(--cwNavy);
  color:#fff;
  font-weight: 950;
  text-decoration:none;
  border: 1px solid var(--cwNavy);
  box-shadow: 0 12px 24px rgba(16,24,40,.14);
}
.btnPrimaryWide:hover{
  background:#000;
  border-color:#000;
}

.btnGhost{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 46px;
  padding: 0 16px;
  border-radius: 14px;
  background:#fff;
  color:#344054;
  font-weight: 950;
  text-decoration:none;
  border: 1px solid var(--border);
}
.btnGhost:hover{ background: #f9fafb; }

.trustLine{
  margin-top: 14px;
  font-size: 12px;
  font-weight: 850;
  color: #667085;
}

.trustBadges{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.badge{
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  font-weight: 900;
  font-size: 12px;
  color: #344054;
  box-shadow: var(--shadow2);
}

.heroShot{
  padding: 14px;
  border-radius: 20px;
}
.heroShot img{
  width:100%;
  display:block;
  border-radius: 14px;
  border: 1px solid rgba(234,236,240,.9);
}

.heroMiniRow{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.mini{
  padding: 12px 12px;
  border-radius: 16px;
}
.miniLabel{
  font-size: 12px;
  font-weight: 900;
  color: #667085;
}
.miniValue{
  margin-top: 6px;
  font-size: 13px;
  font-weight: 950;
  color: #101828;
}

/* LOGO STRIP */
.logoStrip{
  margin-top: 26px;
  padding: 16px 0;
}
.logoStripInner{
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow2);
  padding: 14px 16px;
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 12px;
}
.logoStripText{
  font-weight: 950;
  color: #344054;
  font-size: 13px;
}
.logoStripDots{
  display:flex; gap: 10px; align-items:center;
}
.logoStripDots span{
  width: 10px; height: 10px;
  border-radius: 999px;
  background: rgba(16,24,40,.18);
}

/* SECTIONS */
.section{
  padding: 68px 0;
}
.section.alt{
  background: var(--cwSoft);
  margin: 0 -18px;
  padding-left: 18px;
  padding-right: 18px;
  border-top: 1px solid rgba(234,236,240,.8);
  border-bottom: 1px solid rgba(234,236,240,.8);
}
.sectionHead{
  text-align:center;
  max-width: 780px;
  margin: 0 auto 26px;
}
.sectionHead h2{
  margin: 0;
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 950;
  letter-spacing: -0.03em;
  color: var(--cwNavy);
}
.sectionSub{
  margin: 10px 0 0;
  color: #667085;
  font-weight: 800;
  line-height: 1.6;
}

/* FEATURES */
.featureGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.featureCard{
  padding: 22px 22px;
  border-radius: 18px;
}
.featureIcon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow2);
  margin-bottom: 12px;
}
.featureCard h3{
  margin: 0 0 8px;
  font-weight: 950;
  letter-spacing: -0.02em;
}
.featureCard p{
  margin: 0 0 12px;
  color: #667085;
  font-weight: 750;
  line-height: 1.55;
}
.featureCard ul{
  margin: 0;
  padding-left: 18px;
  color: #344054;
  font-weight: 850;
}
.featureCard li{ margin: 8px 0; }

/* SCREENS */
.screenStack{ display:flex; flex-direction:column; gap: 18px; }
.screenRow{
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 18px;
  align-items:center;
}
.screenRow.reverse{
  grid-template-columns: 1.05fr .95fr;
}
.screenRow.reverse .screenText{ order: 2; }
.screenRow.reverse .screenShot{ order: 1; }

.screenText h3{
  margin: 0 0 8px;
  font-weight: 950;
  letter-spacing: -0.02em;
}
.screenText p{
  margin: 0 0 14px;
  color:#667085;
  font-weight: 800;
  line-height: 1.6;
}
.screenBullets{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.chip{
  padding: 7px 10px;
  border-radius: 999px;
  background:#fff;
  border: 1px solid var(--border);
  font-weight: 900;
  font-size: 12px;
  color:#344054;
  box-shadow: var(--shadow2);
}
.screenShot{
  padding: 14px;
  border-radius: 20px;
}
.screenShot img{
  width: 100%;
  display:block;
  border-radius: 14px;
  border: 1px solid rgba(234,236,240,.9);
}

/* HOW */
.howGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.howCard{
  padding: 22px;
  border-radius: 18px;
  text-align:left;
}
.howNum{
  width: 38px; height: 38px;
  border-radius: 12px;
  display:flex; align-items:center; justify-content:center;
  background: var(--cwNavy);
  color:#fff;
  font-weight: 950;
  margin-bottom: 12px;
}
.howTitle{ font-weight: 950; margin-bottom: 6px; }
.howText{ color:#667085; font-weight: 800; line-height: 1.55; }

.centerCta{
  margin-top: 18px;
  display:flex;
  gap: 12px;
  justify-content:center;
  flex-wrap: wrap;
}

/* PRICING */
.pricingGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.pricingCard{
  padding: 26px 22px;
  border-radius: 18px;
  position: relative;
}
.pricingCard.featured{
  border: 2px solid var(--cwNavy);
  transform: translateY(-6px);
}
.planTop{
  position:absolute;
  top: 14px;
  right: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #101828;
  color:#fff;
  font-weight: 950;
  font-size: 12px;
}
.planName{
  font-weight: 950;
  letter-spacing: -0.02em;
  font-size: 16px;
  color:#101828;
}
.planPrice{
  margin-top: 10px;
  font-size: 34px;
  font-weight: 950;
  letter-spacing: -0.03em;
  color: var(--cwNavy);
}
.planPrice span{
  font-size: 13px;
  font-weight: 850;
  color:#667085;
}
.planFor{
  margin-top: 6px;
  color:#667085;
  font-weight: 800;
}
.planList{
  margin: 14px 0 18px;
  padding-left: 18px;
  color:#344054;
  font-weight: 850;
}
.planList li{ margin: 8px 0; }

/* FAQ */
.faqGrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.faqItem{
  padding: 18px 18px;
  border-radius: 18px;
}
.faqQ{
  font-weight: 950;
  margin-bottom: 8px;
}
.faqA{
  color:#667085;
  font-weight: 800;
  line-height: 1.55;
}

/* FINAL CTA */
.finalCta{
  padding: 40px 0 10px;
}
.finalInner{
  border-radius: 22px;
  padding: 22px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  background:
    radial-gradient(circle at 20% 0%, rgba(240,68,56,.10), transparent 45%),
    linear-gradient(180deg, #fff, #fff);
}
.finalText h2{
  margin: 0 0 8px;
  font-weight: 950;
  letter-spacing: -0.03em;
}
.finalText p{
  margin: 0;
  color:#667085;
  font-weight: 800;
  line-height: 1.55;
}
.finalActions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* FOOTER */
.landingFooter{
  margin-top: 28px;
  padding: 20px 8px;
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid rgba(234,236,240,.9);
}
.footerBrand{
  display:flex;
  align-items:center;
  gap: 10px;
}
.footerMeta{
  margin-top: 8px;
  color:#667085;
  font-weight: 850;
  font-size: 12px;
}
.footerLinks{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}
.footerLinks a{
  color:#344054;
  font-weight: 900;
  text-decoration:none;
  font-size: 13px;
}
.footerLinks a:hover{ color:#0b1220; }

/* RESPONSIVE */
@media (max-width: 980px){
  .heroGrid{ grid-template-columns: 1fr; }
  .heroMiniRow{ grid-template-columns: 1fr; }
  .featureGrid{ grid-template-columns: 1fr; }
  .screenRow, .screenRow.reverse{ grid-template-columns: 1fr; }
  .screenRow.reverse .screenText{ order: 0; }
  .screenRow.reverse .screenShot{ order: 0; }
  .howGrid{ grid-template-columns: 1fr; }
  .pricingGrid{ grid-template-columns: 1fr; }
  .faqGrid{ grid-template-columns: 1fr; }
  .finalInner{ flex-direction: column; align-items:flex-start; }
  .brandTag{ display:none; }
}

@media (min-width: 920px){
  .brandTag{ display:inline; }
}

/* =================================================
   COLOR BOOST (less black, more brand)
================================================== */
:root{
  /* Softer navy + punchier accent */
  --cwNavy: #0a1020;
  --cwNavy2:#101a33;

  /* More colorful accent gradient */
  --cwAccent: #ff2e6a;
  --cwAccentAlt: #7c3aed;

  /* Soft tints */
  --cwSoft: #f7f8ff;
  --cwSoft2:#f6fbff;
}

/* Make hero feel more premium + colorful */
.landingHero{
  position: relative;
}
.landingHero::before{
  content:"";
  position:absolute;
  inset:-30px -18px auto -18px;
  height: 520px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255,46,106,.16), transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(124,58,237,.14), transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(46,144,250,.10), transparent 50%);
  pointer-events:none;
  z-index:-1;
}
.heroKicker{
  border-color: rgba(124,58,237,.18);
}
.brandMark{
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.55), transparent 45%),
    linear-gradient(135deg, var(--cwAccent), var(--cwAccentAlt));
}

/* CTA button gets subtle gradient */
.btnPrimaryWide,
.navCta{
  background: linear-gradient(135deg, var(--cwNavy), #000);
}
.btnPrimaryWide{
  border-color: rgba(16,24,40,.25);
}

/* Section alternates get nicer tints */
.section.alt{
  background:
    radial-gradient(circle at 15% 20%, rgba(255,46,106,.05), transparent 45%),
    radial-gradient(circle at 85% 30%, rgba(124,58,237,.05), transparent 50%),
    linear-gradient(180deg, var(--cwSoft), var(--cwSoft2));
}

/* Add a little color to feature icons */
.featureIcon{
  background:
    radial-gradient(circle at 30% 30%, rgba(255,46,106,.10), transparent 55%),
    radial-gradient(circle at 75% 20%, rgba(124,58,237,.10), transparent 55%),
    #fff;
}

/* =================================================
   ZOOMABLE SCREENSHOTS (hover affordance)
================================================== */
.zoomable{
  cursor: zoom-in;
  transition: transform .18s ease, box-shadow .18s ease;
}
.zoomable:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(16,24,40,.12);
}
.zoomable img{
  transition: transform .18s ease;
}
.zoomable:hover img{
  transform: scale(1.01);
}

/* Prevent body scroll when lightbox open */
.noScroll{
  overflow: hidden;
}

/* =================================================
   LIGHTBOX
================================================== */
.lightbox{
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
}
.lightbox.isOpen{
  display: block;
}
.lightboxBackdrop{
  position:absolute;
  inset:0;
  background: rgba(11,18,32,.62);
  backdrop-filter: blur(6px);
}
.lightboxDialog{
  position:absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(1100px, calc(100vw - 26px));
  max-height: calc(100vh - 26px);
  overflow: auto;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(234,236,240,.9);
  box-shadow: 0 40px 120px rgba(16,24,40,.30);
}
.lightboxClose{
  position: sticky;
  top: 0;
  float: right;
  margin: 12px 12px 0 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(234,236,240,.9);
  background: #fff;
  font-weight: 950;
  cursor: pointer;
}
.lightboxClose:hover{ background:#f9fafb; }

.lightboxFigure{
  margin: 0;
  padding: 12px 12px 16px;
}
.lightboxFigure img{
  width: 100%;
  display:block;
  border-radius: 14px;
  border: 1px solid rgba(234,236,240,.95);
}
#lightboxCap{
  margin-top: 10px;
  color:#667085;
  font-weight: 850;
  font-size: 13px;
}

/* =================================================
   STICKY CTA
================================================== */
.stickyCta{
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%) translateY(140%);
  z-index: 50;
  width: min(980px, calc(100vw - 24px));
  transition: transform .22s ease, opacity .22s ease;
  opacity: 0;
  pointer-events: none;
}
.stickyCta.show{
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.stickyInner{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 10% 30%, rgba(255,46,106,.14), transparent 50%),
    radial-gradient(circle at 90% 20%, rgba(124,58,237,.12), transparent 55%),
    rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(234,236,240,.95);
  box-shadow: 0 18px 60px rgba(16,24,40,.18);
}

.stickyLeft{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 0;
}
.stickyDot{
  width: 12px; height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cwAccent), var(--cwAccentAlt));
  box-shadow: 0 8px 18px rgba(255,46,106,.25);
}
.stickyTitle{
  font-weight: 950;
  color: #101828;
  line-height: 1.1;
}
.stickySub{
  font-size: 12px;
  font-weight: 850;
  color:#667085;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 54vw;
}

.stickyRight{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.btnSticky{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cwNavy), #000);
  color:#fff;
  font-weight: 950;
  text-decoration:none;
  border: 1px solid rgba(16,24,40,.25);
}
.btnSticky:hover{ filter: brightness(1.05); }

.btnStickyGhost{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  background:#fff;
  color:#344054;
  font-weight: 950;
  text-decoration:none;
  border: 1px solid rgba(234,236,240,.95);
}
.btnStickyGhost:hover{ background:#f9fafb; }

@media (max-width: 520px){
  .stickySub{ display:none; }
}

/* =================================================
   COLOR BOOST — AWS-console / enterprise (blue/cyan)
================================================== */
:root{
  /* Enterprise anchor */
  --cwNavy: #0b1220;     /* deep slate */
  --cwNavy2:#101828;

  /* AWS-console accent family */
  --cwAccent: #06b6d4;      /* cyan */
  --cwAccentAlt: #2e90fa;   /* azure */
  --cwAccentDeep: #175cd3;  /* deeper blue */

  /* Soft tints */
  --cwSoft: #f6fbff;
  --cwSoft2:#f7f9ff;
}

/* Brand mark: blue/cyan gradient */
.brandMark{
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.55), transparent 45%),
    linear-gradient(135deg, var(--cwAccent), var(--cwAccentAlt));
  box-shadow: 0 10px 24px rgba(46,144,250,.18);
}

/* Hero glow: cyan/blue/soft */
.landingHero::before{
  content:"";
  position:absolute;
  inset:-30px -18px auto -18px;
  height: 520px;
  background:
    radial-gradient(circle at 14% 10%, rgba(6,182,212,.16), transparent 45%),
    radial-gradient(circle at 86% 18%, rgba(46,144,250,.14), transparent 50%),
    radial-gradient(circle at 50% 92%, rgba(23,92,211,.10), transparent 55%);
  pointer-events:none;
  z-index:-1;
}

/* CTAs: enterprise blue gradient (less black) */
.btnPrimaryWide,
.navCta,
.btnSticky{
  background: linear-gradient(135deg, var(--cwAccentDeep), var(--cwAccentAlt));
  border-color: rgba(46,144,250,.35);
}
.btnPrimaryWide:hover,
.navCta:hover,
.btnSticky:hover{
  filter: brightness(1.05);
}

/* Ghost buttons get subtle blue focus */
.btnGhost:hover,
.btnStickyGhost:hover{
  border-color: rgba(46,144,250,.35);
}

/* Section alternates: light blue tint */
.section.alt{
  background:
    radial-gradient(circle at 12% 22%, rgba(6,182,212,.06), transparent 45%),
    radial-gradient(circle at 88% 30%, rgba(46,144,250,.06), transparent 50%),
    linear-gradient(180deg, var(--cwSoft), var(--cwSoft2));
}

/* Feature icon tiles: slight cyan highlight */
.featureIcon{
  background:
    radial-gradient(circle at 30% 30%, rgba(6,182,212,.12), transparent 55%),
    radial-gradient(circle at 75% 20%, rgba(46,144,250,.10), transparent 55%),
    #fff;
  border-color: rgba(46,144,250,.18);
}

/* Chips/badges: quiet blue tint */
.chip, .badge{
  border-color: rgba(46,144,250,.22);
}
.chip{
  background:
    radial-gradient(circle at 25% 30%, rgba(6,182,212,.08), transparent 60%),
    #fff;
}

/* Sticky CTA dot to match */
.stickyDot{
  background: linear-gradient(135deg, var(--cwAccent), var(--cwAccentAlt));
  box-shadow: 0 10px 22px rgba(46,144,250,.22);
}

/* Optional: slightly blue-tinted card shadow */
.card{
  box-shadow: 0 10px 30px rgba(46,144,250,.06);
}

.cwLinkInline{
  color: var(--cwAccentDeep);
}
.cwLinkInline:hover{
  text-decoration: underline;
}

/* =================================================
   ZEST MODE — Urgent/Security (red/orange) + more color
   Paste at very bottom so it overrides everything.
================================================== */
:root{
  --cwNavy: #0b1220;
  --cwNavy2:#101828;

  /* Security urgency accents */
  --cwAccent: #ff2d55;        /* hot red */
  --cwAccentAlt: #ff6a00;     /* orange */
  --cwAccentDeep: #b42318;    /* deep red */

  /* Support accents for "zest" */
  --cwGlowRed: rgba(255,45,85,.20);
  --cwGlowOrange: rgba(255,106,0,.18);
  --cwGlowAmber: rgba(245,158,11,.14);

  /* Tints */
  --cwSoft: #fff6f6;
  --cwSoft2:#fff8f1;
}

/* -------------------------------------------------
   BRAND MARK: punchy gradient
-------------------------------------------------- */
.brandMark{
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.55), transparent 45%),
    linear-gradient(135deg, var(--cwAccent), var(--cwAccentAlt));
  box-shadow: 0 12px 26px rgba(255,45,85,.18);
  border: 1px solid rgba(16,24,40,.10);
}

/* -------------------------------------------------
   HERO: stronger glow + premium "security heat"
-------------------------------------------------- */
.landingHero{
  position: relative;
}
.landingHero::before{
  content:"";
  position:absolute;
  inset:-40px -18px auto -18px;
  height: 560px;
  background:
    radial-gradient(circle at 12% 10%, var(--cwGlowRed), transparent 45%),
    radial-gradient(circle at 86% 18%, var(--cwGlowOrange), transparent 50%),
    radial-gradient(circle at 55% 95%, var(--cwGlowAmber), transparent 55%);
  pointer-events:none;
  z-index:-1;
}

/* Add a subtle warm vignette */
.landingHero::after{
  content:"";
  position:absolute;
  inset:-20px -18px auto -18px;
  height: 520px;
  background: linear-gradient(180deg, rgba(11,18,32,.00), rgba(11,18,32,.02));
  pointer-events:none;
  z-index:-1;
}

/* -------------------------------------------------
   CTA BUTTONS: HOT gradient (less bland)
-------------------------------------------------- */
.btnPrimaryWide,
.navCta,
.btnSticky{
  background: linear-gradient(135deg, var(--cwAccentDeep), var(--cwAccentAlt));
  border-color: rgba(255,106,0,.35);
  box-shadow: 0 14px 30px rgba(255,45,85,.18);
}
.btnPrimaryWide:hover,
.navCta:hover,
.btnSticky:hover{
  filter: brightness(1.06);
  box-shadow: 0 18px 44px rgba(255,45,85,.22);
}

/* Ghost buttons get warm focus */
.btnGhost:hover,
.btnStickyGhost:hover{
  border-color: rgba(255,106,0,.35);
  box-shadow: 0 8px 20px rgba(255,106,0,.08);
}

/* -------------------------------------------------
   SECTION ALTERNATES: warmer tint + texture
-------------------------------------------------- */
.section.alt{
  background:
    radial-gradient(circle at 12% 24%, rgba(255,45,85,.06), transparent 45%),
    radial-gradient(circle at 88% 30%, rgba(255,106,0,.06), transparent 50%),
    linear-gradient(180deg, var(--cwSoft), var(--cwSoft2));
  border-top: 1px solid rgba(255,106,0,.16);
  border-bottom: 1px solid rgba(255,45,85,.14);
}

/* -------------------------------------------------
   CARDS: subtle top accent border (adds "zest")
-------------------------------------------------- */
.card{
  position: relative;
  overflow: hidden;
}

/* default top line for major cards */
.card::before{
  content:"";
  position:absolute;
  left: 12px;
  right: 12px;
  top: 10px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,45,85,.0), rgba(255,45,85,.38), rgba(255,106,0,.38), rgba(255,106,0,.0));
  opacity: .55;
  pointer-events:none;
}

/* Make some cards calmer (optional): only highlight key cards */
.featureCard::before,
.pricingCard::before,
.heroShot::before,
.screenShot::before,
.finalInner::before{
  opacity: .75;
}
.faqItem::before,
.mini::before{
  opacity: .35;
}

/* -------------------------------------------------
   FEATURE ICONS: warmer + more contrast
-------------------------------------------------- */
.featureIcon{
  background:
    radial-gradient(circle at 30% 30%, rgba(255,45,85,.14), transparent 55%),
    radial-gradient(circle at 75% 20%, rgba(255,106,0,.12), transparent 55%),
    #fff;
  border-color: rgba(255,106,0,.18);
}

/* Badges/chips: warm tint */
.badge, .chip{
  border-color: rgba(255,106,0,.22);
  background:
    radial-gradient(circle at 25% 30%, rgba(255,106,0,.08), transparent 60%),
    #fff;
}

/* -------------------------------------------------
   SCREENSHOT "SCAN GLOW" hover
-------------------------------------------------- */
.zoomable{
  cursor: zoom-in;
  transition: transform .18s ease, box-shadow .18s ease;
}
.zoomable:hover{
  transform: translateY(-3px);
  box-shadow: 0 22px 60px rgba(255,45,85,.16);
}
.zoomable:hover::after{
  content:"";
  position:absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,45,85,.12), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(255,106,0,.10), transparent 45%);
  pointer-events:none;
}

/* -------------------------------------------------
   PRICING: featured plan gets a top bar + extra punch
-------------------------------------------------- */
.pricingCard.featured{
  border: 2px solid rgba(255,106,0,.35);
  box-shadow: 0 22px 70px rgba(255,45,85,.18);
  transform: translateY(-8px);
}

.pricingCard.featured::before{
  left: 10px;
  right: 10px;
  top: 10px;
  height: 5px;
  opacity: 1;
  background: linear-gradient(90deg, var(--cwAccent), var(--cwAccentAlt));
}

/* "Most popular" pill becomes warmer */
.planTop{
  background: linear-gradient(135deg, var(--cwAccentDeep), var(--cwAccentAlt));
  border: 1px solid rgba(255,106,0,.35);
  box-shadow: 0 12px 26px rgba(255,45,85,.18);
}

/* -------------------------------------------------
   FINAL CTA: more dramatic gradient panel
-------------------------------------------------- */
.finalInner{
  background:
    radial-gradient(circle at 12% 20%, rgba(255,45,85,.16), transparent 45%),
    radial-gradient(circle at 90% 25%, rgba(255,106,0,.14), transparent 55%),
    linear-gradient(180deg, #fff, #fff);
}

/* -------------------------------------------------
   STICKY CTA: warmer, less bland
-------------------------------------------------- */
.stickyInner{
  background:
    radial-gradient(circle at 10% 30%, rgba(255,45,85,.14), transparent 50%),
    radial-gradient(circle at 92% 20%, rgba(255,106,0,.12), transparent 55%),
    rgba(255,255,255,.94);
  border: 1px solid rgba(255,106,0,.20);
  box-shadow: 0 22px 70px rgba(255,45,85,.14);
}
.stickyDot{
  background: linear-gradient(135deg, var(--cwAccent), var(--cwAccentAlt));
  box-shadow: 0 10px 22px rgba(255,45,85,.20);
}

/* -------------------------------------------------
   OPTIONAL: "Threat pulse" strip (needs HTML hook)
   If you add <div class="pulseStrip"></div> under hero,
   this will render a subtle animated bar.
-------------------------------------------------- */
.pulseStrip{
  margin-top: 18px;
  height: 10px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255,45,85,.0), rgba(255,45,85,.55), rgba(255,106,0,.55), rgba(255,106,0,.0));
  position: relative;
  overflow:hidden;
  border: 1px solid rgba(255,106,0,.18);
  box-shadow: 0 10px 24px rgba(255,45,85,.10);
}
.pulseStrip::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  transform: translateX(-70%);
  animation: pulseSweep 2.8s ease-in-out infinite;
}
@keyframes pulseSweep{
  0%{ transform: translateX(-70%); }
  60%{ transform: translateX(70%); }
  100%{ transform: translateX(70%); }
}

/* Make headings feel less monochrome */
.sectionHead h2,
.landingHero h1{
  background: linear-gradient(90deg, #0b1220, #0b1220, var(--cwAccentDeep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* =================================================
   THEME: Dark / Neon (match screenshot #2 vibe)
   Paste at very bottom of styles.css
================================================== */

.cwThemeDark{
  --bg: #070913;              /* page background */
  --card: rgba(255,255,255,.06);
  --text: #f8fafc;
  --muted: rgba(248,250,252,.72);
  --border: rgba(255,255,255,.10);
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --shadow2: 0 10px 30px rgba(0,0,0,.35);

  /* neon accents like your WP site */
  --cwAccent: #ff2e6a;        /* hot pink-red */
  --cwAccentAlt: #ff4d1a;     /* orange-red */
  --cwAccentBlue: #6d5efc;    /* subtle purple */
}

/* Base */
.cwThemeDark html, 
.cwThemeDark body{
  background: var(--bg);
  color: var(--text);
}

/* Make landing max-width feel more premium */
.cwThemeDark .landingWrap{
  max-width: 1180px;
}

/* NAV: glassy dark */
.cwThemeDark .landingNav{
  background: rgba(7,9,19,.55);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.cwThemeDark .navLinks a{
  color: rgba(248,250,252,.78);
}
.cwThemeDark .navLinks a:hover{
  color: #fff;
}

/* Brand mark = neon */
.cwThemeDark .brandMark{
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.35), transparent 45%),
    linear-gradient(135deg, var(--cwAccent), var(--cwAccentAlt));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 50px rgba(255,46,106,.22);
}

/* HERO: dark gradient + glow like screenshot #2 */
.cwThemeDark .landingHero{
  padding-top: 66px;
  position: relative;
}
.cwThemeDark .landingHero::before{
  content:"";
  position:absolute;
  inset:-80px -18px auto -18px;
  height: 640px;
  background:
    radial-gradient(circle at 12% 15%, rgba(255,46,106,.22), transparent 48%),
    radial-gradient(circle at 80% 18%, rgba(109,94,252,.18), transparent 52%),
    radial-gradient(circle at 55% 90%, rgba(255,77,26,.16), transparent 55%),
    linear-gradient(180deg, rgba(12,14,28,.90), rgba(7,9,19,.20));
  pointer-events:none;
  z-index:-1;
}

/* Headings & copy: brighter */
.cwThemeDark .landingHero h1{
  color: #fff;
}
.cwThemeDark .heroSub{
  color: rgba(248,250,252,.78);
}

/* Kicker pill: dark glass */
.cwThemeDark .heroKicker{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(248,250,252,.82);
}

/* Buttons: neon CTA + darker ghost */
.cwThemeDark .btnPrimaryWide,
.cwThemeDark .navCta,
.cwThemeDark .btnSticky{
  background: linear-gradient(135deg, var(--cwAccent), var(--cwAccentAlt));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 60px rgba(255,46,106,.18);
}
.cwThemeDark .btnPrimaryWide:hover,
.cwThemeDark .navCta:hover,
.cwThemeDark .btnSticky:hover{
  filter: brightness(1.06);
  box-shadow: 0 24px 80px rgba(255,46,106,.22);
}

.cwThemeDark .btnGhost,
.cwThemeDark .btnStickyGhost{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(248,250,252,.86);
}
.cwThemeDark .btnGhost:hover,
.cwThemeDark .btnStickyGhost:hover{
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.18);
}

/* Trust line + badges: dark chips */
.cwThemeDark .trustLine{
  color: rgba(248,250,252,.70);
}
.cwThemeDark .badge,
.cwThemeDark .chip{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(248,250,252,.84);
  box-shadow: 0 12px 36px rgba(0,0,0,.25);
}

/* Cards: dark glass everywhere */
.cwThemeDark .card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}

/* Add the “subtle top border” zest */
.cwThemeDark .card::before{
  content:"";
  position:absolute;
  left: 14px;
  right: 14px;
  top: 10px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,46,106,0), rgba(255,46,106,.55), rgba(255,77,26,.55), rgba(255,77,26,0));
  opacity: .85;
  pointer-events:none;
}

/* Mini cards should be calmer */
.cwThemeDark .mini::before{ opacity: .45; }

/* Screenshots: keep image crisp */
.cwThemeDark .heroShot img,
.cwThemeDark .screenShot img{
  border: 1px solid rgba(255,255,255,.10);
}

/* Sections: don’t go “pink washed”; keep dark, with subtle tint */
.cwThemeDark .section.alt{
  background:
    radial-gradient(circle at 10% 20%, rgba(255,46,106,.08), transparent 50%),
    radial-gradient(circle at 90% 30%, rgba(109,94,252,.06), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.00));
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Section headings */
.cwThemeDark .sectionHead h2{
  color: #fff;
}
.cwThemeDark .sectionSub{
  color: rgba(248,250,252,.72);
}

/* Pricing featured: stronger top bar */
.cwThemeDark .pricingCard.featured{
  border: 1px solid rgba(255,46,106,.28);
  box-shadow: 0 26px 90px rgba(255,46,106,.16);
}
.cwThemeDark .pricingCard.featured::before{
  height: 5px;
  opacity: 1;
}

/* Plan pill */
.cwThemeDark .planTop{
  background: linear-gradient(135deg, var(--cwAccent), var(--cwAccentAlt));
  border: 1px solid rgba(255,255,255,.14);
}

/* Sticky CTA: dark glass */
.cwThemeDark .stickyInner{
  background:
    radial-gradient(circle at 10% 30%, rgba(255,46,106,.14), transparent 55%),
    radial-gradient(circle at 92% 20%, rgba(255,77,26,.12), transparent 60%),
    rgba(10,12,24,.72);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 26px 90px rgba(0,0,0,.45);
}
.cwThemeDark .stickyTitle{ color:#fff; }
.cwThemeDark .stickySub{ color: rgba(248,250,252,.70); }

/* Lightbox: match dark theme */
.cwThemeDark .lightboxDialog{
  background: rgba(10,12,24,.92);
  border: 1px solid rgba(255,255,255,.12);
}
.cwThemeDark #lightboxCap{
  color: rgba(248,250,252,.72);
}
.cwThemeDark .lightboxClose{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(248,250,252,.9);
}

/* Footer links */
.cwThemeDark .footerLinks a{
  color: rgba(248,250,252,.78);
}
.cwThemeDark .footerLinks a:hover{
  color:#fff;
}
.cwThemeDark .footerMeta{
  color: rgba(248,250,252,.62);
}

/* Screenshot hover “glow” gets neon edge */
.cwThemeDark .zoomable:hover{
  box-shadow: 0 30px 110px rgba(255,46,106,.18);
}

/* =================================================
   DARK THEME READABILITY PATCH
   Keeps the vibe, fixes contrast (pricing + general text)
================================================== */

.cwThemeDark{
  /* Lift the background slightly so blacks aren't crushing */
  --bg: #0a0d18;

  /* Make "glass" more solid so text is readable */
  --card: rgba(255,255,255,.085);

  /* Stronger, clearer text system */
  --text: rgba(255,255,255,.96);
  --muted: rgba(255,255,255,.78);
  --border: rgba(255,255,255,.14);
}

/* General typography contrast improvements */
.cwThemeDark .sectionSub,
.cwThemeDark .heroSub,
.cwThemeDark .faqA,
.cwThemeDark .featureCard p,
.cwThemeDark .howText,
.cwThemeDark .planFor,
.cwThemeDark .footerMeta{
  color: rgba(255,255,255,.78);
}

.cwThemeDark .featureCard ul,
.cwThemeDark .planList,
.cwThemeDark .screenText p{
  color: rgba(255,255,255,.80);
}

/* Make small labels a touch brighter */
.cwThemeDark .miniLabel,
.cwThemeDark .trustLine,
.cwThemeDark .sectionSub{
  color: rgba(255,255,255,.74);
}

/* Cards: more contrast + clearer borders */
.cwThemeDark .card{
  background: rgba(255,255,255,.085);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 60px rgba(0,0,0,.40);
}

/* Reduce overly dark "alt" sections so they don't swallow content */
.cwThemeDark .section.alt{
  background:
    radial-gradient(circle at 10% 20%, rgba(255,46,106,.10), transparent 52%),
    radial-gradient(circle at 90% 30%, rgba(109,94,252,.08), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
}

/* =================================================
   PRICING: high-contrast treatment (fixes your example)
================================================== */

/* Give pricing cards a more solid surface */
.cwThemeDark .pricingCard{
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.16);
}

/* Make plan name + price pop */
.cwThemeDark .planName{
  color: rgba(255,255,255,.95);
}
.cwThemeDark .planPrice{
  color: rgba(255,255,255,.98);
}
.cwThemeDark .planPrice span{
  color: rgba(255,255,255,.78);
}

/* List items clearer */
.cwThemeDark .planList{
  color: rgba(255,255,255,.82);
}

/* Featured plan: even more separation */
.cwThemeDark .pricingCard.featured{
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,46,106,.35);
  box-shadow: 0 30px 110px rgba(255,46,106,.18);
}

/* Buttons in pricing: keep neon but increase legibility */
.cwThemeDark .pricingCard .btnPrimaryWide{
  box-shadow: 0 18px 60px rgba(255,46,106,.22);
}

/* =================================================
   SCREENSHOT AREA: prevent text from fading into background
================================================== */
.cwThemeDark .screenText h3,
.cwThemeDark .featureCard h3,
.cwThemeDark .howTitle,
.cwThemeDark .faqQ{
  color: rgba(255,255,255,.96);
}

/* Chips/badges a bit brighter */
.cwThemeDark .badge,
.cwThemeDark .chip{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.86);
}

/* =================================================
   OPTIONAL: slightly increase overall page font smoothing
================================================== */
.cwThemeDark body{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* =================================================
   THEME: Light (WP vibe) — white background + grey cards
   Paste at very bottom of styles.css
================================================== */

.cwThemeLight{
  /* Core palette */
  --bg: #ffffff;
  --card: #ffffff;
  --text: #0b1220;
  --muted: #667085;
  --border: #e6e8ef;
  --shadow: 0 18px 60px rgba(16,24,40,.08);
  --shadow2: 0 10px 30px rgba(16,24,40,.06);

  /* Accent = your WP vibe */
  --cwAccent: #ff2e6a;      /* hot pink/red */
  --cwAccentAlt: #ff4d1a;   /* orange */
  --cwAccentDeep: #b42318;  /* deep red */

  /* Section tints */
  --cwSoft: #f7f8fb;
  --cwSoft2:#fbfbfd;
}

/* Ensure body uses light background */
.cwThemeLight html,
.cwThemeLight body{
  background: var(--bg);
  color: var(--text);
}

/* NAV: white, crisp */
.cwThemeLight .landingNav{
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(230,232,239,.85);
}

/* Brand mark keeps pop */
.cwThemeLight .brandMark{
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.7), transparent 45%),
    linear-gradient(135deg, var(--cwAccent), var(--cwAccentAlt));
  box-shadow: 0 12px 26px rgba(255,46,106,.16);
}

/* HERO: white hero with soft warm glow */
.cwThemeLight .landingHero{
  position: relative;
}
.cwThemeLight .landingHero::before{
  content:"";
  position:absolute;
  inset:-60px -18px auto -18px;
  height: 520px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255,46,106,.12), transparent 45%),
    radial-gradient(circle at 86% 18%, rgba(255,77,26,.10), transparent 52%),
    radial-gradient(circle at 50% 90%, rgba(245,158,11,.08), transparent 55%);
  pointer-events:none;
  z-index:-1;
}

.cwThemeLight .landingHero h1{
  color: #0b1220;
}
.cwThemeLight .heroSub{
  color: #475467;
}

/* Buttons: accent primary, neutral ghost */
.cwThemeLight .btnPrimaryWide,
.cwThemeLight .navCta,
.cwThemeLight .btnSticky{
  background: linear-gradient(135deg, var(--cwAccentDeep), var(--cwAccentAlt));
  border: 1px solid rgba(255,77,26,.22);
  box-shadow: 0 16px 40px rgba(255,46,106,.14);
}
.cwThemeLight .btnPrimaryWide:hover,
.cwThemeLight .navCta:hover,
.cwThemeLight .btnSticky:hover{
  filter: brightness(1.05);
}

.cwThemeLight .btnGhost,
.cwThemeLight .btnStickyGhost{
  background: #ffffff;
  border: 1px solid rgba(230,232,239,.95);
  color: #344054;
}
.cwThemeLight .btnGhost:hover,
.cwThemeLight .btnStickyGhost:hover{
  background: #f9fafb;
  border-color: rgba(255,77,26,.18);
}

/* Cards: white on grey canvas */
.cwThemeLight .card{
  background: #ffffff;
  border: 1px solid rgba(230,232,239,.95);
  box-shadow: var(--shadow2);
}

/* Add subtle top accent line (zest but clean) */
.cwThemeLight .card{
  position: relative;
  overflow: hidden;
}
.cwThemeLight .card::before{
  content:"";
  position:absolute;
  left: 14px;
  right: 14px;
  top: 10px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg,
    rgba(255,46,106,0),
    rgba(255,46,106,.35),
    rgba(255,77,26,.35),
    rgba(255,77,26,0)
  );
  opacity: .55;
  pointer-events:none;
}

/* Alternate sections: light grey blocks (WP feel) */
.cwThemeLight .section.alt{
  background: linear-gradient(180deg, var(--cwSoft), var(--cwSoft2));
  border-top: 1px solid rgba(230,232,239,.95);
  border-bottom: 1px solid rgba(230,232,239,.95);
}

/* Feature icons: subtle warm tint */
.cwThemeLight .featureIcon{
  background:
    radial-gradient(circle at 30% 30%, rgba(255,46,106,.10), transparent 55%),
    radial-gradient(circle at 75% 20%, rgba(255,77,26,.08), transparent 55%),
    #fff;
}

/* Chips/badges: light grey pills */
.cwThemeLight .badge,
.cwThemeLight .chip{
  background: #ffffff;
  border: 1px solid rgba(230,232,239,.95);
  color: #344054;
  box-shadow: 0 8px 18px rgba(16,24,40,.05);
}

/* Screenshot hover */
.cwThemeLight .zoomable:hover{
  box-shadow: 0 22px 60px rgba(255,46,106,.12);
}

/* Pricing: featured card highlight */
.cwThemeLight .pricingCard.featured{
  border: 2px solid rgba(255,46,106,.22);
  box-shadow: 0 26px 80px rgba(255,46,106,.10);
  transform: translateY(-6px);
}
.cwThemeLight .pricingCard.featured::before{
  height: 5px;
  opacity: 1;
  background: linear-gradient(90deg, var(--cwAccent), var(--cwAccentAlt));
}
.cwThemeLight .planTop{
  background: linear-gradient(135deg, var(--cwAccentDeep), var(--cwAccentAlt));
  border: 1px solid rgba(255,77,26,.20);
  box-shadow: 0 12px 24px rgba(255,46,106,.12);
}

/* Sticky CTA: white pill */
.cwThemeLight .stickyInner{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(230,232,239,.95);
  box-shadow: 0 20px 60px rgba(16,24,40,.12);
}
.cwThemeLight .stickyTitle{ color:#0b1220; }
.cwThemeLight .stickySub{ color:#667085; }

/* Lightbox: white */
.cwThemeLight .lightboxDialog{
  background: #ffffff;
  border: 1px solid rgba(230,232,239,.95);
}
.cwThemeLight #lightboxCap{
  color:#667085;
}

.cwDemoBar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 12px;
  margin:-10px 0 14px 0;
  border-radius:14px;
  background:#0b1220;
  color:#fff;
  border:1px solid rgba(255,255,255,.10);
}
.cwDemoLeft{display:flex; align-items:center; gap:10px; font-weight:800;}
.cwDemoTag{
  display:inline-flex;
  align-items:center;
  padding:4px 10px;
  border-radius:999px;
  background:#ff3b6b;
  color:#fff;
  font-weight:900;
  letter-spacing:.02em;
  font-size:12px;
}
.cwDemoBtn{
  display:inline-block;
  padding:8px 12px;
  border-radius:12px;
  background:rgba(255,255,255,.14);
  color:#fff;
  text-decoration:none;
  font-weight:900;
}
.cwDemoBtn:hover{background:rgba(255,255,255,.22);}

.cwMiniLink{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(0,0,0,.06);
  color:inherit;
  text-decoration:none;
  font-weight:800;
}
.cwMiniLink:hover{background:rgba(0,0,0,.10);}