weedops-theme/style.css
John Mizerek 2db3c63e5a Initial commit: WeedOps WordPress theme
Custom theme for weedops.site — front page, header, footer,
functions, styles, and images.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-17 19:28:20 -07:00

1033 lines
17 KiB
CSS

/*
Theme Name: WeedOps
Theme URI: https://weedops.site
Author: WeedOps
Description: Investor-facing landing page for WeedOps — managed home cannabis cultivation.
Version: 1.0
License: Proprietary
Text Domain: weedops
*/
/* ========================================
CSS Variables
======================================== */
:root {
--black: #0a0a0a;
--black-light: #111111;
--black-lighter: #1a1a1a;
--green: #22c55e;
--green-hover: #16a34a;
--green-dim: rgba(34, 197, 94, 0.1);
--green-glow: rgba(34, 197, 94, 0.15);
--white: #ffffff;
--gray: #a0a0a0;
--gray-dark: #666666;
--gray-light: #cccccc;
--border: #2a2a2a;
--font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
--font-mono: 'SF Mono', 'Fira Code', 'Fira Mono', 'Roboto Mono', monospace;
--max-width: 1100px;
--nav-height: 72px;
}
/* ========================================
Reset & Base
======================================== */
*, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
font-size: 16px;
scroll-behavior: smooth;
}
body {
font-family: var(--font);
background: var(--black);
color: var(--white);
line-height: 1.6;
-webkit-font-smoothing: antialiased;
}
a {
color: inherit;
text-decoration: none;
}
img {
max-width: 100%;
height: auto;
display: block;
}
/* ========================================
Typography
======================================== */
h1, h2, h3, h4 {
font-weight: 600;
line-height: 1.2;
}
h1 {
font-size: clamp(2.5rem, 6vw, 4rem);
letter-spacing: -0.03em;
}
h2 {
font-size: clamp(1.75rem, 4vw, 2.5rem);
letter-spacing: -0.02em;
}
h3 {
font-size: 1.25rem;
}
p {
color: var(--gray);
}
.subhead {
font-size: clamp(1.1rem, 2.5vw, 1.35rem);
color: var(--gray);
max-width: 600px;
}
.section-label {
font-family: var(--font-mono);
font-size: 0.8rem;
font-weight: 600;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--green);
margin-bottom: 16px;
}
/* ========================================
Layout
======================================== */
.container {
width: 100%;
max-width: var(--max-width);
margin: 0 auto;
padding: 0 24px;
}
section {
padding: 120px 0;
}
@media (max-width: 768px) {
section {
padding: 80px 0;
}
}
/* ========================================
Navigation
======================================== */
.site-header {
position: fixed;
top: 0;
left: 0;
right: 0;
height: var(--nav-height);
background: rgba(10, 10, 10, 0.95);
backdrop-filter: blur(12px);
z-index: 1000;
border-bottom: 1px solid var(--border);
}
.nav-container {
display: flex;
align-items: center;
justify-content: space-between;
height: 100%;
max-width: var(--max-width);
margin: 0 auto;
padding: 0 24px;
}
.logo {
font-size: 1.4rem;
font-weight: 700;
color: var(--white);
letter-spacing: -0.02em;
}
.logo span {
color: var(--green);
}
.nav-links {
display: flex;
align-items: center;
gap: 32px;
list-style: none;
}
.nav-links a {
font-size: 0.95rem;
color: var(--gray);
transition: color 0.2s;
}
.nav-links a:hover {
color: var(--white);
}
.nav-links .btn-nav {
padding: 10px 20px;
background: var(--green);
color: var(--black);
border-radius: 8px;
font-weight: 600;
font-size: 0.9rem;
transition: all 0.2s;
}
.nav-links .btn-nav:hover {
background: var(--green-hover);
}
/* Mobile Nav */
.nav-toggle {
display: none;
background: none;
border: none;
cursor: pointer;
padding: 8px;
}
.nav-toggle span {
display: block;
width: 24px;
height: 2px;
background: var(--white);
margin: 6px 0;
transition: all 0.3s;
}
@media (max-width: 768px) {
.site-header {
background: #0a0a0a;
backdrop-filter: none;
}
.nav-toggle {
display: block;
}
.nav-links {
position: fixed;
top: var(--nav-height);
right: 0;
flex-direction: column;
align-items: flex-end;
background: rgba(10, 10, 10, 0.95);
backdrop-filter: blur(12px);
border: 1px solid var(--border);
border-top: none;
border-radius: 0 0 0 12px;
padding: 24px 32px;
gap: 20px;
display: none;
z-index: 9999;
}
.nav-links.active {
display: flex;
}
.nav-links a {
font-size: 1.1rem;
color: var(--white);
}
}
/* ========================================
Buttons
======================================== */
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 16px 32px;
font-size: 1rem;
font-weight: 600;
border-radius: 10px;
cursor: pointer;
transition: all 0.2s;
border: none;
}
.btn-primary {
background: var(--green);
color: var(--black);
}
.btn-primary:hover {
background: var(--green-hover);
transform: translateY(-1px);
}
.btn-secondary {
background: transparent;
color: var(--white);
border: 1px solid var(--border);
}
.btn-secondary:hover {
background: var(--black-lighter);
border-color: var(--gray-dark);
}
/* ========================================
Hero Section
======================================== */
.hero {
min-height: 100vh;
display: flex;
align-items: center;
padding-top: var(--nav-height);
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: -50%;
right: -30%;
width: 800px;
height: 800px;
background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%);
pointer-events: none;
}
.hero-content {
position: relative;
z-index: 1;
max-width: 720px;
}
.hero h1 {
margin-bottom: 24px;
}
.hero h1 .green {
color: var(--green);
}
.hero .subhead {
margin-bottom: 16px;
}
.hero .hero-note {
font-size: 0.95rem;
color: var(--gray-dark);
margin-bottom: 40px;
font-style: italic;
}
.hero-ctas {
display: flex;
gap: 16px;
flex-wrap: wrap;
}
@media (max-width: 480px) {
.hero-ctas {
flex-direction: column;
}
.hero-ctas .btn {
width: 100%;
}
}
/* ========================================
Opportunity Section
======================================== */
.opportunity {
background: var(--black-light);
border-top: 1px solid var(--border);
}
.opportunity-content {
max-width: 720px;
}
.opportunity-content h2 {
margin-bottom: 24px;
}
.opportunity-content p {
font-size: 1.1rem;
line-height: 1.8;
margin-bottom: 16px;
}
.opportunity-content .emphasis {
color: var(--white);
font-weight: 500;
}
/* ========================================
Problem Section
======================================== */
.problem-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 32px;
margin-top: 48px;
}
@media (max-width: 768px) {
.problem-grid {
grid-template-columns: 1fr;
gap: 24px;
}
}
.problem-card {
padding: 32px;
background: var(--black);
border: 1px solid var(--border);
border-radius: 16px;
}
.problem-card h3 {
color: var(--white);
margin-bottom: 12px;
}
.problem-card p {
font-size: 0.95rem;
line-height: 1.6;
}
/* ========================================
Solution Section
======================================== */
.solution-features {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 24px;
margin-top: 48px;
}
@media (max-width: 600px) {
.solution-features {
grid-template-columns: 1fr;
}
}
.solution-feature {
padding: 28px;
background: var(--black-light);
border: 1px solid var(--border);
border-radius: 12px;
}
.solution-feature h3 {
color: var(--white);
margin-bottom: 8px;
font-size: 1.1rem;
}
.solution-feature p {
font-size: 0.9rem;
}
/* ========================================
How It Works / Steps
======================================== */
.steps-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 32px;
margin-top: 48px;
}
@media (max-width: 900px) {
.steps-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 600px) {
.steps-grid {
grid-template-columns: 1fr;
}
}
.step-card {
padding: 32px;
background: var(--black);
border: 1px solid var(--border);
border-radius: 16px;
position: relative;
}
.step-number {
font-family: var(--font-mono);
font-size: 0.85rem;
font-weight: 700;
color: var(--green);
margin-bottom: 16px;
display: block;
}
.step-card h3 {
color: var(--white);
margin-bottom: 10px;
}
.step-card p {
font-size: 0.95rem;
}
/* ========================================
WeedOpper Section (What You Get)
======================================== */
.weedopper-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 32px;
margin-top: 48px;
margin-bottom: 32px;
}
@media (max-width: 768px) {
.weedopper-stats {
grid-template-columns: 1fr;
gap: 24px;
}
}
.stat-card {
padding: 32px;
background: var(--black-light);
border: 1px solid var(--border);
border-radius: 16px;
text-align: center;
}
.stat-value {
font-size: clamp(2rem, 4vw, 2.5rem);
font-weight: 700;
color: var(--green);
line-height: 1;
margin-bottom: 8px;
}
.stat-label {
font-size: 0.85rem;
font-weight: 600;
color: var(--white);
text-transform: uppercase;
letter-spacing: 0.05em;
margin-bottom: 12px;
}
.stat-card p {
font-size: 0.9rem;
line-height: 1.5;
}
/* ========================================
Numbers / Unit Economics
======================================== */
.economics-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 48px;
margin-top: 48px;
}
@media (max-width: 768px) {
.economics-grid {
grid-template-columns: 1fr;
gap: 32px;
}
}
.economics-table {
width: 100%;
border-collapse: collapse;
}
.economics-table th {
text-align: left;
font-size: 0.8rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--gray-dark);
padding: 12px 0;
border-bottom: 1px solid var(--border);
}
.economics-table td {
padding: 14px 0;
border-bottom: 1px solid var(--border);
font-size: 0.95rem;
}
.economics-table td:first-child {
color: var(--gray);
}
.economics-table td:last-child {
text-align: right;
color: var(--white);
font-weight: 500;
font-family: var(--font-mono);
}
.economics-table tr:last-child td {
border-bottom: none;
color: var(--green);
font-weight: 600;
}
.scale-stats {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
}
.scale-stat {
padding: 24px;
background: var(--black);
border: 1px solid var(--border);
border-radius: 12px;
text-align: center;
}
.scale-stat .stat-value {
font-size: 1.5rem;
margin-bottom: 4px;
}
.scale-stat .stat-label {
font-size: 0.8rem;
margin-bottom: 0;
}
/* ========================================
Campus Section
======================================== */
.campus-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
margin-top: 48px;
}
@media (max-width: 768px) {
.campus-grid {
grid-template-columns: 1fr;
gap: 20px;
}
}
.campus-card {
padding: 28px;
background: var(--black);
border: 1px solid var(--border);
border-radius: 16px;
}
.campus-card h3 {
color: var(--green);
font-size: 0.85rem;
font-family: var(--font-mono);
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.1em;
margin-bottom: 12px;
}
.campus-card p {
font-size: 0.95rem;
line-height: 1.6;
}
.campus-tagline {
margin-top: 48px;
font-size: 1.2rem;
color: var(--gray);
font-style: italic;
text-align: center;
}
/* ========================================
Revenue Streams
======================================== */
.streams-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
margin-top: 48px;
}
@media (max-width: 600px) {
.streams-grid {
grid-template-columns: 1fr;
}
}
.stream-card {
padding: 28px;
background: var(--black);
border: 1px solid var(--border);
border-radius: 12px;
}
.stream-tag {
display: inline-block;
font-family: var(--font-mono);
font-size: 0.7rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.1em;
padding: 4px 10px;
border-radius: 4px;
margin-bottom: 12px;
}
.stream-tag.core {
background: var(--green-dim);
color: var(--green);
}
.stream-tag.margin {
background: rgba(59, 130, 246, 0.1);
color: #60a5fa;
}
.stream-tag.campus {
background: rgba(168, 85, 247, 0.1);
color: #c084fc;
}
.stream-card h3 {
color: var(--white);
margin-bottom: 8px;
font-size: 1.1rem;
}
.stream-card p {
font-size: 0.9rem;
}
/* ========================================
Why Now Section
======================================== */
.why-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 32px;
margin-top: 48px;
}
@media (max-width: 600px) {
.why-grid {
grid-template-columns: 1fr;
}
}
.why-card {
padding: 32px;
background: var(--black);
border: 1px solid var(--border);
border-radius: 16px;
}
.why-card h3 {
color: var(--white);
margin-bottom: 12px;
}
.why-card p {
font-size: 0.95rem;
line-height: 1.6;
}
/* ========================================
Team Section
======================================== */
.team-content {
max-width: 720px;
}
.team-content h3 {
color: var(--white);
font-size: 1.3rem;
margin-bottom: 20px;
}
.team-bio {
list-style: none;
margin-top: 24px;
}
.team-bio li {
padding: 10px 0;
padding-left: 24px;
position: relative;
color: var(--gray);
line-height: 1.7;
}
.team-bio li::before {
content: '';
position: absolute;
left: 0;
top: 20px;
width: 6px;
height: 6px;
background: var(--green);
border-radius: 50%;
}
/* ========================================
The Ask Section
======================================== */
.ask-section {
background: var(--black-light);
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
}
.ask-headline {
text-align: center;
margin-bottom: 48px;
}
.ask-headline .amount {
font-size: clamp(2.5rem, 6vw, 3.5rem);
font-weight: 700;
color: var(--green);
letter-spacing: -0.03em;
}
.ask-headline .terms {
font-size: 1.1rem;
color: var(--gray);
margin-top: 8px;
}
.ask-headline .terms-detail {
font-size: 0.9rem;
color: var(--gray-dark);
margin-top: 4px;
}
.use-of-funds {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
}
@media (max-width: 768px) {
.use-of-funds {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 480px) {
.use-of-funds {
grid-template-columns: 1fr;
}
}
.fund-item {
text-align: center;
padding: 28px 20px;
background: var(--black);
border: 1px solid var(--border);
border-radius: 12px;
}
.fund-percent {
font-size: 2rem;
font-weight: 700;
color: var(--green);
font-family: var(--font-mono);
line-height: 1;
margin-bottom: 12px;
}
.fund-item h3 {
color: var(--white);
font-size: 1rem;
margin-bottom: 8px;
}
.fund-item p {
font-size: 0.85rem;
}
/* ========================================
CTA / Deck Request
======================================== */
.cta-section {
text-align: center;
padding: 120px 0;
}
.cta-section h2 {
margin-bottom: 16px;
}
.cta-section .subhead {
margin: 0 auto 40px;
}
/* Form */
.deck-form {
max-width: 480px;
margin: 0 auto;
text-align: left;
}
.form-group {
margin-bottom: 20px;
}
.form-group label {
display: block;
font-size: 0.9rem;
color: var(--gray);
margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
width: 100%;
padding: 12px 16px;
background: var(--black-lighter);
border: 1px solid var(--border);
border-radius: 8px;
color: var(--white);
font-family: var(--font);
font-size: 1rem;
transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--green);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
color: var(--gray-dark);
}
.form-row {
display: flex;
gap: 16px;
}
.form-row .form-group {
flex: 1;
}
@media (max-width: 480px) {
.form-row {
flex-direction: column;
gap: 0;
}
}
.form-success {
background: var(--green-dim);
border: 1px solid var(--green);
border-radius: 12px;
padding: 32px;
text-align: center;
max-width: 480px;
margin: 0 auto;
}
.form-success h3 {
color: var(--green);
margin-bottom: 8px;
}
.form-success p {
color: var(--white);
}
.form-error {
background: rgba(255, 100, 100, 0.1);
border: 1px solid #ff6464;
border-radius: 8px;
padding: 12px 16px;
color: #ff6464;
margin-bottom: 20px;
}
/* ========================================
Footer
======================================== */
.site-footer {
padding: 48px 0;
border-top: 1px solid var(--border);
}
.footer-content {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 16px;
}
.footer-location {
font-size: 0.95rem;
color: var(--gray);
}
.footer-copy {
font-size: 0.85rem;
color: var(--gray-dark);
}
.footer-disclaimer {
width: 100%;
text-align: center;
font-size: 0.8rem;
color: var(--gray-dark);
margin-top: 16px;
padding-top: 16px;
border-top: 1px solid var(--border);
}
@media (max-width: 600px) {
.footer-content {
flex-direction: column;
text-align: center;
}
}
/* ========================================
Utilities
======================================== */
.text-center { text-align: center; }
.text-green { color: var(--green); }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }