Sweeps

Why Everyone Is Suddenly Obsessed With Pens, Planners, and Paper Again

View saved
How does this find feel?

/* ========================= */
/* ZEBRA COLOR PALETTE */
/* ========================= */
:root {
–zebra-black: #000000;
–zebra-red: #c1121f;
–zebra-gray: #4a4a4a;
–zebra-cream: #fffaf4;
–zebra-soft: #ffecd1;
}

/* ========================= */
/* BOX 1 */
/* ========================= */

#zebra-box1 {
margin-bottom: 20px;
max-width: 860px;
margin-left: auto;
margin-right: auto;
}

#zebra-box1 .wrap {
background: var(–zebra-cream);
border-radius: 22px;
padding: 22px;
border: 2px solid rgba(0,0,0,.15);
box-shadow: 0 10px 28px rgba(0,0,0,.12);
color: var(–zebra-black);
}

#zebra-box1 .bar {
height: 6px;
border-radius: 6px;
background: linear-gradient(90deg, var(–zebra-black), var(–zebra-red));
margin-bottom: 14px;
}

#zebra-box1 h3 {
margin: 0 0 10px;
font-size: 21px;
font-weight: 900;
text-transform: uppercase;
color: var(–zebra-black);
}

#zebra-box1 .meta {
font-size: 14px;
opacity: .8;
margin-bottom: 14px;
}

#zebra-box1 .timer {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 12px;
}

#zebra-box1 .cell {
background: #ffffff;
border: 1px solid rgba(0,0,0,.15);
border-radius: 16px;
padding: 12px;
text-align: center;
}

#zebra-box1 .num {
font-size: 30px;
font-weight: 900;
color: var(–zebra-red);
}

#zebra-box1 .lbl {
font-size: 12px;
text-transform: uppercase;
opacity: .7;
}

/* ========================= */
/* OVERLAY */
/* ========================= */

#zebra-overlay {
position: fixed;
inset: 0;
background: rgba(0,0,0,.65);
display: flex;
align-items: center;
justify-content: center;
z-index: 99999;
}

#zebra-overlay .box {
background: var(–zebra-cream);
border-radius: 22px;
border: 3px solid var(–zebra-red);
padding: 36px 26px;
text-align: center;
max-width: 420px;
box-shadow: 0 8px 32px rgba(0,0,0,.35);
}

#zebra-overlay h2 {
font-size: 24px;
font-weight: 900;
color: var(–zebra-black);
margin-bottom: 10px;
}

#zebra-overlay p {
font-size: 16px;
color: var(–zebra-gray);
margin-bottom: 20px;
}

#zebra-overlay button {
background: linear-gradient(90deg, var(–zebra-black), var(–zebra-red));
color: #fff;
border: none;
border-radius: 16px;
padding: 14px 28px;
cursor: pointer;
font-weight: 800;
font-size: 16px;
box-shadow: 0 6px 20px rgba(0,0,0,.35);
}

#zebra-skip {
margin-top: 12px;
font-size: 13px;
color: var(–zebra-red);
text-decoration: underline;
cursor: pointer;
display: none;
}

/* ========================= */
/* BOX 2 */
/* ========================= */

#zebra-box2 {
margin-bottom: 20px;
max-width: 860px;
margin-left: auto;
margin-right: auto;
}

#zebra-box2 .card {
background: #ffffff;
border: 2px solid var(–zebra-black);
border-radius: 22px;
padding: 26px;
text-align: center;
box-shadow: 0 12px 28px rgba(0,0,0,.12);
}

#zebra-box2 h3 {
margin: 6px 0 12px;
font-size: 22px;
font-weight: 900;
color: var(–zebra-black);
}

#zebra-box2 .sub {
font-size: 15px;
margin-bottom: 12px;
color: var(–zebra-gray);
}

#zebra-box2 .cta {
display: inline-block;
margin-top: 12px;
background: linear-gradient(90deg, var(–zebra-black), var(–zebra-red));
color: #fff;
border-radius: 16px;
padding: 14px 34px;
font-weight: 900;
font-size: 18px;
text-decoration: none;
box-shadow: 0 6px 22px rgba(0,0,0,.35);
}

