
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', system-ui, sans-serif; background: #fff; color: #1a1a1a; -webkit-font-smoothing: antialiased; font-size: 16px; line-height: 1.6; }
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }

    /* ── TOKENS ── */
    :root {
      --green: #3D5747;
      --green-light: #E7ECE8;
      --green-mid: #2C4034;
      --sage: #6b9e8f;
      --sand: #F0EDE7;
      --cream: #FAFAF7;
      --warm-white: #fff;
      --text: #111111;
      --text-mid: #4A4744;
      --text-soft: #8C8680;
      --border: #E5E0D8;
      --radius-sm: 4px;
      --radius-md: 6px;
      --radius-lg: 12px;
      --radius-pill: 100px;
      --shadow-sm: 0 2px 12px rgba(0,0,0,.06);
      --shadow-md: 0 4px 24px rgba(0,0,0,.09);
    }

    /* ── LAYOUT ── */
    .wrap { max-width: 1100px; margin: 0 auto; padding: 0 48px; }
    @media (max-width: 768px) { .wrap { padding: 0 20px; } }

    /* ── NAV ── */
    .nav {
      background: #fff;
      border-bottom: 1px solid var(--border);
    }
    .nav-inner {
      max-width: 1100px; margin: 0 auto; padding: 0 48px;
      display: flex; justify-content: space-between; align-items: center;
      height: 68px;
    }
    .nav-logo {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 22px; font-weight: 700; color: var(--text);
      letter-spacing: -0.01em; cursor: pointer;
    }
    .nav-logo span { color: var(--green); }
    .nav-links { display: flex; gap: 32px; }
    .nav-links a {
      font-size: 14px; font-weight: 500; color: var(--text-mid);
      transition: color 120ms; cursor: pointer;
    }
    .nav-links a:hover, .nav-links a.active { color: var(--green); }
    .nav-cta {
      background: var(--green); color: #fff;
      font-size: 14px; font-weight: 600;
      padding: 10px 22px; border-radius: var(--radius-pill);
      transition: background 120ms; cursor: pointer; border: none; font-family: inherit;
    }
    .nav-cta:hover { background: #2C4034; }

    .nav-right { display: flex; align-items: center; gap: 12px; }

    /* Hamburger button — hidden on desktop */
    .nav-hamburger {
      display: none;
      flex-direction: column; justify-content: center; gap: 5px;
      width: 36px; height: 36px; padding: 6px;
      background: transparent; border: none; cursor: pointer;
      border-radius: var(--radius-sm);
    }
    .nav-hamburger span {
      display: block; height: 2px; width: 100%;
      background: var(--text); border-radius: 2px;
      transition: transform 200ms, opacity 200ms;
    }
    .nav-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-open .nav-hamburger span:nth-child(2) { opacity: 0; }
    .nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile slide-down menu — hidden by default */
    .nav-mobile-menu {
      display: none;
      flex-direction: column;
      border-top: 1px solid var(--border);
      padding: 12px 20px 16px;
      gap: 4px;
    }
    .nav-mobile-menu a {
      font-size: 16px; font-weight: 500; color: var(--text-mid);
      padding: 10px 0; transition: color 120ms;
    }
    .nav-mobile-menu a:hover, .nav-mobile-menu a.active { color: var(--green); }
    .nav-mobile-menu .nav-mobile-cta {
      margin-top: 8px;
      display: inline-block;
      background: var(--green); color: #fff;
      font-size: 15px; font-weight: 600;
      padding: 12px 24px; border-radius: var(--radius-pill);
      text-align: center; width: 100%; box-sizing: border-box;
    }
    .nav-open .nav-mobile-menu { display: flex; }

    @media (max-width: 768px) {
      .nav-inner { padding: 0 20px; }
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      /* Hide the CTA in the nav bar on small screens — it's in the mobile menu */
      .nav-cta { display: none; }
      /* Center THE MOMENT pill when two-col collapses */
      .two-col .section-pill {
        display: block;
        width: -webkit-fit-content;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
      }
      /* Center section headings and descriptions on mobile */
      .section-title, .section-sub { text-align: center; }
      /* Center Jules card content on mobile */
      .jules-card-body { text-align: center; }
    }

    /* ── HERO ── */
    .hero {
      background: radial-gradient(ellipse 80% 60% at 50% 0%, #c8dfd9 0%, #e8f2ef 40%, #fff 80%);
      padding: 80px 0 40px;
      text-align: center;
    }
    .hero-pill {
      display: inline-flex; align-items: center;
      background: rgba(61,87,71,.1); color: var(--green);
      font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
      padding: 5px 14px; border-radius: var(--radius-pill);
      margin-bottom: 28px;
    }
    .hero h1 {
      font-size: clamp(40px, 5vw, 62px);
      font-weight: 800; line-height: 1.08; letter-spacing: -0.03em;
      color: var(--text); max-width: 720px; margin: 0 auto 20px;
    }
    .hero h1 em {
      font-style: italic; font-weight: 600;
      font-family: Georgia, 'Times New Roman', serif;
      color: var(--green);
    }
    .hero-sub {
      font-size: 18px; color: var(--text-mid); line-height: 1.6;
      max-width: 520px; margin: 0 auto 36px;
    }
    .hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
    .btn-primary {
      background: var(--green); color: #fff;
      font-size: 15px; font-weight: 600; font-family: inherit;
      padding: 14px 28px; border-radius: var(--radius-pill);
      border: none; cursor: pointer; transition: background 120ms;
    }
    .btn-primary:hover { background: #2C4034; }
    .btn-ghost {
      background: transparent; color: var(--green);
      font-size: 15px; font-weight: 600; font-family: inherit;
      padding: 13px 27px; border-radius: var(--radius-pill);
      border: 1.5px solid var(--green); cursor: pointer; transition: all 120ms;
    }
    .btn-ghost:hover { background: var(--green-light); }

    /* ── SECTION WRAPPER ── */
    .section { padding: 72px 0; }
    .section.bg-cream { background: var(--cream); }
    .section.bg-sand { background: var(--sand); }

    .section-pill {
      display: inline-flex;
      background: var(--green-light); color: var(--green);
      font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
      padding: 5px 14px; border-radius: var(--radius-pill);
      margin-bottom: 20px;
    }
    .section-title {
      font-size: clamp(28px, 3.5vw, 42px);
      font-weight: 800; line-height: 1.12; letter-spacing: -0.025em;
      color: var(--text); max-width: 640px;
      margin: 0 auto 16px;
    }
    .section-sub {
      font-size: 17px; color: var(--text-mid); line-height: 1.6;
      max-width: 520px; margin: 0 auto 40px;
    }

    /* ── TWO-COL ── */
    .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    .two-col.flip { direction: rtl; }
    .two-col.flip > * { direction: ltr; }
    @media (max-width: 840px) { .two-col { grid-template-columns: 1fr; gap: 32px; } .two-col.flip { direction: ltr; } }

    /* ── OUTCOME CARDS ── */
    .outcomes-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
      margin-top: 40px;
    }
    .outcome-card {
      background: #fff; border-radius: var(--radius-md);
      padding: 28px 24px; box-shadow: var(--shadow-sm);
      border: 1px solid var(--border);
      transition: transform 150ms, box-shadow 150ms;
    }
    .outcome-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
    .outcome-card.span2 { grid-column: span 2; }
    .outcome-icon { display:flex; align-items:center; justify-content:center; width:48px; height:48px; background: var(--green-light); border-radius: 50%; margin-bottom: 16px; padding: 10px; }
    .outcome-card h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
    .outcome-card p { font-size: 14px; line-height: 1.6; color: var(--text-mid); }
    @media (max-width: 840px) { .outcomes-grid { grid-template-columns: 1fr; } .outcome-card.span2 { grid-column: span 1; } }

    /* ── QUOTE BLOCK ── */
    .quote-block {
      background: var(--green); color: #fff;
      border-radius: var(--radius-lg); padding: 56px 60px;
      text-align: center; margin: 72px 0;
    }
    .quote-block blockquote {
      font-family: Georgia, 'Times New Roman', serif;
      font-style: italic; font-size: clamp(22px, 2.5vw, 32px);
      line-height: 1.4; font-weight: 400;
      max-width: 620px; margin: 0 auto 20px;
    }
    .quote-block cite { font-size: 14px; color: rgba(255,255,255,0.85); font-style: normal; }
    @media (max-width: 768px) { .quote-block { padding: 40px 28px; } }

    /* ── JULES CARD ── */
    .jules-card {
      background: var(--cream); border-radius: var(--radius-lg);
      padding: 0; display: grid; grid-template-columns: 240px 1fr;
      gap: 0; align-items: stretch; overflow: hidden;
    }
    .jules-card-body { padding: 40px 44px; }
    .jules-avatar {
      aspect-ratio: unset; min-height: 340px; border-radius: 0;
      overflow: hidden; position: relative; flex-shrink: 0;
    }
    .jules-avatar img {
      width: 100%; height: 100%; object-fit: cover; object-position: center top;
      display: block;
    }
    .jules-avatar-inner {
      font-size: 72px; line-height: 1; margin-bottom: -8px;
    }
    .jules-name { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; color: var(--text); margin-bottom: 8px; }
    .jules-tag {
      display: inline-flex; background: var(--green-light); color: var(--green);
      font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
      padding: 4px 12px; border-radius: var(--radius-pill); margin-bottom: 16px;
    }
    .jules-bio { font-size: 16px; color: var(--text-mid); line-height: 1.65; margin-bottom: 24px; }
    .jules-link {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--green); color: #fff; font-size: 14px; font-weight: 600;
      padding: 11px 22px; border-radius: var(--radius-pill); cursor: pointer;
      transition: background 120ms; border: none; font-family: inherit;
    }
    .jules-link:hover { background: #2C4034; }
    @media (max-width: 768px) { .jules-card { grid-template-columns: 1fr; } .jules-avatar { min-height: 260px; width: 100%; border-radius: var(--radius-lg) var(--radius-lg) 0 0; } .jules-card-body { padding: 28px; } }

    /* ── MENTORSHIP FEATURE CARD ── */
    .ms-quote-card { padding: 52px 48px; }
    @media (max-width: 840px) { .ms-quote-card { padding: 32px 24px; } }

    /* ── MENTORSHIP NUMBERED ── */
    .mentorship-section {
      display: grid; grid-template-columns: 56px 1fr;
      gap: 32px; padding: 48px 0;
      border-top: 1px solid var(--border);
    }
    .ms-num {
      font-size: 13px; font-weight: 700; color: var(--green);
      background: var(--green-light); width: 40px; height: 40px;
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; margin-top: 4px;
    }
    .ms-title { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; color: var(--text); margin-bottom: 16px; }
    .ms-body { font-size: 16px; color: var(--text-mid); line-height: 1.7; max-width: 620px; }
    .ms-body p + p { margin-top: 12px; }
    .ms-body .pull {
      font-family: Georgia, 'Times New Roman', serif; font-style: italic;
      font-size: 20px; color: var(--text); line-height: 1.5;
      border-left: 3px solid var(--green); padding-left: 20px;
      margin: 24px 0;
    }

    /* ── OUTCOME INLINE ── */
    .outcome-rows { margin: 24px 0; max-width: 560px; }
    .outcome-row {
      display: flex; gap: 16px; align-items: baseline;
      padding: 14px 0; border-bottom: 1px solid var(--border);
    }
    .outcome-row:last-child { border-bottom: none; }
    .or-label { font-weight: 700; font-size: 15px; color: var(--text); min-width: 120px; }
    .or-desc { font-size: 15px; color: var(--text-mid); line-height: 1.55; }

    /* ── SYSTEM BLOCKS ── */
    .system-block {
      background: white; border-radius: var(--radius-md);
      padding: 28px 32px;
      border: 1px solid rgba(0,0,0,0.07);
    }
    .system-block h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
    .system-block p { font-size: 15px; color: var(--text-mid); line-height: 1.65; }

    /* ── EMAIL CAPTURE ── */
    .email-section {
      background: var(--sand); border-radius: var(--radius-lg);
      padding: 64px 56px; text-align: center;
      margin: 72px 0;
    }
    .email-section h2 { font-size: 34px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
    .email-section p { font-size: 16px; color: var(--text-mid); margin-bottom: 32px; }
    .email-form {
      display: flex; gap: 10px; max-width: 440px; margin: 0 auto;
    }
    .email-form input {
      flex: 1; background: #fff; border: 1.5px solid var(--border);
      padding: 13px 18px; border-radius: var(--radius-pill);
      font-size: 15px; font-family: inherit; color: var(--text);
      transition: border-color 120ms;
    }
    .email-form input:focus { outline: none; border-color: var(--green); }
    .email-form button {
      background: var(--green); color: #fff; border: none;
      padding: 13px 24px; border-radius: var(--radius-pill);
      font-size: 15px; font-weight: 600; font-family: inherit;
      white-space: nowrap; cursor: pointer; transition: background 120ms;
    }
    .email-form button:hover { background: #2C4034; }
    @media (max-width: 600px) { .email-form { flex-direction: column; } .email-section { padding: 40px 24px; } }

    /* ── FOOTER ── */
    footer {
      background: #1a1a1a; color: #ccc;
      padding: 56px 0 32px;
    }
    .footer-inner {
      max-width: 1100px; margin: 0 auto; padding: 0 48px;
    }
    .footer-top {
      display: grid; grid-template-columns: 1fr 1fr 1fr;
      gap: 48px; padding-bottom: 48px;
      border-bottom: 1px solid #2e2e2e;
    }
    .footer-brand .logo { font-size: 22px; font-weight: 700; color: #fff; font-family: 'Playfair Display', Georgia, serif; letter-spacing: -0.01em; margin-bottom: 10px; }
    .footer-brand .logo span { color: #9BB8A8; }
    .footer-brand p { font-size: 14px; line-height: 1.6; color: #888; max-width: 220px; }
    .footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #999; margin-bottom: 16px; }
    .footer-col a { display: block; font-size: 14px; color: #aaa; margin-bottom: 10px; transition: color 120ms; cursor: pointer; }
    .footer-col a:hover { color: #E7ECE8; }
    .footer-col .email-link { font-size: 13px; color: #9BB8A8; }
    .footer-bottom-bar {
      padding-top: 28px;
      display: flex; justify-content: space-between; align-items: center;
      font-size: 12px; color: #888;
    }
    .footer-bottom-bar a { color: #888; transition: color 120ms; }
    .footer-bottom-bar a:hover { color: #6abaa9; }
    @media (max-width: 768px) { .footer-top { grid-template-columns: 1fr; gap: 32px; } .footer-inner { padding: 0 20px; } }

    /* ── CONTACT PAGE ── */
    .contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
    .contact-card {
      background: var(--cream); border-radius: var(--radius-md);
      padding: 28px 24px; border: 1px solid var(--border);
    }
    .contact-card .cc-label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-mid); margin-bottom: 10px; }
    .contact-card a { font-size: 14px; font-weight: 600; color: var(--green); }
    @media (max-width: 768px) { .contact-cards { grid-template-columns: 1fr; } }

    /* ── WAITLIST PAGE ── */
    .wl-layout { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; background: var(--cream); }
    .wl-brand { display: flex; flex-direction: column; justify-content: center; padding: 80px 64px; position: relative; overflow: hidden; }
    .wl-form-panel { display: flex; flex-direction: column; justify-content: center; padding: 80px 64px; background: #FAFAF7; }
    .wl-name-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
    @media (max-width: 768px) {
      .wl-layout { grid-template-columns: 1fr; min-height: unset; }
      .wl-brand { display: none; }
      .wl-form-panel { padding: 48px 24px; }
      .wl-name-row { grid-template-columns: 1fr; }
    }

    /* ── LINK ARROW ── */
    .link-arrow { display: inline-flex; align-items: center; gap: 6px; font-size: 15px; font-weight: 600; color: var(--green); cursor: pointer; transition: gap 120ms; }
    .link-arrow:hover { gap: 10px; }

    .nav-links a.current { color: var(--green); }

    /* ── FOCUS INDICATORS (AA) ── */
    :focus-visible {
      outline: 2px solid var(--green);
      outline-offset: 3px;
      border-radius: 3px;
    }
    .btn-primary:focus-visible, .btn-ghost:focus-visible,
    .nav-cta:focus-visible, .jules-link:focus-visible { border-radius: var(--radius-pill); }
    .email-form input:focus-visible { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(61,87,71,.2); }
