:root {
    --forest: #1a3a2a;
    --forest-deep: #122a1e;
    --sage: #4a7c5c;
    --mint: #7bc4a0;
    --mint-light: #a8dbbe;
    --lime-pop: #c8f075;
    --off-white: #f2f5ef;
    --paper: #e8ede3;
    --warm-white: #fafcf8;
    --charcoal: #1e2820;
    --mid-gray: #5a6b5e;
    --light-border: #d4ddd0;
    --data-green: #69e08c;
    --data-orange: #ffb347;
    --data-red: #ff6b6b;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Geist', sans-serif; background: var(--warm-white); color: var(--charcoal); overflow-x: hidden; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 56px;
    background: rgba(18,42,30,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200,240,117,0.15);
  }
  .nav-logo { font-family: 'Fraunces', serif; font-size: 1.45rem; font-weight: 600; color: var(--off-white); text-decoration: none; letter-spacing: -0.01em; }
  .nav-logo span { color: var(--lime-pop); }
.nav-links { display: flex; gap: 32px; align-items: center; }
  .nav-links a { color: rgba(242,245,239,0.6); text-decoration: none; font-size: 0.875rem; font-weight: 400; transition: color 0.2s; }
  .nav-links a:hover { color: var(--mint-light); }
  .nav-cta { background: var(--lime-pop) !important; color: var(--forest-deep) !important; padding: 9px 20px; border-radius: 6px; font-weight: 600 !important; transition: opacity 0.2s !important; }
  .nav-cta:hover { opacity: 0.88 !important; }

  /* HERO */
  .hero {
    min-height: 100vh; background: var(--forest-deep);
    display: flex; align-items: center;
    padding: 120px 56px 100px; position: relative; overflow: hidden;
  }
  .hero::before {
    content: ''; position: absolute; inset: 0;
    background-image: linear-gradient(rgba(200,240,117,0.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(200,240,117,0.04) 1px, transparent 1px);
    background-size: 48px 48px; pointer-events: none;
  }
  .hero::after {
    content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 80px;
    background: linear-gradient(to bottom, transparent, var(--warm-white));
    pointer-events: none; z-index: 2;
  }
  .hero-glow { position: absolute; top: -100px; right: 5%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(75,196,160,0.18) 0%, transparent 65%); pointer-events: none; }
  .hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; position: relative; z-index: 1; }

  .hero-tag {
    display: inline-flex; align-items: center; gap: 14px;
    color: rgba(200,240,117,0.7); font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    margin-bottom: 28px;
  }
  .hero-tag::before { display: none; }
  .hero-tag-sep { color: rgba(200,240,117,0.25); font-weight: 300; }
  @keyframes pulse { 0%,100%{opacity:1}50%{opacity:0.3} }

  .hero h1 { font-family: 'Fraunces', serif; font-size: clamp(2.4rem,4vw,3.6rem); font-weight: 600; color: var(--off-white); line-height: 1.1; margin-bottom: 22px; letter-spacing: -0.02em; }
  .hero h1 em { font-style: italic; color: var(--lime-pop); }
  .hero-sub { color: rgba(242,245,239,0.58); font-size: 1rem; line-height: 1.72; margin-bottom: 38px; max-width: 460px; font-weight: 300; }
  .hero-actions { display: flex; gap: 16px; align-items: center; }

  /* pain bullet dot — replaces emoji */
  .pain-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sage); flex-shrink: 0; margin-top: 5px; }
  /* wo bullet dot — replaces emoji */
  .wo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime-pop); flex-shrink: 0; margin-top: 5px; }
  /* mv bullet dot — replaces emoji */
  .mv-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime-pop); flex-shrink: 0; margin-top: 5px; }

  .btn-primary { background: var(--lime-pop); color: var(--forest-deep); padding: 13px 26px; border-radius: 6px; font-weight: 600; font-size: 0.9rem; text-decoration: none; transition: opacity 0.2s, transform 0.15s; display: inline-block; }
  .btn-primary:hover { opacity: 0.88; transform: translateY(-2px); }
  .btn-ghost { color: rgba(242,245,239,0.55); font-size: 0.875rem; text-decoration: none; display: flex; align-items: center; gap: 6px; transition: color 0.2s; }
  .btn-ghost:hover { color: var(--mint-light); }

  /* HERO OUTCOME CARD */
  .hero-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(200,240,117,0.15); border-radius: 14px; overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,0.4); }
  .card-topbar { background: rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.08); padding: 14px 20px; display: flex; align-items: center; justify-content: space-between; }
  .card-brand { font-family: 'Fraunces', serif; font-size: 1rem; font-weight: 600; color: rgba(242,245,239,0.9); letter-spacing: -0.01em; }
  .card-brand span { color: var(--lime-pop); }
  .card-topbar-right { display: flex; align-items: center; gap: 10px; }
  .card-week { font-size: 0.68rem; color: rgba(242,245,239,0.35); letter-spacing: 0.05em; }
  .card-badge { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--forest); background: var(--lime-pop); padding: 3px 8px; border-radius: 4px; }
  .card-body { padding: 24px; }

  /* outcome items in the card */
  .outcome-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
  .outcome-item {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px; padding: 16px 18px;
    display: flex; gap: 14px; align-items: flex-start;
  }
  .outcome-item.highlight { border-color: rgba(200,240,117,0.25); background: rgba(200,240,117,0.06); }
  .outcome-ico { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
  .outcome-text { flex: 1; }
  .outcome-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(242,245,239,0.38); margin-bottom: 3px; }
  .outcome-item.highlight .outcome-label { color: var(--lime-pop); opacity: 0.8; }
  .outcome-decision { font-size: 0.88rem; color: var(--off-white); font-weight: 500; line-height: 1.4; margin-bottom: 4px; }
  .outcome-sub { font-size: 0.75rem; color: rgba(242,245,239,0.45); line-height: 1.4; }
  .outcome-item.highlight .outcome-sub { color: rgba(200,240,117,0.65); }

  .card-footer-note {
    background: rgba(105,224,140,0.08); border: 1px solid rgba(105,224,140,0.18);
    border-radius: 8px; padding: 12px 16px;
    font-size: 0.76rem; color: rgba(242,245,239,0.6); line-height: 1.5;
  }
  .card-footer-note strong { color: var(--data-green); }

  /* SHARED */
  section { padding: 96px 56px; }
  .si { max-width: 1200px; margin: 0 auto; }
  .eyebrow { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); margin-bottom: 10px; }
  .eyebrow.lt { color: var(--mint); }
  .sh { font-family: 'Fraunces', serif; font-size: clamp(1.9rem,3.2vw,2.7rem); font-weight: 600; line-height: 1.13; letter-spacing: -0.02em; margin-bottom: 16px; }
  .sh em { font-style: italic; color: var(--sage); }
  .sh.lt { color: var(--off-white); }
  .sh.lt em { color: var(--lime-pop); }
  .sp { font-size: 0.975rem; color: var(--mid-gray); line-height: 1.72; max-width: 520px; font-weight: 300; }
  .sp.lt { color: rgba(242,245,239,0.55); }

  /* PROBLEM */
  .problem { background: var(--off-white); }
  .prob-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-top: 56px; }
  .pain-list { display: flex; flex-direction: column; gap: 14px; }
  .pain { background: transparent; border: none; border-left: 3px solid var(--light-border); padding: 6px 0 6px 20px; display: flex; gap: 14px; transition: border-color 0.2s; }
  .pain:hover { border-color: var(--sage); transform: none; }
  .pain-ico { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
  .pain-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sage); flex-shrink: 0; margin-top: 6px; }
  .pain h4 { font-size: 0.9rem; font-weight: 600; color: var(--charcoal); margin-bottom: 5px; }
  .pain p { font-size: 0.82rem; color: var(--mid-gray); line-height: 1.6; }
  .big-stat { font-family: 'Fraunces', serif; font-size: 5rem; font-weight: 600; color: var(--forest); line-height: 0.9; letter-spacing: -0.04em; margin-bottom: 10px; }
  .big-stat em { font-style: italic; color: var(--sage); }
  .big-sub { font-size: 0.9rem; color: var(--mid-gray); line-height: 1.65; margin-bottom: 32px; font-weight: 300; }
  .rule { height: 1px; background: var(--light-border); margin: 24px 0; }

  /* MONEY LEFT */
  .money { background: var(--forest); position: relative; overflow: hidden; }
  .money::before {
    content: ''; position: absolute; inset: 0;
    background-image: linear-gradient(rgba(200,240,117,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(200,240,117,0.03) 1px, transparent 1px);
    background-size: 48px 48px; pointer-events: none;
  }
  .money-intro { max-width: 640px; margin-bottom: 56px; position: relative; z-index: 1; }
  .money-intro p { font-size: 1rem; color: rgba(242,245,239,0.6); line-height: 1.72; font-weight: 300; margin-top: 16px; }
  .stat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 40px; position: relative; z-index: 1; }
  .stat-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(200,240,117,0.14); border-radius: 12px; padding: 28px 24px; transition: background 0.2s, border-color 0.2s; }
  .stat-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(200,240,117,0.3); }
  .stat-num { font-family: 'Fraunces', serif; font-size: 2.8rem; font-weight: 600; line-height: 1; letter-spacing: -0.03em; color: var(--lime-pop); margin-bottom: 8px; }
  .stat-card h4 { font-size: 0.9rem; font-weight: 600; color: var(--off-white); margin-bottom: 8px; }
  .stat-card p { font-size: 0.8rem; color: rgba(242,245,239,0.48); line-height: 1.6; }
  .stat-source { font-size: 0.65rem; color: rgba(242,245,239,0.25); margin-top: 12px; font-style: italic; }
  .money-callout {
    position: relative; z-index: 1;
    background: rgba(200,240,117,0.08); border: 1px solid rgba(200,240,117,0.22);
    border-radius: 12px; padding: 28px 32px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center;
  }
  .money-callout h3 { font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 600; color: var(--off-white); line-height: 1.3; margin-bottom: 10px; }
  .money-callout h3 em { font-style: italic; color: var(--lime-pop); }
  .money-callout p { font-size: 0.85rem; color: rgba(242,245,239,0.55); line-height: 1.65; }
  .callout-right { display: flex; flex-direction: column; justify-content: center; height: 100%; }
  .callout-stat { display: flex; flex-direction: column; gap: 12px; }
  .callout-stat-num { font-family: 'Fraunces', serif; font-size: 3.2rem; font-weight: 600; color: var(--lime-pop); line-height: 1; letter-spacing: -0.03em; }
  .callout-stat-text { font-size: 0.875rem; color: rgba(242,245,239,0.62); line-height: 1.65; }

  /* WHAT WE DO */
  .what { background: var(--off-white); }
  .what-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-top: 56px; }
  .what-outcomes { display: flex; flex-direction: column; gap: 14px; }
  .wo {
    background: transparent; border: none;
    border-left: 3px solid var(--light-border);
    padding: 6px 0 6px 20px;
    display: flex; gap: 16px; align-items: flex-start;
    transition: border-color 0.2s;
  }
  .wo:hover { border-color: var(--lime-pop); transform: none; }
  .wo-ico { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
  .wo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime-pop); flex-shrink: 0; margin-top: 6px; }
  .wo h4 { font-size: 0.9rem; font-weight: 600; color: var(--charcoal); margin-bottom: 5px; }
  .wo p { font-size: 0.82rem; color: var(--mid-gray); line-height: 1.6; }
  .what-right h3 { font-family: 'Fraunces', serif; font-size: 1.7rem; font-weight: 600; line-height: 1.2; margin-bottom: 14px; letter-spacing: -0.02em; }
  .what-right h3 em { font-style: italic; color: var(--sage); }
  .what-right p { font-size: 0.9rem; color: var(--mid-gray); line-height: 1.72; margin-bottom: 16px; font-weight: 300; }
  .what-note {
    margin-top: 28px;
    background: var(--forest);
    border-radius: 10px; padding: 20px 22px;
  }
  .what-note p { font-size: 0.85rem; color: rgba(242,245,239,0.62); line-height: 1.65; }
  .what-note p strong { color: var(--lime-pop); }

  /* GET STARTED STEPS */
  .steps { background: var(--forest); position: relative; overflow: hidden; }
  .steps::before {
    content: ''; position: absolute; inset: 0;
    background-image: linear-gradient(rgba(200,240,117,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(200,240,117,0.03) 1px, transparent 1px);
    background-size: 48px 48px; pointer-events: none;
  }
  .steps .eyebrow { color: var(--mint); }
  .steps .sh { color: var(--off-white); }
  .steps .sh em { color: var(--lime-pop); }
  .steps .sp { color: rgba(242,245,239,0.55); }
  .steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 56px; position: relative; z-index: 1; }
  .steps-grid::before {
    content: ''; position: absolute; top: 22px; left: 42px; right: calc(25% - 42px);
    height: 2px; background: linear-gradient(90deg, var(--sage), var(--lime-pop));
    z-index: 0; opacity: 0.6;
  }
  .steps-grid::after {
    content: ''; position: absolute; top: 16px; right: calc(25% - 43px);
    width: 0; height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid var(--lime-pop);
    opacity: 0.6; z-index: 0;
  }
  .step { padding: 0 20px; position: relative; z-index: 1; display: flex; flex-direction: column; }
  .step-circle {
    width: 44px; height: 44px; border-radius: 4px;
    background: var(--forest); border: 2px solid var(--sage);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 600;
    color: var(--lime-pop); margin-bottom: 24px;
    position: relative; z-index: 2;
    transition: border-color 0.2s, background 0.2s;
  }
  .step:hover .step-circle { border-color: var(--lime-pop); background: rgba(200,240,117,0.1); }
  .step-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mint); margin-bottom: 8px; }
  .step h3 { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 600; color: var(--off-white); margin-bottom: 10px; letter-spacing: -0.01em; }
  .step p { font-size: 0.82rem; color: rgba(242,245,239,0.55); line-height: 1.65; }
  .step-detail { margin-top: auto; padding-top: 14px; display: flex; flex-direction: column; gap: 6px; }
  .step-detail span { font-size: 0.75rem; line-height: 1.5; color: rgba(242,245,239,0.45); display: flex; gap: 8px; align-items: baseline; }
  .step-detail span::before { content: '→'; color: var(--lime-pop); flex-shrink: 0; font-weight: 600; line-height: 1.5; }

  /* WHO */
  .who { background: var(--warm-white); }
  .who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 56px; align-items: start; }
  .fit-list { display: flex; flex-direction: column; gap: 12px; }
  .fit { display: flex; gap: 12px; align-items: flex-start; padding: 18px 20px; background: var(--off-white); border: 1px solid var(--light-border); border-radius: 8px; transition: border-color 0.2s; }
  .fit:hover { border-color: var(--sage); }
  .fit-chk { width: 20px; height: 20px; border-radius: 50%; background: var(--forest); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; color: var(--lime-pop); margin-top: 1px; }
  .fit p { font-size: 0.875rem; color: var(--charcoal); line-height: 1.5; }
  .fit p strong { color: var(--forest); }
  .who-r h3 { font-family: 'Fraunces', serif; font-size: 1.7rem; font-weight: 600; line-height: 1.2; margin-bottom: 14px; letter-spacing: -0.02em; }
  .who-r h3 em { font-style: italic; color: var(--sage); }
  .who-r p { font-size: 0.875rem; color: var(--mid-gray); line-height: 1.7; margin-bottom: 16px; font-weight: 300; }
  .trade-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
  .trade { background: var(--forest); color: var(--off-white); padding: 7px 16px; border-radius: 100px; font-size: 0.8rem; font-weight: 500; }

  /* PRICING */
  .pricing { background: var(--off-white); }
  .price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 56px; }
  .pc { background: var(--warm-white); border: 1px solid var(--light-border); border-radius: 0; border-top: 3px solid var(--light-border); padding: 34px 28px; position: relative; transition: transform 0.2s, box-shadow 0.2s; }
  .pc:hover { transform: translateY(-5px); box-shadow: 0 24px 64px rgba(26,58,42,0.1); }
  .pc.feat { background: var(--forest); border-color: rgba(200,240,117,0.3); border-top: 3px solid var(--lime-pop); }
  .feat-pill { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--lime-pop); color: var(--forest-deep); font-size: 0.68rem; font-weight: 700; padding: 4px 14px; border-radius: 100px; white-space: nowrap; }
  .pc-eye { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage); margin-bottom: 6px; }
  .pc.feat .pc-eye { color: var(--mint); }
  .pc-name { font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 600; margin-bottom: 4px; }
  .pc.feat .pc-name { color: var(--off-white); }
  .pc-for { font-size: 0.78rem; color: var(--mid-gray); margin-bottom: 22px; }
  .pc.feat .pc-for { color: rgba(242,245,239,0.5); }
  .pc-amt { font-family: 'Fraunces', serif; font-size: 2.8rem; font-weight: 600; line-height: 1; letter-spacing: -0.03em; margin-bottom: 3px; }
  .pc.feat .pc-amt { color: var(--off-white); }
  .pc-cad { font-size: 0.78rem; color: var(--mid-gray); margin-bottom: 24px; }
  .pc.feat .pc-cad { color: rgba(242,245,239,0.45); }
  .pc-feats { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
  .pc-feats li { font-size: 0.83rem; color: var(--charcoal); display: flex; gap: 10px; align-items: flex-start; line-height: 1.4; }
  .pc.feat .pc-feats li { color: rgba(242,245,239,0.75); }
  .pc-feats li::before { content: '✓'; color: var(--sage); font-weight: 700; flex-shrink: 0; }
  .pc.feat .pc-feats li::before { color: var(--lime-pop); }
  .pc-btn { display: block; text-align: center; padding: 12px; border-radius: 7px; font-weight: 600; font-size: 0.875rem; text-decoration: none; transition: all 0.2s; background: var(--paper); color: var(--forest); border: 1px solid var(--light-border); }
  .pc.feat .pc-btn { background: var(--lime-pop); color: var(--forest-deep); border-color: var(--lime-pop); }
  .pc-btn:hover { opacity: 0.82; transform: translateY(-1px); }

  /* MISSION */
  .mission { background: var(--forest-deep); position: relative; overflow: hidden; }
  .mission::before {
    content: ''; position: absolute; inset: 0;
    background-image: linear-gradient(rgba(200,240,117,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(200,240,117,0.03) 1px, transparent 1px);
    background-size: 48px 48px; pointer-events: none;
  }
  .mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; position: relative; z-index: 1; }
  .mission-values { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
  .mv { display: flex; gap: 14px; align-items: flex-start; padding: 20px 22px; background: rgba(255,255,255,0.04); border: 1px solid rgba(200,240,117,0.1); border-radius: 10px; transition: border-color 0.2s; }
  .mv:hover { border-color: rgba(200,240,117,0.28); }
  .mv-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
  .mv-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime-pop); flex-shrink: 0; margin-top: 6px; }
  .mv h4 { font-size: 0.88rem; font-weight: 600; color: var(--off-white); margin-bottom: 4px; }
  .mv p { font-size: 0.8rem; color: rgba(242,245,239,0.48); line-height: 1.6; }
  .mission-panel { background: rgba(255,255,255,0.04); border: 1px solid rgba(200,240,117,0.15); border-radius: 14px; padding: 36px; }
  .mission-panel-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mint); margin-bottom: 16px; }
  .mission-statement { font-family: 'Fraunces', serif; font-size: 1.35rem; font-weight: 600; color: var(--off-white); line-height: 1.35; letter-spacing: -0.01em; margin-bottom: 20px; }
  .mission-statement em { font-style: italic; color: var(--lime-pop); }
  .mission-body { font-size: 0.875rem; color: rgba(242,245,239,0.55); line-height: 1.78; font-weight: 300; margin-bottom: 28px; }
  .mission-body p { margin-bottom: 14px; }
  .mission-body p:last-child { margin-bottom: 0; }
  .mission-quote { border-left: 2px solid rgba(200,240,117,0.35); padding-left: 16px; margin-bottom: 28px; }
  .mission-quote p { font-size: 0.875rem; color: rgba(242,245,239,0.6); line-height: 1.7; font-style: italic; font-weight: 300; }
  .mission-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .ms { background: rgba(255,255,255,0.06); border-radius: 9px; padding: 16px; }
  .ms-val { font-family: 'Fraunces', serif; font-size: 1.6rem; color: var(--off-white); line-height: 1; margin-bottom: 4px; }
  .ms-lbl { font-size: 0.68rem; color: rgba(242,245,239,0.38); }

  /* CTA */
  .cta-sec { background: var(--forest); padding: 100px 56px; position: relative; overflow: hidden; }
  .cta-sec::before { content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 700px; height: 700px; background: radial-gradient(circle, rgba(200,240,117,0.08), transparent 65%); pointer-events: none; }
  .cta-inner { max-width: 720px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
  .cta-feats { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; margin-bottom: 36px; }
  .cta-feat { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: rgba(242,245,239,0.52); }
  .cta-feat::before { content: '✓'; width: 17px; height: 17px; border-radius: 50%; background: rgba(200,240,117,0.15); color: var(--lime-pop); font-size: 0.6rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .cta-fine { margin-top: 14px; font-size: 0.75rem; color: rgba(242,245,239,0.28); }

  /* FOOTER */
  footer { background: var(--forest-deep); border-top: 1px solid rgba(200,240,117,0.1); padding: 36px 56px; display: flex; align-items: center; justify-content: space-between; }
  .f-logo { font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 600; color: var(--off-white); text-decoration: none; }
  .f-logo span { color: var(--lime-pop); }
  .f-links { display: flex; gap: 26px; }
  .f-links a { font-size: 0.8rem; color: rgba(242,245,239,0.38); text-decoration: none; transition: color 0.2s; }
  .f-links a:hover { color: var(--mint-light); }
  .f-copy { font-size: 0.75rem; color: rgba(242,245,239,0.25); }

  /* ANIMATIONS */
  @keyframes fadeUp { from{opacity:0;transform:translateY(22px)}to{opacity:1;transform:translateY(0)} }
  .hero-left > * { animation: fadeUp 0.55s ease both; }
  .hero-left > *:nth-child(1){animation-delay:0.05s}
  .hero-left > *:nth-child(2){animation-delay:0.15s}
  .hero-left > *:nth-child(3){animation-delay:0.25s}
  .hero-left > *:nth-child(4){animation-delay:0.35s}
  .hero-right { animation: fadeUp 0.6s ease 0.45s both; }

  /* RESPONSIVE */
  /* HAMBURGER */
  .nav-hamburger {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px; z-index: 200;
  }
  .nav-hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--off-white); border-radius: 2px;
    transition: all 0.25s;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* MOBILE MENU */
  .mobile-menu {
    display: none; flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--forest-deep); z-index: 99;
    padding: 100px 32px 40px;
    gap: 8px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-link {
    color: rgba(242,245,239,0.7); text-decoration: none;
    font-size: 1.2rem; font-weight: 400; padding: 14px 0;
    border-bottom: 1px solid rgba(200,240,117,0.08);
    transition: color 0.2s;
  }
  .mobile-link:hover { color: var(--lime-pop); }
  .mobile-link.nav-cta {
    margin-top: 16px; background: var(--lime-pop) !important;
    color: var(--forest-deep) !important; text-align: center;
    padding: 14px !important; border-radius: 8px; font-weight: 600;
    border-bottom: none;
  }

  @media(max-width:920px){
    nav{padding:14px 20px}.nav-links{display:none}
    .nav-hamburger{display:flex}
    section{padding:64px 20px}.hero{padding:100px 20px 70px}
    .hero-inner,.prob-grid,.what-grid,.who-grid,.mission-grid,.money-callout{grid-template-columns:1fr;gap:36px}
    .stat-grid,.steps-grid{grid-template-columns:1fr 1fr}
    .steps-grid::before{display:none}
    .price-grid{grid-template-columns:1fr !important;max-width:100% !important}
    footer{flex-direction:column;gap:18px;text-align:center}
    .f-links{flex-wrap:wrap;justify-content:center}
    /* contact section inline grid */
    #contact .si > div{grid-template-columns:1fr !important;gap:32px}
  }
  @media(max-width:580px){
    .stat-grid,.steps-grid{grid-template-columns:1fr}
  }
  /* prevent horizontal overflow on all screens */
  html, body { max-width:100%; overflow-x:hidden; }
  *, *::before, *::after { max-width:100%; }
  @media(max-width:920px){
    .contact-grid { grid-template-columns:1fr !important; gap:32px !important; }
    #contact { padding:64px 20px !important; }
    #faq { padding:64px 20px !important; }
  }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--light-border); }
  .faq-item:first-child { border-top: 1px solid var(--light-border); }
  .faq-q {
    width: 100%; background: none; border: none; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    gap: 20px; padding: 22px 0;
    font-family: 'Geist', sans-serif; font-size: 0.95rem; font-weight: 600;
    color: var(--charcoal); text-align: left;
    transition: color 0.2s;
  }
  .faq-q:hover { color: var(--sage); }
  .faq-arrow { font-size: 1.3rem; font-weight: 300; flex-shrink: 0; color: var(--sage); transition: transform 0.25s; }
  .faq-a { display: none; padding: 0 0 22px; }
  .faq-a p { font-size: 0.875rem; color: var(--mid-gray); line-height: 1.75; font-weight: 300; max-width: 700px; }
  .faq-item.open .faq-a { display: block; }
  .faq-item.open .faq-arrow { transform: rotate(45deg); }
  .faq-item.open .faq-q { color: var(--sage); }