/* POPUP */
#zebra-popup {
display: none;
position: fixed;
top: 48%;
left: 50%;
transform: translate(-50%, -50%);
background: var(–zebra-soft);
padding: 24px 30px;
border-radius: 18px;
box-shadow: 0 0 32px rgba(0,0,0,.25);
z-index: 9999;
font-size: 18px;
font-weight: 900;
color: var(–zebra-black);
text-align: center;
}

/* CONFETTI */
canvas#zebra-confetti {
position: fixed;
inset: 0;
pointer-events: none;
z-index: 9998;
display: none;
}

/* ========================= */
/* BOX 3 */
/* ========================= */

#zebra-box3 .shell {
background: var(–zebra-cream);
border: 2px solid var(–zebra-black);
border-radius: 22px;
padding: 20px;
box-shadow: 0 10px 28px rgba(0,0,0,.08);
}

#zebra-box3 h3 {
margin: 6px 0 14px;
font-size: 21px;
font-weight: 900;
color: var(–zebra-black);
text-align: center;
}

#zebra-box3 .cta {
display: block;
text-align: center;
background: var(–zebra-red);
color: #fff;
border-radius: 16px;
padding: 16px;
font-weight: 900;
margin: 18px auto;
max-width: 320px;
text-decoration: none;
font-size: 20px;
box-shadow: 0 6px 16px rgba(0,0,0,.35);
animation: pulse 1.5s infinite;
}

@keyframes pulse {
0%,100% {transform:scale(1);}
50% {transform:scale(1.07);}
}

#zebra-box3 .grid {
display: grid;
gap: 16px;
}

#zebra-box3 .recap {
background: #fff;
border: 1px solid var(–zebra-soft);
border-radius: 16px;
padding: 16px;
}

#zebra-box3 .recap h4 {
margin: 0 0 8px;
font-size: 18px;
font-weight: 900;
color: var(–zebra-black);
}

#zebra-box3 ul {
padding-left: 20px;
}

#zebra-box3 dt {
font-weight: 800;
margin-top: 6px;
color: var(–zebra-black);
}

#zebra-box3 dd {
margin: 0 0 4px;
}



Zebra Pen “Zen’s 25 Days of Giving” Sweepstakes

Daily Entry • Ends Dec 25, 2025 • U.S. Residents 18+
Days
Hours
Minutes
Seconds

FIRST I NEED TO TELL YOU THE RULES!

This will only take a few seconds before the entry link appears.

Skip to entry (not recommended)



25 Days of Zen — Thousands of Prizes!

Enter daily for Zebra Pen, Workman Publishing, Pipsticks, Fabriano, Visa gift cards & more!

ENTER HERE

The Quiet Return of Analog: Why Millions Are Picking Up Pens, Planners, and Paper Again

Something unexpected is happening in a world that has spent a decade sprinting toward automation. After years of trading notebooks for apps and handwriting for keyboards, people are quietly returning to the tools everyone assumed were left in the 90s. Only now, they’re coming back with intention.

The shift isn’t driven by nostalgia. It’s driven by burnout. Consumers are tired of being optimized. They’re tired of everything living inside a screen. And for the first time in years, analog isn’t old-fashioned. It’s a power move.

Why Writing Things Down Still Works Better Than an App

Researchers have repeated the same finding for decades: handwriting activates deeper cognitive pathways than typing. When you write, the brain processes information through motion, memory, and spatial awareness. You aren’t just recording thoughts — you’re encoding them.

Typing, for all its speed, is fast food for the brain. You consume it and forget it. Your body wasn’t involved. Your senses weren’t engaged.

This is why paper planners keep selling out. It’s why journaling communities are exploding. And it’s why entire TikTok subcultures are built around pens, planners, desk setups, productivity rituals, and stationery hauls. People want the physical act of controlling their ideas again.

The Stationery Economy Is More Alive Than Ever

Stationery is no longer a niche corner of the craft aisle. It’s a cultural moment.

Paper planners are now marketed the same way wellness brands market supplements. Marker sets sell out the way limited-edition makeup drops used to. Journaling has become a mindfulness tool, a productivity system, a mental health anchor, and a creative outlet all at once.

Searches for “best highlighters,” “bullet journals,” and “daily planners” have climbed every single year since 2020. The demographic isn’t just students. It’s working adults, parents, creators, business owners, and anyone burned out from digital overload.

Analog tools became the antidote.

The Psychology Behind “Pen to Paper” Culture

