ClickRost — Rob Rost
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
–bg: #0a0a0b;
–bg2: #111113;
–bg3: #18181c;
–border: rgba(255,255,255,0.06);
–text: #f0ede8;
–muted: #6e6b66;
–dim: #3a3835;
/* Property colors */
–safe: #3b82f6; /* ClickSafe — blue */
–wisdom: #c9a84c; /* ClickWisdom — gold */
–reads: #7c5cbf; /* ClickReads — violet */
–fitness: #e05c2a; /* ClickFitness — ember */
–pickle: #2ea05a; /* ClickPickle — green */
–disciple: #c06070; /* ClickDiscipleship — rose */
}
html { scroll-behavior: smooth; }
body {
font-family: ‘Syne’, sans-serif;
background: var(–bg);
color: var(–text);
font-weight: 400;
line-height: 1.6;
overflow-x: hidden;
}
/* noise overlay */
body::after {
content: ”;
position: fixed;
inset: 0;
background-image: url(“data:image/svg+xml,%3Csvg xmlns=’
http://www.w3.org/2000/svg’ width=’250′ height=’250’%3E%3Cfilter id=’n’%3E%3CfeTurbulence type=’fractalNoise’ baseFrequency=’0.8′ numOctaves=’4’/%3E%3CfeColorMatrix type=’saturate’ values=’0’/%3E%3C/filter%3E%3Crect width=’250′ height=’250′ filter=’url(%23n)’ opacity=’0.038’/%3E%3C/svg%3E”);
pointer-events: none;
z-index: 9999;
}
/* ── NAV ── */
nav {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 100;
display: flex;
align-items: center;
justify-content: space-between;
padding: 1.1rem 2.5rem;
background: rgba(10,10,11,0.8);
backdrop-filter: blur(16px);
border-bottom: 1px solid var(–border);
}
.nav-logo {
display: flex;
align-items: baseline;
gap: 0;
text-decoration: none;
}
.nav-logo-click {
font-family: ‘Syne’, sans-serif;
font-size: 1.1rem;
font-weight: 800;
color: var(–text);
letter-spacing: -0.02em;
}
.nav-logo-rost {
font-family: ‘Instrument Serif’, serif;
font-size: 1.15rem;
font-style: italic;
color: var(–safe);
letter-spacing: -0.01em;
}
.nav-links {
display: flex;
gap: 2rem;
list-style: none;
}
.nav-links a {
font-family: ‘DM Mono’, monospace;
font-size: 0.6rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(–muted);
text-decoration: none;
transition: color 0.2s;
}
.nav-links a:hover { color: var(–text); }
.nav-cta {
font-family: ‘DM Mono’, monospace;
font-size: 0.6rem;
letter-spacing: 0.15em;
text-transform: uppercase;
padding: 0.5rem 1.1rem;
border: 1px solid rgba(59,130,246,0.4);
border-radius: 4px;
color: var(–safe);
text-decoration: none;
transition: all 0.2s;
}
.nav-cta:hover { background: var(–safe); color: white; border-color: var(–safe); }
/* ── HERO ── */
.hero {
min-height: 100vh;
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
max-width: 1200px;
margin: 0 auto;
padding: 7rem 2.5rem 4rem;
gap: 4rem;
position: relative;
}
/* radial glow */
.hero::before {
content: ”;
position: absolute;
top: 20%;
right: -10%;
width: 600px;
height: 600px;
background: radial-gradient(ellipse, rgba(59,130,246,0.06) 0%, transparent 65%);
pointer-events: none;
}
.hero-left { position: relative; z-index: 1; }
.hero-eyebrow {
display: inline-flex;
align-items: center;
gap: 0.6rem;
font-family: ‘DM Mono’, monospace;
font-size: 0.62rem;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(–muted);
margin-bottom: 2rem;
opacity: 0;
animation: fadeUp 0.6s 0.1s ease forwards;
}
.eyebrow-line { width: 24px; height: 1px; background: var(–muted); }
h1 {
font-family: ‘Syne’, sans-serif;
font-size: clamp(3.2rem, 7vw, 5.5rem);
font-weight: 800;
line-height: 1.02;
letter-spacing: -0.03em;
color: var(–text);
opacity: 0;
animation: fadeUp 0.7s 0.2s ease forwards;
}
h1 .brand {
display: block;
}
h1 .brand-click { color: var(–text); }
h1 .brand-rost {
font-family: ‘Instrument Serif’, serif;
font-style: italic;
font-weight: 400;
color: var(–safe);
}
h1 .tagline-line {
display: block;
font-family: ‘Instrument Serif’, serif;
font-style: italic;
font-weight: 400;
font-size: 0.52em;
color: var(–muted);
margin-top: 0.4rem;
letter-spacing: 0;
}
.hero-desc {
font-family: ‘Instrument Serif’, serif;
font-size: 1.1rem;
font-style: italic;
color: var(–muted);
line-height: 1.75;
margin-top: 2rem;
max-width: 420px;
opacity: 0;
animation: fadeUp 0.7s 0.35s ease forwards;
}
.hero-actions {
display: flex;
gap: 0.85rem;
margin-top: 2.25rem;
flex-wrap: wrap;
opacity: 0;
animation: fadeUp 0.7s 0.5s ease forwards;
}
.btn-solid {
font-family: ‘DM Mono’, monospace;
font-size: 0.62rem;
letter-spacing: 0.18em;
text-transform: uppercase;
padding: 0.8rem 1.6rem;
background: var(–text);
color: var(–bg);
border: none;
border-radius: 4px;
cursor: pointer;
text-decoration: none;
font-weight: 700;
transition: opacity 0.2s;
display: inline-block;
}
.btn-solid:hover { opacity: 0.85; }
.btn-ghost {
font-family: ‘DM Mono’, monospace;
font-size: 0.62rem;
letter-spacing: 0.18em;
text-transform: uppercase;
padding: 0.8rem 1.6rem;
background: transparent;
color: var(–muted);
border: 1px solid var(–border);
border-radius: 4px;
cursor: pointer;
text-decoration: none;
transition: all 0.2s;
display: inline-block;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.2); color: var(–text); }
/* HERO RIGHT — property preview stack */
.hero-right {
display: flex;
flex-direction: column;
gap: 0.5rem;
opacity: 0;
animation: fadeUp 0.8s 0.4s ease forwards;
}
.prop-preview {
display: flex;
align-items: center;
gap: 1rem;
padding: 0.85rem 1.1rem;
background: var(–bg2);
border: 1px solid var(–border);
border-radius: 8px;
text-decoration: none;
transition: all 0.2s ease;
position: relative;
overflow: hidden;
}
.prop-preview::before {
content: ”;
position: absolute;
left: 0; top: 0; bottom: 0;
width: 3px;
}
.prop-preview.safe::before { background: var(–safe); }
.prop-preview.wisdom::before { background: var(–wisdom); }
.prop-preview.reads::before { background: var(–reads); }
.prop-preview.fitness::before { background: var(–fitness); }
.prop-preview.pickle::before { background: var(–pickle); }
.prop-preview.disciple::before { background: var(–disciple); }
.prop-preview:hover {
background: var(–bg3);
border-color: rgba(255,255,255,0.12);
transform: translateX(4px);
}
.prop-preview-icon {
font-size: 1.1rem;
width: 32px;
text-align: center;
flex-shrink: 0;
}
.prop-preview-info { flex: 1; min-width: 0; }
.prop-preview-name {
font-family: ‘Syne’, sans-serif;
font-size: 0.82rem;
font-weight: 700;
color: var(–text);
letter-spacing: -0.01em;
}
.prop-preview-desc {
font-size: 0.72rem;
color: var(–muted);
margin-top: 0.1rem;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.prop-preview-status {
font-family: ‘DM Mono’, monospace;
font-size: 0.52rem;
letter-spacing: 0.15em;
text-transform: uppercase;
flex-shrink: 0;
}
.status-live { color: #4caf82; }
.status-build { color: var(–wisdom); }
.status-soon { color: var(–dim); }
/* ── PROPERTIES FULL GRID ── */
.properties-section {
padding: 6rem 2.5rem;
border-top: 1px solid var(–border);
}
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-kicker {
font-family: ‘DM Mono’, monospace;
font-size: 0.6rem;
letter-spacing: 0.3em;
text-transform: uppercase;
color: var(–muted);
margin-bottom: 0.75rem;
display: flex;
align-items: center;
gap: 0.75rem;
}
.section-kicker::after { content: ”; flex: 1; max-width: 50px; height: 1px; background: var(–border); }
.section-h2 {
font-family: ‘Syne’, sans-serif;
font-size: clamp(1.8rem, 4vw, 2.75rem);
font-weight: 800;
letter-spacing: -0.03em;
color: var(–text);
margin-bottom: 0.5rem;
}
.section-h2 em {
font-family: ‘Instrument Serif’, serif;
font-style: italic;
font-weight: 400;
color: var(–muted);
}
.section-sub {
font-family: ‘Instrument Serif’, serif;
font-style: italic;
font-size: 1rem;
color: var(–muted);
margin-bottom: 3rem;
}
.props-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1px;
background: var(–border);
border: 1px solid var(–border);
border-radius: 12px;
overflow: hidden;
}
.prop-card {
background: var(–bg2);
padding: 2rem 1.75rem 2.25rem;
text-decoration: none;
display: block;
position: relative;
transition: background 0.2s ease;
overflow: hidden;
}
.prop-card:hover { background: var(–bg3); }
/* color top bar */
.prop-card::after {
content: ”;
position: absolute;
top: 0; left: 0; right: 0;
height: 2px;
opacity: 0;
transition: opacity 0.2s ease;
}
.prop-card:hover::after { opacity: 1; }
.prop-card.safe::after { background: var(–safe); }
.prop-card.wisdom::after { background: var(–wisdom); }
.prop-card.reads::after { background: var(–reads); }
.prop-card.fitness::after { background: var(–fitness); }
.prop-card.pickle::after { background: var(–pickle); }
.prop-card.disciple::after { background: var(–disciple); }
.prop-card-icon {
font-size: 1.6rem;
margin-bottom: 1rem;
display: block;
}
.prop-card-status {
font-family: ‘DM Mono’, monospace;
font-size: 0.52rem;
letter-spacing: 0.18em;
text-transform: uppercase;
padding: 0.18rem 0.55rem;
border-radius: 20px;
border: 1px solid;
display: inline-block;
margin-bottom: 0.85rem;
}
.pill-live { color: #4caf82; border-color: rgba(76,175,130,0.3); background: rgba(76,175,130,0.07); }
.pill-build { color: var(–wisdom); border-color: rgba(201,168,76,0.3); background: rgba(201,168,76,0.06); }
.pill-soon { color: var(–muted); border-color: var(–border); }
.prop-card-name {
font-family: ‘Syne’, sans-serif;
font-size: 1.3rem;
font-weight: 800;
letter-spacing: -0.02em;
color: var(–text);
margin-bottom: 0.5rem;
display: flex;
align-items: baseline;
gap: 0.05em;
}
.prop-click { font-weight: 400; color: var(–muted); font-size: 1.1rem; }
.prop-card-desc {
font-size: 0.83rem;
color: var(–muted);
line-height: 1.65;
margin-bottom: 1.25rem;
}
.prop-card-link {
font-family: ‘DM Mono’, monospace;
font-size: 0.58rem;
letter-spacing: 0.18em;
text-transform: uppercase;
display: flex;
align-items: center;
gap: 0.4rem;
transition: gap 0.2s ease;
}
.prop-card.safe .prop-card-link { color: var(–safe); }
.prop-card.wisdom .prop-card-link { color: var(–wisdom); }
.prop-card.reads .prop-card-link { color: var(–reads); }
.prop-card.fitness .prop-card-link { color: var(–fitness); }
.prop-card.pickle .prop-card-link { color: var(–pickle); }
.prop-card.disciple .prop-card-link { color: var(–disciple); }
.prop-card.soon .prop-card-link { color: var(–muted); }
.prop-card:hover .prop-card-link { gap: 0.7rem; }
/* ── ABOUT STRIP ── */
.about-section {
padding: 6rem 2.5rem;
border-top: 1px solid var(–border);
background: var(–bg2);
}
.about-grid {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 5rem;
align-items: center;
}
.about-text p {
font-family: ‘Instrument Serif’, serif;
font-size: 1.05rem;
font-style: italic;
color: var(–muted);
line-height: 1.85;
margin-bottom: 1.1rem;
}
.about-text p strong {
font-style: normal;
color: var(–text);
font-family: ‘Syne’, sans-serif;
font-weight: 600;
font-size: 0.95rem;
}
.cred-stack {
display: flex;
flex-direction: column;
gap: 0.75rem;
}
.cred {
display: flex;
align-items: center;
gap: 1rem;
padding: 1rem 1.1rem;
background: var(–bg);
border: 1px solid var(–border);
border-radius: 8px;
}
.cred-emoji { font-size: 1.1rem; flex-shrink: 0; }
.cred-body {}
.cred-label {
font-family: ‘DM Mono’, monospace;
font-size: 0.55rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(–muted);
margin-bottom: 0.15rem;
}
.cred-value {
font-family: ‘Syne’, sans-serif;
font-size: 0.88rem;
font-weight: 600;
color: var(–text);
}
/* ── WRITING ── */
.writing-section {
padding: 6rem 2.5rem;
border-top: 1px solid var(–border);
}
.writing-grid {
max-width: 1200px;
margin: 2.5rem auto 0;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1px;
background: var(–border);
border: 1px solid var(–border);
border-radius: 10px;
overflow: hidden;
}
.article-card {
background: var(–bg2);
padding: 1.75rem;
text-decoration: none;
display: block;
transition: background 0.2s ease;
}
.article-card:hover { background: var(–bg3); }
.article-prop {
font-family: ‘DM Mono’, monospace;
font-size: 0.55rem;
letter-spacing: 0.18em;
text-transform: uppercase;
padding: 0.18rem 0.55rem;
border-radius: 3px;
display: inline-block;
margin-bottom: 1rem;
}
.ap-safe { color: var(–safe); background: rgba(59,130,246,0.1); }
.ap-wisdom { color: var(–wisdom); background: rgba(201,168,76,0.08); }
.ap-disciple { color: var(–disciple);background: rgba(192,96,112,0.08); }
.article-title {
font-family: ‘Syne’, sans-serif;
font-size: 0.95rem;
font-weight: 700;
line-height: 1.35;
color: var(–text);
letter-spacing: -0.01em;
margin-bottom: 0.6rem;
}
.article-excerpt {
font-size: 0.8rem;
color: var(–muted);
line-height: 1.65;
margin-bottom: 1.25rem;
}
.article-meta {
font-family: ‘DM Mono’, monospace;
font-size: 0.55rem;
letter-spacing: 0.12em;
color: var(–dim);
}
/* ── FOOTER ── */
footer {
border-top: 1px solid var(–border);
padding: 3rem 2.5rem 2rem;
max-width: 1200px;
margin: 0 auto;
}
.footer-top {
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 2rem;
flex-wrap: wrap;
margin-bottom: 2.5rem;
}
.footer-brand {}
.footer-logo {
display: flex;
align-items: baseline;
gap: 0;
margin-bottom: 0.5rem;
}
.footer-logo-click {
font-family: ‘Syne’, sans-serif;
font-size: 1.3rem;
font-weight: 800;
color: var(–text);
letter-spacing: -0.02em;
}
.footer-logo-rost {
font-family: ‘Instrument Serif’, serif;
font-size: 1.35rem;
font-style: italic;
color: var(–safe);
}
.footer-tagline {
font-family: ‘Instrument Serif’, serif;
font-style: italic;
font-size: 0.88rem;
color: var(–muted);
}
.footer-links-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
}
.footer-col-title {
font-family: ‘DM Mono’, monospace;
font-size: 0.55rem;
letter-spacing: 0.22em;
text-transform: uppercase;
color: var(–muted);
margin-bottom: 0.75rem;
}
.footer-col ul {
list-style: none;
display: flex;
flex-direction: column;
gap: 0.45rem;
}
.footer-col a {
font-size: 0.83rem;
color: var(–muted);
text-decoration: none;
transition: color 0.2s;
}
.footer-col a:hover { color: var(–text); }
.footer-bottom {
border-top: 1px solid var(–border);
padding-top: 1.5rem;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
}
.footer-copy {
font-family: ‘DM Mono’, monospace;
font-size: 0.58rem;
letter-spacing: 0.12em;
color: var(–dim);
}
.footer-location {
font-family: ‘DM Mono’, monospace;
font-size: 0.58rem;
letter-spacing: 0.12em;
color: var(–dim);
}
/* ── ANIMATIONS ── */
@keyframes fadeUp {
from { opacity: 0; transform: translateY(18px); }
to { opacity: 1; transform: translateY(0); }
}
/* ── RESPONSIVE ── */
@media (max-width: 960px) {
.hero { grid-template-columns: 1fr; gap: 3rem; min-height: auto; padding-top: 8rem; }
.props-grid { grid-template-columns: repeat(2, 1fr); }
.writing-grid { grid-template-columns: 1fr; }
.about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
.footer-links-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
nav { padding: 1rem 1.25rem; }
.nav-links, .nav-cta { display: none; }
.props-grid { grid-template-columns: 1fr; }
.properties-section, .about-section, .writing-section { padding: 4rem 1.25rem; }
.hero { padding: 7rem 1.25rem 3rem; }
}
ClickRost
Start with ClickSafe
robertrost.com
ClickRost
A trusted friend for every click that matters.
Six properties. One person behind them. Faith, family, fitness, reading, pickleball, and staying safe online — explored with honesty and no hype.
The ClickRost Network
Six Properties. One voice.
Each one a different corner of a life lived on purpose.
🛡️
● Live
ClickSafe
Helping families navigate smartphones, screen time, and online threats with practical, evidence-based guidance — not panic.
Visit ClickSafe →
✨
◑ Building
ClickWisdom
Images of wisdom — art paired with scripture and a daily practice of reflection. For those who want truth they can see and live.
Visit ClickWisdom →
✝️
○ Coming Soon
ClickDiscipleship
Faith isn’t a Sunday event — it’s a daily practice. Honest reflections on following Christ as a husband, father, and imperfect person.
Notify Me →
📚
○ Coming Soon
ClickReads
Books that genuinely changed how I think. No fluff — just honest takes on what’s worth reading and why it matters.
Notify Me →
💪
○ Coming Soon
ClickFitness
Strength training, HIIT, rucking, and cold plunge — building a body and mind that can carry the weight of a full life.
Notify Me →
🏓
○ Coming Soon
ClickPickle
Pickleball — the most fun sport nobody can stop playing. Tips, gear, drills, and the Mesa community that makes it better.
Notify Me →
The person behind the click
I’m Rob. Here’s my deal.
I’m a husband and father of three in Mesa, Arizona. My faith shapes everything I build — I’m LDS, and discipleship isn’t background noise for me, it’s the whole point.
Professionally I’m a senior cybersecurity architect with twenty years in enterprise security. I spend my days building AI governance platforms and zero-trust architecture for a global semiconductor company. I take that expertise home and apply it to the thing that matters most — keeping my family safe online.
ClickRost exists because I got tired of expert knowledge staying inside corporate walls. Everything I’ve learned about security, habits, faith, fitness, and living intentionally — I’m putting it here.
Read the full story
🛡️
Day Job
Senior Cybersecurity Architect
⏱️
Experience
20 Years in Enterprise Security
👨👩👧👦
Family
Husband · Father of Three · Mesa, AZ
✝️
Faith
Latter-day Saint · Discipleship Daily
🎙️
Speaking
COSAC 2026 — AI & Child Safety
🏓
Currently obsessed with
Pickleball, Rucking & Cold Plunge
Selected from the archive
Recent Writing