Score a FREERise & KINDBreakfast Box!

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
–kind-black: #111111;
–kind-yellow: #F5C518;
–kind-red: #E63329;
–kind-green: #5CB85C;
–kind-blue: #2E86C1;
–kind-orange: #F08C00;
–fm-pink: #FF6B9D;
–fm-purple: #7B2FBE;
–fm-light: #FFF8F0;
–text-dark: #1a1a1a;
–text-mid: #444;
–radius: 16px;
–shadow: 0 8px 32px rgba(0,0,0,0.12);
}
body {
font-family: ‘Georgia’, ‘Times New Roman’, serif;
background: var(–fm-light);
color: var(–text-dark);
line-height: 1.7;
}
/* ===== SITE HEADER ===== */
.site-header {
background: linear-gradient(135deg, var(–fm-purple) 0%, var(–fm-pink) 100%);
padding: 14px 20px;
text-align: center;
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.site-header .site-name {
font-family: ‘Georgia’, serif;
font-size: 1.6rem;
font-weight: bold;
color: #fff;
letter-spacing: 1px;
text-decoration: none;
}
.site-header .tagline {
font-size: 0.82rem;
color: rgba(255,255,255,0.85);
margin-top: 2px;
font-style: italic;
}
/* ===== HERO BANNER ===== */
.hero {
background: var(–kind-black);
position: relative;
overflow: hidden;
padding: 0;
}
.hero-inner {
max-width: 860px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
padding: 40px 24px;
flex-wrap: wrap;
}
.hero-text {
flex: 1 1 300px;
color: #fff;
}
.hero-eyebrow {
display: inline-block;
background: var(–kind-yellow);
color: var(–kind-black);
font-size: 0.75rem;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 2px;
padding: 5px 14px;
border-radius: 50px;
margin-bottom: 16px;
}
.hero-title {
font-family: ‘Georgia’, serif;
font-size: clamp(2rem, 5vw, 3.2rem);
font-weight: bold;
line-height: 1.15;
margin-bottom: 14px;
color: #fff;
}
.hero-title .highlight {
color: var(–kind-yellow);
}
.hero-subtitle {
font-size: 1.05rem;
color: rgba(255,255,255,0.85);
margin-bottom: 24px;
}
.hero-image-wrap {
flex: 0 0 auto;
max-width: 340px;
width: 100%;
}
.hero-image-wrap img {
width: 100%;
border-radius: var(–radius);
box-shadow: 0 12px 40px rgba(0,0,0,0.5);
display: block;
}
/* Decorative squiggles */
.squiggle {
position: absolute;
opacity: 0.18;
pointer-events: none;
}
.squiggle-1 { top: -20px; right: 10%; font-size: 120px; color: var(–kind-green); transform: rotate(30deg); }
.squiggle-2 { bottom: -10px; left: 5%; font-size: 90px; color: var(–kind-red); transform: rotate(-20deg); }
/* ===== MAIN CONTAINER ===== */
.container {
max-width: 860px;
margin: 0 auto;
padding: 0 20px;
}
/* ===== URGENCY BANNER ===== */
.urgency-bar {
background: linear-gradient(90deg, var(–kind-red) 0%, var(–fm-pink) 100%);
color: #fff;
text-align: center;
padding: 12px 20px;
font-size: 0.95rem;
font-weight: bold;
letter-spacing: 0.5px;
}
.urgency-bar span {
background: rgba(255,255,255,0.2);
border-radius: 4px;
padding: 2px 8px;
margin: 0 4px;
}
/* ===== SECTION STYLES ===== */
section {
padding: 40px 0;
}
section + section {
border-top: 2px dashed #e8d5c4;
}
.section-label {
display: inline-flex;
align-items: center;
gap: 8px;
background: var(–fm-purple);
color: #fff;
font-size: 0.72rem;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 2px;
padding: 5px 14px;
border-radius: 50px;
margin-bottom: 12px;
}
.section-label::before { content: ‘★’; font-size: 0.9rem; }
h2 {
font-family: ‘Georgia’, serif;
font-size: clamp(1.4rem, 3.5vw, 2rem);
color: var(–kind-black);
margin-bottom: 14px;
line-height: 1.3;
}
h2 em { color: var(–fm-purple); font-style: normal; }
p {
font-size: 1.05rem;
color: var(–text-mid);
margin-bottom: 14px;
}
/* ===== WHAT’S IN THE BOX CARDS ===== */
.box-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 20px;
margin: 24px 0;
}
.box-card {
background: #fff;
border-radius: var(–radius);
padding: 24px 20px;
box-shadow: var(–shadow);
border-top: 5px solid var(–kind-yellow);
text-align: center;
transition: transform 0.2s;
}
.box-card:hover { transform: translateY(-4px); }
.box-card .icon { font-size: 2.8rem; margin-bottom: 10px; display: block; }
.box-card h3 {
font-size: 1.05rem;
font-weight: bold;
color: var(–kind-black);
margin-bottom: 8px;
}
.box-card p {
font-size: 0.9rem;
color: var(–text-mid);
margin: 0;
}
.box-card.salmon { border-top-color: var(–kind-red); }
.box-card.granola-pb { border-top-color: var(–kind-orange); }
.box-card.granola-sc { border-top-color: var(–kind-green); }
/* ===== STEPS / HOW TO CLAIM ===== */
.steps {
counter-reset: step-counter;
list-style: none;
margin: 24px 0;
display: flex;
flex-direction: column;
gap: 16px;
}
.steps li {
counter-increment: step-counter;
display: flex;
align-items: flex-start;
gap: 16px;
background: #fff;
border-radius: var(–radius);
padding: 18px 20px;
box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}
.steps li::before {
content: counter(step-counter);
flex-shrink: 0;
width: 38px;
height: 38px;
background: var(–kind-black);
color: var(–kind-yellow);
font-size: 1.1rem;
font-weight: bold;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}
.steps li .step-content strong {
display: block;
font-size: 1rem;
color: var(–kind-black);
margin-bottom: 4px;
}
.steps li .step-content span {
font-size: 0.9rem;
color: var(–text-mid);
}
/* ===== CTA BUTTON ===== */
.cta-wrap {
text-align: center;
margin: 10px 0 6px;
}
.btn-cta {
display: inline-block;
background: linear-gradient(135deg, var(–kind-yellow) 0%, var(–kind-orange) 100%);
color: var(–kind-black);
font-size: 1.15rem;
font-weight: bold;
text-decoration: none;
padding: 18px 44px;
border-radius: 50px;
box-shadow: 0 6px 24px rgba(245,197,24,0.45);
letter-spacing: 0.5px;
transition: transform 0.2s, box-shadow 0.2s;
border: none;
cursor: pointer;
}
.btn-cta:hover {
transform: translateY(-3px) scale(1.03);
box-shadow: 0 10px 32px rgba(245,197,24,0.55);
}
.btn-cta .arrow { margin-left: 8px; }
.btn-sub {
font-size: 0.82rem;
color: #888;
margin-top: 8px;
}
/* ===== AD UNIT ===== */
.ad-unit {
background: #f9f4ee;
border: 1px dashed #d4c4b0;
border-radius: 12px;
padding: 12px 10px;
margin: 18px auto;
text-align: center;
max-width: 700px;
}
.ad-unit .ad-label {
font-size: 0.68rem;
text-transform: uppercase;
letter-spacing: 1.5px;
color: #aaa;
margin-bottom: 6px;
display: block;
}
/* ===== QUOTE BLOCK ===== */
.quote-block {
background: var(–kind-black);
color: #fff;
border-radius: var(–radius);
padding: 32px 28px;
margin: 28px 0;
position: relative;
}
.quote-block::before {
content: ‘201C’;
font-size: 6rem;
color: var(–kind-yellow);
position: absolute;
top: -10px;
left: 20px;
line-height: 1;
font-family: Georgia, serif;
}
.quote-block blockquote {
font-size: 1.15rem;
font-style: italic;
line-height: 1.6;
padding-left: 10px;
margin-bottom: 12px;
color: rgba(255,255,255,0.92);
}
.quote-block cite {
font-size: 0.88rem;
color: var(–kind-yellow);
font-style: normal;
font-weight: bold;
}
/* ===== PROMO IMAGE ===== */
.promo-img-wrap {
border-radius: var(–radius);
overflow: hidden;
box-shadow: var(–shadow);
margin: 24px 0;
}
.promo-img-wrap img {
width: 100%;
display: block;
}
/* ===== INFO PILLS ===== */
.pills {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin: 20px 0;
}
.pill {
display: inline-flex;
align-items: center;
gap: 6px;
background: #fff;
border: 2px solid var(–kind-yellow);
color: var(–kind-black);
font-size: 0.88rem;
font-weight: bold;
padding: 8px 16px;
border-radius: 50px;
box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.pill .dot {
width: 10px;
height: 10px;
border-radius: 50%;
flex-shrink: 0;
}
.pill .dot.red { background: var(–kind-red); }
.pill .dot.green { background: var(–kind-green); }
.pill .dot.blue { background: var(–kind-blue); }
.pill .dot.yellow { background: var(–kind-yellow); }
.pill .dot.orange { background: var(–kind-orange); }
/* ===== FREEBIEMOM TIP BOX ===== */
.tip-box {
background: linear-gradient(135deg, #fff0f8, #f5eeff);
border-left: 5px solid var(–fm-pink);
border-radius: 0 var(–radius) var(–radius) 0;
padding: 20px 22px;
margin: 24px 0;
}
.tip-box .tip-head {
font-size: 0.8rem;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 1.5px;
color: var(–fm-purple);
margin-bottom: 6px;
}
.tip-box p {
font-size: 0.95rem;
color: var(–text-mid);
margin: 0;
}
/* ===== FOOTER ===== */
.post-footer {
background: var(–kind-black);
color: rgba(255,255,255,0.7);
text-align: center;
padding: 28px 20px;
font-size: 0.82rem;
margin-top: 40px;
}
.post-footer a {
color: var(–kind-yellow);
text-decoration: none;
}
.post-footer .footer-logo {
font-family: Georgia, serif;
font-size: 1.2rem;
font-weight: bold;
color: #fff;
margin-bottom: 8px;
display: block;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
.hero-inner { flex-direction: column; text-align: center; }
.hero-image-wrap { max-width: 100%; }
.pills { justify-content: center; }
.quote-block::before { font-size: 4rem; }
}
Score a FREE
Rise & KIND
Breakfast Box!
Reality TV star Rob Rausch & KIND Snacks are giving away limited-edition breakfast boxes — absolutely FREE, delivered to your door!
KIND Snacks + Rob Rausch = Your New Favorite Freebie
If you’ve been watching The Traitors on TV, you already know Rob Rausch — the charismatic reality star who became famous for his strategic gameplay and his iconic Scottish salmon breakfasts. Well, KIND Snacks noticed the internet going wild over it, and they’ve teamed up with Rob to bring that viral breakfast moment straight to YOUR kitchen — for FREE!
The RISE & KIND Breakfast Box is a limited-edition giveaway featuring KIND’s brand-new Protein MAX Granola alongside the now-legendary Scottish salmon. It’s protein-packed, delicious, and did we mention it’s completely FREE?
Shipped to Your Door
First 250 Daily at 9AM ET
Weekdays Through March 3
Claim Your FREE Box Now →
Opens the official KIND Snacks giveaway page • Free shipping • No promo code needed
Here’s Everything You Get in the Box
This isn’t just any freebie — it’s a curated breakfast experience inspired by Rob Rausch’s morning ritual on The Traitors. Each box includes:
KIND Protein MAX Granola — Peanut Butter
15g of protein per serving, 9g fiber, 0g added sugar. Fuel your mornings the KIND way!
KIND Protein MAX Granola — Sweet & Salty Caramel
The perfect sweet-savory combo with 15g protein and absolutely zero added sugar.
Scottish Salmon
The viral breakfast star from The Traitors! Now you can enjoy Rob’s iconic morning meal at home.
“This partnership with KIND is about starting the day on a positive note. The RISE & KIND Breakfast Box gives people something simple they can enjoy and share in the morning, like we shared the salmon. If kindness is the first thing you lead with, it can set the tone for everything that comes after.”
— Rob Rausch, Reality TV Star & RISE & KIND Partner
Claim Your Free Box in 3 Easy Steps
Getting your free Rise & KIND Breakfast Box is super simple — just be ready at the right time! Here’s exactly what to do:
-
Set Your Alarm for 9AM ET on a Weekday
Drops happen Monday–Friday through Tuesday, March 3. The first 250 people each day get a free box — so be ready! -
Go to riseandkind.kindsnacks.com
Head to the official giveaway page right at 9AM ET. Use the button below to go directly to the page! -
Fill in Your Details & Claim Your Box
Enter your shipping info and submit. It’s completely free — no purchase necessary, no promo code needed!
👉 Go to the Giveaway Page
riseandkind.kindsnacks.com • Official KIND Snacks page • While supplies last
Bookmark this page and set a daily alarm! These boxes go FAST — only 250 are available each weekday morning. If you miss today’s drop, come back tomorrow at 9AM ET. The giveaway runs through Tuesday, March 3, so you still have a few chances to snag one!
This Is One of the Best Freebies We’ve Seen in a While
Here at FreeBieMom, we track hundreds of freebies every week — and this one genuinely stands out. You’re not just getting a sample packet in the mail. You’re getting a full-size breakfast experience: two bags of brand-new KIND Protein MAX Granola (worth about $12–$15 each at retail) PLUS Scottish salmon, all shipped to your door for free.
The KIND Protein MAX Granola is their newest product launch, and it’s already getting rave reviews. With 15 grams of protein, 9 grams of fiber, and zero added sugar, it’s the kind of breakfast that actually keeps you full and energized. Whether you’re a Traitors superfan, a breakfast lover, or just someone who loves a great freebie — this one is worth waking up early for!
0g Added Sugar
9g Fiber
Real Wholesome Ingredients
Ready to Claim Your Free Box?
Remember: only 250 boxes are available each weekday at 9AM ET through March 3. Click the button below to go directly to the official giveaway page — and good luck!
🎁 Claim My FREE Breakfast Box
No purchase necessary • Free shipping • First 250 daily while supplies last
Helpful Freebie Mom Guides
Keep going