  
  
  Pulse Media Group — Political Email Operations
  
  
  
  
  
  
  
    :root {
}

    *,::before,::after {
	box-sizing: border-box;
}

    html,body {
	height: 100%;
}

    body {
	font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

    a {
	color: inherit;
	text-decoration: none;
}

    .container {
	width: var(--container);
}

    .btn {
	align-items: center;
	gap: .6rem;
	padding: .9rem 1.2rem;
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
	font-weight: 600;
	letter-spacing: .2px;
	transition: .2s ease;
	box-shadow: var(--shadow)     ;
}

    .btn:hover {
	transform: translateY(-1px);
	border-color: transparent;
	box-shadow: 0 12px 30px rgba(158,199,255,.22);
}

    .btn-primary {
	background: linear-gradient(180deg, var(--accent), var(--accent-2));
	color: #0a1020;
	border: none;
}

    .btn-ghost {
	background: transparent;
}

    .tag {
	display: inline-block;
	font-size: .78rem;
	letter-spacing: .35px;
	text-transform: uppercase;
	padding: .35rem .6rem;
	border-radius: 999px;
	background: rgba(158,199,255,.12);
	color: var(--accent);
	border: 1px solid rgba(158,199,255,.25);
}

    .section {
	padding: 72px 0;
}

    header {
	top: 0;
	z-index: 50;
}

    nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 68px;
	width: var(--container);
}

    .brand {
	display: flex;
	align-items: center;
	gap: .7rem;
	font-weight: 800;
	letter-spacing: .4px;
}

    .brand svg {
	width: 26px;
	height: 26px;
}

    .small {
	font-size: .92rem;
	color: var(--muted);
}

    /* hero */
    .hero {
	padding: 100px 0 56px;
}

    .hero-inner {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 36px;
	align-items: center;
}

    .hero h1 {
	font-size: var(--fs-1);
	line-height: 1.08;
	margin: .4rem 0 1rem;
}

    .hero p {
	font-size: var(--fs-2);
	color: var(--muted);
}

    .panel {
	background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 22px;
	box-shadow: var(--shadow);
}

    /* cards / features */
    .grid {
	display: grid;
	gap: 24px;
}

    .cards {
	grid-template-columns: repeat(3, minmax(0,1fr));
}

    .card {
	background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 22px;
	box-shadow: var(--shadow);
	min-height: 220px;
}

    .card h3 {
	margin: .15rem 0 .5rem;
	font-size: 1.18rem;
}

    .card p {
	color: var(--muted);
}

    /* trust */
    .trust {
	opacity: .95;
}

    .logo-row {
	display: grid;
	grid-template-columns: repeat(6, minmax(0,1fr));
	gap: 22px;
	align-items: center;
	filter: grayscale(1) contrast(1.05) opacity(.8);
}

    .logo {
	height: 28px;
	border: 1px dashed rgba(255,255,255,.07);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

    /* pricing */
    .pricing {
	grid-template-columns: repeat(3, minmax(0,1fr));
}

    .price-card {
	display: flex;
	flex-direction: column;
	gap: 16px;
	background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 24px;
	box-shadow: var(--shadow);
}

    .price-card.highlight {
	border-color: rgba(158,199,255,.45);
	box-shadow: 0 20px 40px rgba(158,199,255,.18), inset 0 1px 0 rgba(255,255,255,.05);
}

    .price {
	display: flex;
	align-items: flex-end;
	gap: .4rem;
	margin: .4rem 0;
}

    .price b {
	font-size: 2rem;
}

    .features {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: .5rem;
}

    .check {
	width: 18px;
	height: 18px;
	margin-top: .2rem;
	flex: 0 0 auto;
}

    /* addon */
    .addon {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	background: linear-gradient(180deg, rgba(0,229,168,.08), rgba(0,229,168,.02));
	border: 1px solid rgba(0,229,168,.25);
	border-radius: var(--radius-lg);
	padding: 28px;
	box-shadow: var(--shadow);
}

    /* cta + form */
    .cta {
	text-align: center;
	background: radial-gradient(600px 280px at 50% -20%, rgba(158,199,255,.12), transparent 60%);
}

    .inline-field {
	display: flex;
	gap: 10px;
	justify-content: center;
	flex-wrap: wrap;
}

    .inline-field input {
	padding: .9rem 1rem;
	border-radius: 999px;
	border: 1px solid var(--border);
	background: #0c1428;
	color: var(--text);
	transition: .2s ease;
	box-shadow: inset 0 0 0 1px transparent;
}

    .inline-field input:focus {
	box-shadow: inset 0 0 0 2px var(--ring);
}

    details {
	background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 16px 18px;
}

    summary {
	cursor: pointer;
	font-weight: 600;
}

    details+details {
	margin-top: 12px;
}

    footer {
	padding: 60px 0;
	border-top: 1px solid rgba(255,255,255,.06);
	color: var(--muted);
}

    .foot {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	flex-wrap: wrap;
}

    @media (max-width: 980px) {
}

      .cards {
	grid-template-columns: 1fr 1fr;
}

      .pricing {
	grid-template-columns: 1fr;
	gap: 18px;
}

      .addon {
	grid-template-columns: 1fr;
}

      .logo-row {
	grid-template-columns: repeat(3, minmax(0,1fr));
}	
}

    @media (max-width: 600px) {
}

      nav {
}

      .section {
	padding: 56px 0;
}	
}

  


  
  
    
      
        
          
          
        
        Pulse Media Group
      
      
        Pricing
        Get a Proposal
      
    
  
 
  
  
    
      
        Campaigns • Committees • Advocacy
        Compliance-first email operations for high-stakes campaigns.
        We build reliable email programs for national committees, gubernatorial and Senate races, and leading advocacy orgs—secure infrastructure, disciplined production, and measurable outcomes without the drama.
        
          See Pricing
          Constituent Geo Data
        
        
          Program Snapshot
          
            Inbox Placement98–99%
            Send CadenceDaily/Surge-safe
            Uptime SLA99.9%
          
        
      
      
        Compliance & Security
        
           Opt-in tracking, consent logs, and suppression hygiene
           Role-based access, SSO, and audit trails
           GDPR/CCPA alignment; FEC-friendly disclaimer placement
           Incident response and deliverability remediation
        
      
    
  
 
  
  
    Trusted by national & statewide efforts
    
      NATIONAL CMTE
      SENATE
      GOV
      PAC
      COALITION
      ISSUE ORG
    
  
 
  
  
    
      
        War-Room Production
        Surge workflows for debates, endorsements, and breaking news with approvals, legal checks, and message control.
      
      
        Deliverability Discipline
        List governance, warmups, segmentation hygiene, and feedback loops to maintain inbox placement through EOM blitzes.
      
      
        Analytics & Stewardship
        Revenue and engagement dashboards, cohort trends, and weekly memos that keep principals and finance aligned.
      
    
  
 
  
  
    Packages for Political Programs
    
      
      
        Campaign
        Launch
        $1,800/mo
        
           ESP setup/migration & DNS (SPF/DKIM/DMARC)
           4 sends / month + welcome + abandon flows
           List import with consent verification
           Monthly compliance review
        
        Choose Launch
        For local & first-time runs • up to 25k contacts
      
 
      
      
        Most Popular
        War Room
        $4,200/mo
        
           10–14 sends / month + 6+ automated flows
           Surge-safe approvals & legal signoff paths
           Advanced segmentation & deliverability guardrails
           Weekly analytics memo for principals/finance
        
        Choose War Room
        Statewide & congressional • up to 150k contacts
      
 
      
      
        National
        Enterprise
        Custom/quote
        
           Multi-brand / multi-committee architecture
           Dedicated strategist, deliverability lead & analyst
           Priority SLAs & 24/7 surge coverage
           International/Multilingual program support
        
        Talk to Sales
        National committees, coordinateds, large coalitions
      
    
    All plans exclude ESP fees. Month-to-month; cancel anytime.
  
 
  
  
    Add-On: Constituent Geo Data Suite
    
      
        Collect and maintain location-specific contact data to enable district-appropriate communications and compliance with opt-in standards.
        
           Capture district, state, ZIP/postcode & time zone
           Opt-in forms with geo-hinting; consent receipts & logs
           Data validation, deduplication & suppression management
           ESP sync & segment automation; audit-ready exports
           GDPR/CCPA alignment & data-retention controls
        
      
      
        Add-On
        Geo Data Suite
        $1,100/mo
        Implementation from $1,500 one-time
        Enable Add-On
      
    
    We do not sell voter files. All data is opt-in and client-owned; we maintain provenance logs, consent timestamps, and suppression records.
  
 
  
  
    
      Request a tailored proposal
      Share list size, ESP, and deadlines (debates, filing dates, EOM). We’ll return a short plan within 24 hours.
      
        
          
          
        
        
          
          
        
        
          
        
        
          Request Proposal
          Email Us
        
        
      
    
  
 
  
  
    FAQs
    
      Do you work with partisan and nonpartisan organizations?
      Yes. We are nonpartisan and support campaigns, committees, PACs, coalitions, and 501(c) orgs within their respective legal frameworks.
    
    
      How do you approach compliance?
      We set up consent tracking, suppression hygiene, audit logs, and disclaimer placement. We coordinate with counsel and adhere to applicable regulations including GDPR/CCPA. Clients are responsible for legal determinations; we provide operational controls.
    
    
      What security measures are in place?
      Role-based access, SSO, least-privilege permissions, encrypted data at rest/in transit, and incident response playbooks with 24/7 on-call for enterprise plans.
    
    
      Can you integrate with our finance & reporting stack?
      Yes. We support common ESPs and can export to your BI stack for revenue/engagement reporting and EOM close-outs.
    
  
 
  
  
    
      
        
        Pulse Media Group
      
      © 2025 Pulse Media Group. All rights reserved.
      Nonpartisan vendor. We do not sell or broker voter files.
    
  
 
  
    // Year stamp
    document.getElementById(year).textContent = new Date().getFullYear();
 
    // Simple form handler (demo only)
    const form = document.getElementById(lead-form);
    const msg = document.getElementById(form-msg);
    form.addEventListener(submit, function(e) {
}

      msg.textContent = 'Thanks! We’ll get back to you shortly.';
      msg.style.color = #00e5a8;
      form.reset();
      // In production, POST data to your backend:
      // fetch(/api/lead, {
}	
}

	
}