There are three reasons analog is skyrocketing again:

  1. Control
    Writing lets the brain take ownership of information instead of trying to chase disappearing notifications.
  2. Attention
    You can’t scroll when you’re writing. You’re focused by default.
  3. Memory
    Handwritten notes are easier to recall because the physical movement forces deeper processing.

People aren’t buying pens for the ink. They’re buying structure, calm, clarity, and a sense of grounding in a world that pushes constant distraction.

The New Wave of Tools People Are Obsessed With

The modern stationery boom is very different from the old-school office-supply era. Today’s analog lovers want tools that feel elevated, intentional, and aesthetically sharp. They want smooth gel pens, ultra-fine markers, high-quality journaling paper, luxury planners, dot grids, color palettes, and sets that spark creativity.

And they want brands that understand the culture: the mornings spent planning, the weekly spreads, the lettering practice, the color-coding, the quiet nights with an open notebook, and the satisfaction of flipping through pages full of actual work — not forgotten digital clutter.

Why Stationery Content Performs So Well

From an RPM perspective, paper, pens, planners, productivity systems, and journaling culture are premium ad categories. They attract high-value advertisers from:

• office supply
• education
• wellness
• mental health
• lifestyle
• art & craft
• back-to-school
• tech productivity tools
• brand collaborations
• travel and luxury experiences

People who love stationery also tend to engage longer. They scroll. They read. They click deeper into pages. It’s a topic that naturally boosts dwell time — which publishers and advertisers adore.

The Unexpected Link Between Stationery and Self-Care

Self-care used to be packaged as bubble baths and spa days. Now it’s also planners, pens, and journals. People use analog tools to regulate stress, organize mental clutter, and make life feel manageable in a world that feels overstimulating by design.

Calm isn’t just a feeling anymore. It’s a practice — one that starts with a blank page.

The Rise of Creative Planning as a Lifestyle

The era of “performance planning” is here. People are designing aesthetic spreads, habit trackers, reading logs, financial planners, gratitude pages, and art-infused layouts. It’s part productivity, part creativity, and part lifestyle branding.

And once someone enters this world, they never go back to bare-bones office supplies. They want quality. They want color. They want tools that last.

This is why so many stationery brands are thriving — and why their giveaways, product drops, and collaborations perform exceptionally well.

So Why Does All of This Matter Right Now?

Because analog is no longer a minor trend. It’s a massive behavioral shift with staying power.

It proves something essential: people will always crave tactile experiences, creative expression, and tools that help them slow down. The digital world made life faster. Analog made life feel real again.

And this is exactly why the stationery category is exploding — from pens and markers to planners, sticker sets, creative kits, writing tools, and high-quality paper products.

And if you love stationery, this part is actually worth sticking around for

One of the biggest stationery events of the year is happening right now — and it’s the kind of giveaway that attracts both longtime journalers and total beginners.

Zebra Pen is running its “Zen’s 25 Days of Giving” Sweepstakes, a massive daily-entry event featuring thousands of prizes from partners across the creative and productivity world. Every day has a new prize drop, and each entry also counts toward the grand prize: a luxury South Caicos Island getaway for two, complete with a seven-night stay, transfers, spa experiences, and premium Zebra Pen creative bundles.

If you’re into journaling, planning, art supplies, desk setups, writing tools, or literally anything in the stationery spectrum, this is one of the most stacked holiday giveaways running this year.

And because it’s daily-entry, people come back every single day — which tells you everything you need to know about how big stationery culture has become.

Where to enter the Zebra Pen “Zen’s 25 Days of Giving” Sweepstakes

You can enter on Zebra Pen’s official page. It’s free, it’s open through December 25, and each day’s entry automatically goes into the grand prize drawing as well.

It’s a clean, reputable, major-brand sweepstake — and an actual bright spot for stationery lovers who want a chance at a serious haul or the kind of trip that doesn’t come around often.



You’ve Reached the Giveaway — Enter Below!

ENTER HERE

Prize Breakdown

  • Daily prizes for all 25 days
  • Thousands of pens, journals, art supplies & stationery
  • Multiple Visa gift cards throughout the promotion
  • Grand Prize: Luxury South Caicos Island Getaway for 2

Giveaway Recap

Sponsor
Zebra Pen Corporation
Entry Type
Daily Entry
Eligibility
U.S. Residents • 18+
Promotion Period
Dec 1 – Dec 25, 2025



