.elementor-28766 .elementor-element.elementor-element-97f2102{--display:flex;}/* Start custom CSS for html, class: .elementor-element-314732c *//* ═══════════════════════════════════════════
   FABFUNNEL DESIGN TOKENS
   Matching brand from fabfunnellauncher.com
═══════════════════════════════════════════ */
:root {
  /* Brand */
  --ff-green:        #C4F000;
  --ff-green-hover:  #aad400;
  --ff-green-tint:   #f5ffe0;
  --ff-green-border: #d9f56e;
  --ff-navy:         #0D0F1C;
  --ff-navy-mid:     #1C1F32;
 
  /* Elementor-aligned neutrals */
  --body-bg:         #ffffff;
  --text-primary:    #1f2124;
  --text-secondary:  #4a4f5a;
  --text-muted:      #69727d;
  --border:          #e5e8ed;
  --bg-light:        #f7f8fa;
  --bg-section:      #ffffff;
 
  /* Elementor spacing */
  --container-max:   1200px;
  --widget-gap:      20px;
  --section-pad:     60px 0;
 
  /* Type */
  --font-body:       'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading:    'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
 
  /* Radius */
  --radius:          8px;
  --radius-sm:       5px;
  --radius-pill:     100px;
}
 
/* ── BASE ── */
body {
  font-family: var(--font-body);
  background: var(--body-bg);
  color: var(--text-primary);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
 
/* ── ELEMENTOR-STYLE CONTAINER ── */
.e-container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 20px;
  position: relative;
}
 
/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.site-nav {
  background: var(--ff-navy);
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
}
.nav-inner {
  max-width: var(--container-max);
  margin-inline: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
}
.nav-logo-mark {
  width: 28px;
  height: 28px;
  background: var(--ff-green);
  border-radius: 6px;
  display: grid;
  place-items: center;
}
.nav-logo-mark svg { width: 16px; height: 16px; fill: var(--ff-navy); }
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: #fff;
}
.nav-logo-text span { color: var(--ff-green); }
.nav-badge {
  font-size: 11.5px;
  font-weight: 500;
  color: #6b7499;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ff-green);
}
 
/* ═══════════════════════════════════════════
   HERO SECTION
   Navy background with grid overlay — same as fabfunnellauncher.com hero
═══════════════════════════════════════════ */
.hero-section {
  background: var(--ff-navy);
  padding:100px 20px 56px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 340px;
  background: radial-gradient(ellipse, rgba(196,240,0,.15) 0%, transparent 68%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--container-max);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(196,240,0,.1);
  border: 1px solid rgba(196,240,0,.28);
  color: var(--ff-green);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.hero-chip svg { width: 12px; height: 12px; fill: currentColor; }
.hero-section h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 14px;
}
.hero-section h1 em {
  font-style: normal;
  color: var(--ff-green);
}
.hero-desc {
  font-size: 15px;
  color: #7a83a8;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: #5a6080;
  font-weight: 500;
}
.hero-meta-item svg {
  width: 14px; height: 14px;
  stroke: var(--ff-green); fill: none; stroke-width: 2;
}
.hero-meta-item strong { color: #8f97b8; font-weight: 500; }
 
/* ═══════════════════════════════════════════
   MAIN LAYOUT — Elementor 2-column grid
   Left: sticky TOC sidebar
   Right: content sections
═══════════════════════════════════════════ */
.page-layout {
  padding: 48px 20px 80px;
  max-width: var(--container-max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 768px) {
  .page-layout { grid-template-columns: 1fr; }
  .toc-sidebar { display: none; }
}
 
/* ─ TOC SIDEBAR ─ */
.toc-sidebar {
  position: sticky;
  top: 80px;
}
.toc-card {
  background: var(--body-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
}
.toc-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 10px;
}
.toc-nav { display: flex; flex-direction: column; gap: 1px; list-style:none ;padding:0;}
.toc-nav a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 400;
  transition: background .15s, color .15s;
  line-height: 1.4;
}
.toc-nav a:hover,
.toc-nav a.active {
  background: var(--ff-green-tint);
  color: var(--text-primary);
}
.toc-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
  transition: background .15s;
}
.toc-nav a:hover .toc-dot,
.toc-nav a.active .toc-dot { background: var(--ff-green-hover); }
 
/* ─ CONTENT COLUMN ─ */
.content-col { min-width: 0; }
 