/* ── TWEAKS PANEL ────────────────────────────────────────── */
#tweaks-panel {
    position: fixed; right: 20px; bottom: 20px; z-index: 9999;
    width: 340px; max-width: calc(100vw - 40px); max-height: calc(100vh - 40px);
    background: var(--forest-deep); color: var(--off-white);
    border: 1px solid rgba(200,240,117,0.25); border-radius: 12px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.45);
    font-family: 'Geist', sans-serif; font-size: 0.82rem;
    display: none; flex-direction: column; overflow: hidden;
  }
  #tweaks-panel.open { display: flex; }
  #tweaks-panel .tw-head {
    padding: 14px 18px; border-bottom: 1px solid rgba(200,240,117,0.12);
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(255,255,255,0.03);
  }
  #tweaks-panel .tw-title {
    font-family: 'Fraunces', serif; font-size: 1rem; font-weight: 600; color: var(--lime-pop);
    letter-spacing: -0.01em;
  }
  #tweaks-panel .tw-close {
    background: transparent; border: none; color: rgba(242,245,239,0.5);
    font-size: 1.2rem; cursor: pointer; line-height: 1; padding: 0 4px;
  }
  #tweaks-panel .tw-close:hover { color: var(--lime-pop); }
  #tweaks-panel .tw-body { padding: 16px 18px; overflow-y: auto; display: flex; flex-direction: column; gap: 16px; }
  #tweaks-panel label {
    display: block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: rgba(200,240,117,0.7); margin-bottom: 6px;
  }
  #tweaks-panel .tw-hint {
    font-size: 0.72rem; color: rgba(242,245,239,0.45); line-height: 1.5; margin-bottom: 8px; font-weight: 300;
  }
  #tweaks-panel .tw-presets { display: flex; flex-direction: column; gap: 6px; }
  #tweaks-panel .tw-preset {
    width: 100%; text-align: left; cursor: pointer;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(200,240,117,0.12);
    color: var(--off-white); padding: 9px 12px; border-radius: 7px;
    font-family: 'Geist', sans-serif; font-size: 0.8rem; transition: all 0.15s;
  }
  #tweaks-panel .tw-preset:hover { border-color: rgba(200,240,117,0.4); background: rgba(200,240,117,0.06); }
  #tweaks-panel .tw-preset.active { border-color: var(--lime-pop); background: rgba(200,240,117,0.12); color: var(--lime-pop); }
  #tweaks-panel .tw-preset small { display: block; color: rgba(242,245,239,0.4); font-size: 0.68rem; margin-top: 3px; font-weight: 300; }
  #tweaks-panel input[type="text"] {
    width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(200,240,117,0.15);
    color: var(--off-white); padding: 8px 10px; border-radius: 6px;
    font-family: 'Geist', sans-serif; font-size: 0.8rem; margin-bottom: 6px;
  }
  #tweaks-panel input[type="text"]:focus { outline: none; border-color: var(--lime-pop); }
  #tweaks-panel .tw-custom { display: flex; flex-direction: column; gap: 4px; }
  #tweaks-panel .tw-sub {
    font-size: 0.65rem; color: rgba(242,245,239,0.35); letter-spacing: 0.08em;
    text-transform: uppercase; font-weight: 500;
  }