document.addEventListener(“DOMContentLoaded”,()=>{

const d=document;
const daysEl=d.getElementById(“z-d”),
hoursEl=d.getElementById(“z-h”),
minutesEl=d.getElementById(“z-m”),
secondsEl=d.getElementById(“z-s”),
overlay=d.getElementById(“zebra-overlay”),
startBtn=d.getElementById(“zebra-start”),
skipBtn=d.getElementById(“zebra-skip”),
backupEnter=d.getElementById(“backup-enter”),
finalBtn=d.getElementById(“zebra-entry”),
popup=d.getElementById(“zebra-popup”),
confettiCanvas=d.getElementById(“zebra-confetti”);

let factTimeouts=[];
let scrollID=null;

/* TIMER */
const endDate=new Date(“2025-12-26T04:59:59Z”).getTime();
function pad(n){return n<10?"0"+n:n;}
function updateTimer(){
const diff=endDate-Date.now();
if(diff{skipBtn.style.display=”block”;},5000);

function startExperience(e){
e.preventDefault();
overlay.remove();
zebraBegin();
}

function dismissOverlay(e){
e.preventDefault();
overlay.remove();
}

startBtn.addEventListener(“click”,startExperience);
skipBtn.addEventListener(“click”,startExperience);

overlay.addEventListener(“click”,(e)=>{
if(e.target===overlay){dismissOverlay(e);}
});

/* CONFETTI */
function launchConfetti(){
const ctx=confettiCanvas.getContext(“2d”);
confettiCanvas.width=window.innerWidth;
confettiCanvas.height=window.innerHeight;
confettiCanvas.style.display=”block”;
const colors=[“#000000″,”#c1121f”,”#ffecd1″,”#4a4a4a”];
let p=[];
for(let i=0;iconfettiCanvas.height)a.y=-10;
}
requestAnimationFrame(draw);
})();
}

/* MAIN EXPERIENCE */
function zebraBegin(){
launchConfetti();

popup.style.display=”none”;
factTimeouts.forEach(clearTimeout);
factTimeouts=[];

const facts=[
“✨ 25 DAYS • 25 CHANCES — DAILY ENTRY!”,
“🖊️ Zebra Pen + 15 partner brands giving HUGE prize drops.”,
“🎁 Visa gift cards • Planners • Sticker packs • Art supplies!”,
“🏝️ Grand Prize: South Caicos Island Luxury Getaway!”,
“👇 Scrolling you to the entry page — hang tight!”
];

facts.forEach((f,i)=>{
const st=setTimeout(()=>{
popup.textContent=f;
popup.style.display=”block”;
const ht=setTimeout(()=>popup.style.display=”none”,9500);
factTimeouts.push(ht);
},1000+i*10000);
factTimeouts.push(st);
});

setTimeout(()=>{
const startY=window.pageYOffset;
const endY=finalBtn.getBoundingClientRect().top+startY;
const dist=endY-startY;
const duration=window.innerWidth<768?45000:30000;
let t0=null;

function step(t){
if(!t0)t0=t;
const prog=Math.min((t-t0)/duration,1);
window.scrollTo(0,startY+dist*prog);
if(progdocument.body.style.overflowY=”auto”,2000);
scrollID=null;
}
}
scrollID=requestAnimationFrame(step);
},2000);
}

/* CANCEL POPUPS + SCROLL ON USER INTERACTION */
window.addEventListener(“mousedown”,(e)=>{
const popVisible=(popup.style.display===”block”);
const scrolling=(scrollID!==null);
if(popVisible||scrolling){
if(e.target.closest(“a,button”))return;
if(scrolling){
cancelAnimationFrame(scrollID);
scrollID=null;
document.body.style.overflowY=”auto”;
}
if(popVisible){
popup.style.display=”none”;
factTimeouts.forEach(clearTimeout);
factTimeouts=[];
}
}
});

/* BACKUP BUTTON */
backupEnter.addEventListener(“click”,(e)=>{
e.preventDefault();
zebraBegin();
});

});

Helpful Freebie Mom Guides

Keep going

More Freebie Mom guides worth checking

Instant Win GamesQuick plays, fast prizes, and daily chances.Best Sweepstakes to Enter TodayStart with the strongest current prizes.Sweepstakes DatabaseSearch active sweeps by prize, deadline, and entry type.