/* ═══════════════════════════════════════════
   SECTION CARDS
   White cards with border, Elementor style
═══════════════════════════════════════════ */
.pp-section {
  background: var(--body-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  margin-bottom: 16px;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .4s ease, transform .4s ease;
}
.pp-section.visible {
  opacity: 1;
  transform: none;
}
 
/* Section header row */
.pp-section-header {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.pp-icon {
  width: 38px; height: 38px;
  background: var(--ff-green-tint);
  border: 1px solid var(--ff-green-border);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.pp-icon svg { width: 17px; height: 17px; stroke: #5a8a00; fill: none; stroke-width: 2; }
.pp-section-meta { line-height: 1; }
.pp-section-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.pp-section h2 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -.015em;
  line-height: 1.2;
}
 
/* ─ BODY TEXT ─ */
.pp-section p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 12px;
}
.pp-section p:last-child { margin-bottom: 0; }
 
/* ─ SUB CARDS ─ */
.sub-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-bottom: 10px;
}
.sub-card:last-child { margin-bottom: 0; }
.sub-card-title {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 11px;
}
.sub-card-title svg { width: 12px; height: 12px; stroke: #5a8a00; fill: none; stroke-width: 2.5; }
 
/* ─ DOT LIST ─ */
ul.dot-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
ul.dot-list li {
  padding-left: 17px;
  position: relative;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}
ul.dot-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--ff-green-hover);
}
 
/* ─ NUMBERED LIST ─ */
ol.num-list {
  list-style: none;
  counter-reset: nl;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
ol.num-list li {
  counter-increment: nl;
  padding-left: 36px;
  position: relative;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}
ol.num-list li::before {
  content: counter(nl);
  position: absolute;
  left: 0; top: 1px;
  width: 23px; height: 23px;
  background: var(--ff-navy);
  color: var(--ff-green);
  border-radius: 5px;
  font-size: 10px;
  font-weight: 700;
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
}
 
/* ─ SHARE GRID (do/don't) ─ */
.share-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 520px) { .share-grid { grid-template-columns: 1fr; } }
 
.share-card {
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  border: 1px solid;
}
.share-card.dont {
  background: #fff8f8;
  border-color: #fdd;
}
.share-card.do {
  background: var(--ff-green-tint);
  border-color: var(--ff-green-border);
}
.share-card-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.share-card.dont .share-card-label { color: #c0392b; }
.share-card.do  .share-card-label { color: #5a8a00; }
.share-card.dont ul.dot-list li::before { background: #e74c3c; }
.share-card.dont ul.dot-list li { color: #7a3030; }
.share-card.do  ul.dot-list li { color: #3a5200; }
.share-card.do  ul.dot-list li::before { background: #5a8a00; }
 
/* ─ RIGHTS GRID ─ */
.rights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 500px) { .rights-grid { grid-template-columns: 1fr; } }
 
.right-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.right-card-icon {
  width: 34px; height: 34px;
  background: var(--ff-navy);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.right-card-icon svg { width: 15px; height: 15px; stroke: var(--ff-green); fill: none; stroke-width: 2; }
.right-card h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
  font-family: var(--font-heading);
}
.right-card p { font-size: 12.5px; color: var(--text-muted); margin: 0; line-height: 1.5; }
 
/* ─ PERMISSIONS TABLE ─ */
.perm-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.perm-table thead tr {
  border-bottom: 2px solid var(--border);
}
.perm-table th {
  text-align: left;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 10px 16px 10px 0;
}
.perm-table td {
  padding: 13px 16px 13px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  vertical-align: top;
  line-height: 1.55;
}
.perm-badge {
  display: inline-flex;
  align-items: center;
  background: var(--ff-navy);
  color: var(--ff-green);
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  letter-spacing: .02em;
}
 
/* ─ NOTICE (warning pill) ─ */
.notice-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fffdf0;
  border: 1px solid #f5e090;
  border-left: 3px solid #f0c000;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 14px;
  color: #6b5500;
  line-height: 1.65;
}
.notice-box svg { width: 16px; height: 16px; stroke: #c09000; fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
 
/* ─ CONTACT BOX ─ */
.contact-box {
  background: var(--ff-navy);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.contact-box-icon {
  width: 50px; height: 50px;
  background: rgba(196,240,0,.12);
  border: 1px solid rgba(196,240,0,.25);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-box-icon svg { width: 22px; height: 22px; stroke: var(--ff-green); fill: none; stroke-width: 1.8; }
.contact-box-info h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}
.contact-box-info p { font-size: 13.5px; color: #6b7499; line-height: 1.75; margin: 0; }
.contact-box-info a { color: var(--ff-green); font-weight: 500; }
.contact-box-info a:hover { text-decoration: underline; }
 
/* ─ CONSENT BLOCK ─ */
.consent-block {
  background: var(--ff-green-tint);
  border: 1px solid var(--ff-green-border);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: 13.5px;
  color: #3a4a10;
  line-height: 1.7;
  margin-top: 4px;
}
.consent-block strong { color: var(--text-primary); }/* End custom CSS */