/* ── PRICING GRID (2-column layout) ────────────────────── */
/* Inline grid-template-columns/max-width moved here        */
.price-grid { grid-template-columns: 1fr 1fr; max-width: 820px; }

/* ── PROBLEM SECTION ────────────────────────────────────── */
.big-stat.reduced { font-size: 4rem; }
.prob-note { font-size: 0.875rem; color: var(--mid-gray); line-height: 1.7; font-weight: 300; }

/* ── PRICING CARDS ──────────────────────────────────────── */
.feat-pill.secondary { background: var(--sage); color: var(--off-white); }
.pc-promo-note { font-size: 0.75rem; color: var(--mid-gray); margin-bottom: 16px; line-height: 1.5; }
.price-note {
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid var(--light-border);
  font-size: 0.85rem; color: var(--mid-gray);
  text-align: center; display: flex; align-items: center; justify-content: center; gap: 6px; flex-wrap: wrap;
}
.price-note a { color: var(--forest); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.price-note a:hover { color: var(--sage); }

/* ── WHO SECTION ─────────────────────────────────────────── */
.eyebrow-spaced { margin-top: 28px; margin-bottom: 10px; }

/* ── CTA SECTION ─────────────────────────────────────────── */
.eyebrow-centered { text-align: center; margin-bottom: 10px; }
.sh-centered { text-align: center; margin-bottom: 16px; }
.sp-centered { text-align: center; margin: 0 auto 36px; max-width: 520px; }
.btn-primary-lg { font-size: 0.95rem; padding: 15px 34px; }

/* ── FAQ SECTION ─────────────────────────────────────────── */
.faq { background: var(--off-white); }
.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 0; }

