    body { background: var(--c-bg); }

    /* ── Minimal nav ── */
    .site-nav { border-bottom: 1px solid rgba(255,255,255,0.08); }

    /* ── Hero ── */
    .nl-hero {
      padding: 80px 32px 72px;
      text-align: center;
      max-width: 680px;
      margin: 0 auto;
    }
    .nl-hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--f-ui);
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--c-accent);
      background: rgba(232,71,44,0.08);
      padding: 5px 12px;
      border-radius: 20px;
      border: 1px solid rgba(232,71,44,0.18);
      margin-bottom: 24px;
    }
    .nl-hero-badge::before { content:''; width:6px; height:6px; background:var(--c-accent); border-radius:50%; }
    .nl-hero h1 {
      font-family: var(--f-display);
      font-size: 52px;
      font-weight: 900;
      line-height: 1.06;
      color: var(--c-dark);
      letter-spacing: -1.5px;
      margin-bottom: 18px;
      text-wrap: balance;
    }
    .nl-hero h1 em { font-style: normal; color: var(--c-accent); }
    .nl-hero-sub {
      font-family: var(--f-body);
      font-size: 19px;
      color: var(--c-muted);
      line-height: 1.6;
      margin-bottom: 36px;
      text-wrap: pretty;
    }
    .nl-hero .nl-form {
      display: flex;
      gap: 8px;
      max-width: 460px;
      margin: 0 auto 14px;
    }
    .nl-hero .nl-form input {
      flex: 1;
      min-width: 0;
      padding: 14px 18px;
      border: 1.5px solid var(--c-border);
      border-radius: 6px;
      font-family: var(--f-ui);
      font-size: 15px;
      color: var(--c-text);
      background: var(--c-surface);
      outline: none;
      transition: border-color .15s;
    }
    .nl-hero .nl-form input::placeholder { color: var(--c-muted); }
    .nl-hero .nl-form input:focus { border-color: var(--c-dark); background: var(--c-surface); }
    .nl-hero .nl-form button {
      background: var(--c-accent-dk);
      color: #fff;
      font-family: var(--f-ui);
      font-weight: 700;
      font-size: 14px;
      padding: 14px 24px;
      border-radius: 6px;
      white-space: nowrap;
      flex-shrink: 0;
      transition: background .15s;
    }
    .nl-hero .nl-form button:hover { background: #a92f1a; }
    .nl-hero-note {
      font-family: var(--f-ui);
      font-size: 12px;
      color: var(--c-muted);
    }
    .nl-hero-note strong { color: var(--c-dark); font-weight: 600; }

    /* ── Send schedule badges ── */
    .send-badges {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin: 28px 0 0;
      flex-wrap: wrap;
    }
    .send-badge {
      font-family: var(--f-ui);
      font-size: 12px;
      font-weight: 600;
      color: var(--c-dark);
      background: var(--c-surface);
      border: 1px solid var(--c-border);
      padding: 5px 12px;
      border-radius: 20px;
    }

    /* ── Social proof ── */
    .social-proof {
      background: var(--c-surface);
      border-top: 1px solid var(--c-border);
      border-bottom: 1px solid var(--c-border);
      padding: 28px 32px;
      text-align: center;
    }
    .sp-label {
      font-family: var(--f-ui);
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--c-muted);
      margin-bottom: 18px;
    }
    .sp-logos {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 36px;
      flex-wrap: wrap;
    }
    .sp-logo {
      font-family: var(--f-display);
      font-size: 14px;
      font-weight: 800;
      color: #bbb;
      letter-spacing: -0.3px;
      text-transform: uppercase;
    }
    .sp-stat {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 48px;
      margin-top: 24px;
      flex-wrap: wrap;
      padding-top: 22px;
      border-top: 1px solid var(--c-border);
    }
    .sp-stat-item { text-align: center; }
    .sp-stat-num {
      font-family: var(--f-display);
      font-size: 32px;
      font-weight: 900;
      color: var(--c-dark);
      letter-spacing: -1px;
      line-height: 1;
      margin-bottom: 4px;
    }
    .sp-stat-label {
      font-family: var(--f-ui);
      font-size: 12px;
      color: var(--c-muted);
    }

    /* ── Sample issue ── */
    .sample-section {
      padding: 72px 32px;
      max-width: 780px;
      margin: 0 auto;
    }
    .sample-section .section-head { justify-content: center; border-bottom: none; margin-bottom: 32px; }
    .sample-section .section-head h2 { font-size: 13px; }
    .sample-issue {
      background: var(--c-surface);
      border: 1px solid var(--c-border);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    }
    .si-header {
      background: var(--c-dark);
      padding: 18px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .si-logo {
      font-family: var(--f-display);
      font-weight: 900;
      font-size: 16px;
      color: #fff;
      text-transform: lowercase;
      letter-spacing: -0.5px;
    }
    .si-logo span { color: var(--c-accent); }
    .si-date { font-family: var(--f-ui); font-size: 11px; color: rgba(255,255,255,0.4); }
    .si-body { padding: 28px 28px 24px; }
    .si-intro {
      font-family: var(--f-body);
      font-size: 15px;
      color: var(--c-muted);
      line-height: 1.65;
      margin-bottom: 24px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--c-border);
    }
    .si-sponsor {
      background: rgba(245,166,35,0.06);
      border: 1px solid rgba(245,166,35,0.2);
      border-radius: 6px;
      padding: 12px 16px;
      margin-bottom: 22px;
      font-family: var(--f-ui);
      font-size: 12px;
      color: var(--c-muted);
    }
    .si-sponsor strong { color: var(--c-dark); }
    .si-story { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--c-border); }
    .si-story:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
    .si-story-tag {
      font-family: var(--f-ui);
      font-size: 10px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--c-accent);
      margin-bottom: 5px;
    }
    .si-story-head {
      font-family: var(--f-display);
      font-size: 16px;
      font-weight: 700;
      color: var(--c-dark);
      margin-bottom: 6px;
      line-height: 1.3;
    }
    .si-story-body {
      font-family: var(--f-ui);
      font-size: 13px;
      color: var(--c-muted);
      line-height: 1.6;
    }
    .si-story-link {
      font-family: var(--f-ui);
      font-size: 12px;
      font-weight: 600;
      color: var(--c-accent);
      display: inline-block;
      margin-top: 6px;
    }
    .si-story-link:hover { text-decoration: underline; }

    /* ── What you'll get ── */
    .features-section {
      background: var(--c-dark);
      padding: 72px 32px;
      text-align: center;
    }
    .features-section h2 {
      font-family: var(--f-display);
      font-size: 32px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 10px;
    }
    .features-section .sub {
      font-family: var(--f-ui);
      font-size: 15px;
      color: rgba(255,255,255,0.5);
      margin-bottom: 48px;
      max-width: 440px;
      margin-left: auto;
      margin-right: auto;
    }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 900px;
      margin: 0 auto;
    }
    .feature-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius);
      padding: 28px 24px;
      text-align: left;
    }
    .feature-icon {
      width: 40px;
      height: 40px;
      background: rgba(232,71,44,0.15);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      font-size: 18px;
    }
    .feature-name {
      font-family: var(--f-display);
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
    }
    .feature-desc {
      font-family: var(--f-ui);
      font-size: 13px;
      color: rgba(255,255,255,0.5);
      line-height: 1.6;
    }

    /* ── Editor blurb ── */
    .editor-section {
      max-width: 640px;
      margin: 0 auto;
      padding: 72px 32px;
      display: flex;
      gap: 28px;
      align-items: flex-start;
    }
    .editor-body { flex: 1; }
    .editor-name {
      font-family: var(--f-display);
      font-size: 20px;
      font-weight: 800;
      color: var(--c-dark);
      margin-bottom: 4px;
    }
    .editor-role {
      font-family: var(--f-ui);
      font-size: 12px;
      font-weight: 600;
      color: var(--c-accent);
      margin-bottom: 14px;
    }
    .editor-quote {
      font-family: var(--f-body);
      font-size: 17px;
      color: #3a3a36;
      line-height: 1.7;
      font-style: italic;
    }

    /* ── Second capture ── */
    .second-capture {
      background: var(--c-surface);
      border-top: 1px solid var(--c-border);
      border-bottom: 1px solid var(--c-border);
      padding: 72px 32px;
      text-align: center;
    }
    .second-capture h2 {
      font-family: var(--f-display);
      font-size: 36px;
      font-weight: 800;
      color: var(--c-dark);
      margin-bottom: 10px;
      letter-spacing: -0.5px;
      text-wrap: balance;
    }
    .second-capture p {
      font-family: var(--f-ui);
      font-size: 15px;
      color: var(--c-muted);
      margin-bottom: 28px;
      max-width: 420px;
      margin-left: auto;
      margin-right: auto;
    }

    @media (max-width: 720px) {
      .nl-hero h1 { font-size: 38px; }
      .nl-hero { padding: 56px 20px 52px; }
      .nl-hero .nl-form { flex-direction: column; }
      .features-grid { grid-template-columns: 1fr; max-width: 400px; }
      .sp-logos { gap: 20px; }
      .editor-section { flex-direction: column; padding: 52px 20px; }
      .sample-section { padding: 52px 20px; }
    }