/* ── CONTACT SECTION ─────────────────────────────────────── */
.contact-section { background: var(--forest); padding: 80px 56px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.contact-actions { display: flex; flex-direction: column; gap: 20px; }
.contact-heading { margin-bottom: 16px; }
.contact-email {
  display: flex; gap: 18px; align-items: center;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(200,240,117,0.18);
  border-radius: 12px; padding: 22px 24px;
  text-decoration: none; transition: border-color 0.2s;
}
.contact-email:hover { border-color: rgba(200,240,117,0.4); }
.contact-email-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-email-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mint); margin-bottom: 4px; }
.contact-email-addr { font-family: 'Fraunces', serif; font-size: 1rem; color: var(--off-white); font-weight: 600; }
.contact-email-sub { font-size: 0.75rem; color: rgba(242,245,239,0.4); margin-top: 2px; }
.contact-cta { text-align: center; padding: 14px; }

/* ── DELIVERABLES ─────────────────────────────────────────── */
.deliv-sec { background: var(--paper); }
.deliv-intro { max-width: 640px; margin-bottom: 28px; }
.report-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 32px; }
.report-card {
  background: var(--warm-white); border: 1px solid var(--light-border);
  border-top: 3px solid var(--sage);
  border-radius: 10px; padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s, border-top-color 0.2s;
  display: flex; flex-direction: column;
}
.report-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(26,58,42,0.1); border-top-color: var(--lime-pop); }
.report-card.featured { background: var(--forest); border-color: rgba(200,240,117,0.25); border-top: 3px solid var(--lime-pop); }
.report-freq { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); margin-bottom: 8px; }
.report-card.featured .report-freq { color: var(--mint); }
.report-name { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 600; color: var(--charcoal); margin-bottom: 10px; letter-spacing: -0.01em; }
.report-card.featured .report-name { color: var(--off-white); }
.report-desc { font-size: 0.82rem; color: var(--mid-gray); line-height: 1.65; margin-bottom: 16px; font-weight: 300; flex: 1; }
.report-card.featured .report-desc { color: rgba(242,245,239,0.55); }
.report-items { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.report-items li { font-size: 0.78rem; color: var(--mid-gray); display: flex; gap: 9px; align-items: flex-start; line-height: 1.4; }
.report-items li::before { content: '✓'; color: var(--sage); font-weight: 700; flex-shrink: 0; }
.report-card.featured .report-items li { color: rgba(242,245,239,0.65); }
.report-card.featured .report-items li::before { color: var(--lime-pop); }
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.support-card {
  background: var(--warm-white); border: 1px solid var(--light-border);
  border-radius: 10px; padding: 28px 24px;
  display: flex; gap: 18px; align-items: flex-start;
  transition: border-color 0.2s;
}
.support-card:hover { border-color: var(--sage); }
.support-ico {
  width: 44px; height: 44px; border-radius: 8px;
  background: var(--forest); border: 1px solid rgba(200,240,117,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--lime-pop); flex-shrink: 0;
}
.support-name { font-family: 'Fraunces', serif; font-size: 1rem; font-weight: 600; color: var(--charcoal); margin-bottom: 6px; }
.support-desc { font-size: 0.82rem; color: var(--mid-gray); line-height: 1.65; font-weight: 300; margin-bottom: 10px; }
.support-items { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.support-items li { font-size: 0.76rem; color: var(--mid-gray); display: flex; gap: 8px; align-items: flex-start; }
.support-items li::before { content: '→'; color: var(--sage); font-weight: 700; flex-shrink: 0; }

/* ── TRUST ───────────────────────────────────────────────── */
.trust-sec { background: var(--paper); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.trust-card {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 22px 20px;
  background: var(--warm-white); border: 1px solid var(--light-border);
  border-radius: 10px; transition: border-color 0.2s;
}
.trust-card:hover { border-color: var(--sage); }
.trust-chk {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--forest); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; color: var(--lime-pop); margin-top: 2px;
}
.trust-title { font-size: 0.875rem; font-weight: 600; color: var(--charcoal); margin-bottom: 5px; }
.trust-desc { font-size: 0.8rem; color: var(--mid-gray); line-height: 1.65; }
.trust-callout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--warm-white);
  border: 1px solid var(--light-border); border-left: 3px solid var(--sage);
  border-radius: 10px; margin-top: 16px;
  overflow: hidden; align-items: stretch;
}
.trust-callout-left { padding: 36px; }
.trust-callout h3 { font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 600; color: var(--charcoal); line-height: 1.3; margin-bottom: 10px; }
.trust-callout h3 em { font-style: italic; color: var(--sage); }
.trust-callout-left p { font-size: 0.85rem; color: var(--mid-gray); line-height: 1.65; }
.trust-callout-right {
  padding: 36px;
  display: flex; flex-direction: column; justify-content: center; gap: 14px;
}
.trust-callout-quote {
  font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 600;
  font-style: italic; color: var(--sage); line-height: 1.3;
}
.trust-callout-right p { font-size: 0.82rem; color: var(--mid-gray); line-height: 1.7; }

@media(max-width:920px){
  .report-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-callout { grid-template-columns: 1fr; }
}
