1140 lines
35 KiB
HTML
1140 lines
35 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="description" content="my-biz.app — a hassle-free all-in-one back-office for NGOs, Startups, Manufacturers and Restaurants." />
|
|
<title>my-biz.app — Your Back-Office, Sorted.</title>
|
|
<style>
|
|
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
|
|
|
:root {
|
|
--black: #060606;
|
|
--dark: #0d0d0d;
|
|
--card: #121212;
|
|
--card2: #161616;
|
|
--g1: #5c3d00;
|
|
--g2: #b8860b;
|
|
--g3: #daa520;
|
|
--g4: #ffd700;
|
|
--g5: #fff4a3;
|
|
--muted: #8a7a5a;
|
|
--warm: #c8b882;
|
|
--white: #fdf8ef;
|
|
--radius: 10px;
|
|
}
|
|
|
|
html { scroll-behavior: smooth; }
|
|
|
|
body {
|
|
font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
|
|
background: var(--black);
|
|
color: var(--warm);
|
|
line-height: 1.7;
|
|
}
|
|
|
|
/* ── KEYFRAMES ── */
|
|
|
|
@keyframes shimmer {
|
|
from { background-position: 200% center; }
|
|
to { background-position: -200% center; }
|
|
}
|
|
|
|
@keyframes twinkleA {
|
|
0%,100% { opacity: .2; }
|
|
50% { opacity: 1; }
|
|
}
|
|
|
|
@keyframes twinkleB {
|
|
0%,100% { opacity: .8; }
|
|
50% { opacity: .05; }
|
|
}
|
|
|
|
@keyframes floatUp {
|
|
0%,100% { transform: translateY(0); }
|
|
50% { transform: translateY(-9px); }
|
|
}
|
|
|
|
@keyframes goldGlow {
|
|
0%,100% {
|
|
box-shadow:
|
|
0 0 0 1px rgba(184,134,11,.5),
|
|
0 0 18px rgba(255,215,0,.15),
|
|
inset 0 0 12px rgba(218,165,32,.04);
|
|
}
|
|
50% {
|
|
box-shadow:
|
|
0 0 0 1px var(--g4),
|
|
0 0 45px rgba(255,215,0,.45),
|
|
0 0 90px rgba(255,215,0,.12),
|
|
inset 0 0 28px rgba(218,165,32,.09);
|
|
}
|
|
}
|
|
|
|
@keyframes shine {
|
|
0% { left: -160%; }
|
|
55%,100% { left: 160%; }
|
|
}
|
|
|
|
@keyframes rotateSweep {
|
|
from { transform: translate(-50%,-50%) rotate(0deg); }
|
|
to { transform: translate(-50%,-50%) rotate(360deg); }
|
|
}
|
|
|
|
@keyframes topBar {
|
|
from { background-position: 0% center; }
|
|
to { background-position: 200% center; }
|
|
}
|
|
|
|
@keyframes badgePulse {
|
|
0%,100% { box-shadow: 0 0 10px rgba(255,215,0,.4); }
|
|
50% { box-shadow: 0 0 26px rgba(255,215,0,.9), 0 0 50px rgba(255,215,0,.3); }
|
|
}
|
|
|
|
/* ── GOLD TEXT MIXIN (via class) ── */
|
|
.gold {
|
|
background: linear-gradient(90deg,
|
|
var(--g1) 0%, var(--g2) 15%, var(--g3) 30%,
|
|
var(--g4) 45%, var(--g5) 55%,
|
|
var(--g4) 65%, var(--g3) 78%,
|
|
var(--g2) 88%, var(--g1) 100%);
|
|
background-size: 300% auto;
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
animation: shimmer 4s linear infinite;
|
|
}
|
|
|
|
/* ── NAV ── */
|
|
nav {
|
|
position: sticky; top: 0; z-index: 200;
|
|
background: rgba(6,6,6,.97);
|
|
backdrop-filter: blur(20px);
|
|
border-bottom: 1px solid var(--g2);
|
|
padding: 0 6vw;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
height: 66px;
|
|
}
|
|
|
|
.nav-logo {
|
|
font-size: 1.35rem;
|
|
font-weight: 900;
|
|
font-family: Georgia, serif;
|
|
text-decoration: none;
|
|
letter-spacing: 1px;
|
|
background: linear-gradient(90deg,
|
|
var(--g2) 0%, var(--g4) 35%, var(--g5) 50%,
|
|
var(--g4) 65%, var(--g2) 100%);
|
|
background-size: 250% auto;
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
animation: shimmer 5s linear infinite;
|
|
}
|
|
.nav-logo span { /* inherits shimmer */ }
|
|
|
|
.nav-links { display: flex; gap: 26px; list-style: none; align-items: center; }
|
|
|
|
.nav-links a {
|
|
text-decoration: none;
|
|
color: var(--muted);
|
|
font-size: .88rem;
|
|
letter-spacing: .5px;
|
|
transition: color .25s;
|
|
}
|
|
.nav-links a:hover { color: var(--g4); }
|
|
|
|
.nav-cta {
|
|
position: relative; overflow: hidden;
|
|
background: linear-gradient(90deg, var(--g1), var(--g3), var(--g5), var(--g3), var(--g1)) !important;
|
|
background-size: 250% auto !important;
|
|
-webkit-text-fill-color: #060606 !important;
|
|
color: #060606 !important;
|
|
padding: 8px 22px !important;
|
|
border-radius: 3px !important;
|
|
font-weight: 800 !important;
|
|
font-size: .8rem !important;
|
|
letter-spacing: 1.5px !important;
|
|
text-transform: uppercase !important;
|
|
animation: shimmer 3s linear infinite !important;
|
|
}
|
|
.nav-cta::after {
|
|
content: '';
|
|
position: absolute; top: 0;
|
|
left: -160%; width: 60px; height: 100%;
|
|
background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
|
|
transform: skewX(-20deg);
|
|
animation: shine 3s ease-in-out infinite;
|
|
}
|
|
|
|
/* ── HERO ── */
|
|
.hero {
|
|
position: relative;
|
|
overflow: hidden;
|
|
background:
|
|
radial-gradient(ellipse 90% 60% at 50% -10%, #1c1000 0%, transparent 65%),
|
|
radial-gradient(ellipse 60% 50% at 80% 90%, #0f0800 0%, transparent 60%),
|
|
#060606;
|
|
color: var(--white);
|
|
padding: 130px 6vw 150px;
|
|
text-align: center;
|
|
}
|
|
|
|
/* Star field layer A */
|
|
.hero::before {
|
|
content: '';
|
|
position: absolute; inset: 0; pointer-events: none;
|
|
background-image:
|
|
radial-gradient(circle 1.5px at 7% 14%, rgba(255,215,0,.95), transparent 3px),
|
|
radial-gradient(circle 1px at 19% 72%, rgba(255,250,200,.8), transparent 2px),
|
|
radial-gradient(circle 2px at 26% 38%, rgba(255,215,0,.9), transparent 4px),
|
|
radial-gradient(circle 1px at 33% 91%, rgba(255,215,0,.6), transparent 2px),
|
|
radial-gradient(circle 1.5px at 44% 21%, rgba(255,255,255,.9),transparent 3px),
|
|
radial-gradient(circle 1px at 52% 58%, rgba(255,215,0,.75), transparent 2px),
|
|
radial-gradient(circle 2px at 61% 9%, rgba(255,215,0,1), transparent 4px),
|
|
radial-gradient(circle 1px at 69% 48%, rgba(255,250,200,.7),transparent 2px),
|
|
radial-gradient(circle 1.5px at 77% 27%, rgba(255,215,0,.85), transparent 3px),
|
|
radial-gradient(circle 1px at 84% 68%, rgba(255,255,255,.7),transparent 2px),
|
|
radial-gradient(circle 2px at 91% 17%, rgba(255,215,0,.95), transparent 4px),
|
|
radial-gradient(circle 1px at 97% 55%, rgba(255,215,0,.65), transparent 2px),
|
|
radial-gradient(circle 1px at 14% 45%, rgba(255,215,0,.5), transparent 2px),
|
|
radial-gradient(circle 1.5px at 38% 80%, rgba(255,250,180,.8),transparent 3px),
|
|
radial-gradient(circle 1px at 72% 83%, rgba(255,215,0,.7), transparent 2px);
|
|
animation: twinkleA 3.2s ease-in-out infinite;
|
|
}
|
|
|
|
/* Star field layer B */
|
|
.hero::after {
|
|
content: '';
|
|
position: absolute; inset: 0; pointer-events: none;
|
|
background-image:
|
|
radial-gradient(circle 1px at 11% 52%, rgba(255,215,0,.9), transparent 2px),
|
|
radial-gradient(circle 2px at 23% 11%, rgba(255,250,200,.85),transparent 4px),
|
|
radial-gradient(circle 1px at 29% 66%, rgba(255,215,0,.6), transparent 2px),
|
|
radial-gradient(circle 1.5px at 47% 42%, rgba(255,255,255,.8),transparent 3px),
|
|
radial-gradient(circle 1px at 56% 25%, rgba(255,215,0,.9), transparent 2px),
|
|
radial-gradient(circle 2px at 65% 77%, rgba(255,215,0,.75), transparent 4px),
|
|
radial-gradient(circle 1px at 74% 44%, rgba(255,250,200,.8),transparent 2px),
|
|
radial-gradient(circle 1.5px at 87% 31%, rgba(255,215,0,.9), transparent 3px),
|
|
radial-gradient(circle 1px at 94% 82%, rgba(255,255,255,.6),transparent 2px),
|
|
radial-gradient(circle 1px at 5% 88%, rgba(255,215,0,.7), transparent 2px),
|
|
radial-gradient(circle 1.5px at 16% 29%, rgba(255,215,0,.85), transparent 3px),
|
|
radial-gradient(circle 1px at 41% 97%, rgba(255,250,180,.5),transparent 2px),
|
|
radial-gradient(circle 2px at 58% 94%, rgba(255,215,0,.6), transparent 4px),
|
|
radial-gradient(circle 1px at 81% 62%, rgba(255,215,0,.8), transparent 2px);
|
|
animation: twinkleB 2.6s ease-in-out infinite;
|
|
}
|
|
|
|
.hero-eyebrow {
|
|
position: relative; z-index: 2;
|
|
display: inline-block;
|
|
border: 1px solid var(--g3);
|
|
background: rgba(218,165,32,.1);
|
|
font-size: .72rem;
|
|
font-weight: 700;
|
|
letter-spacing: 3px;
|
|
text-transform: uppercase;
|
|
padding: 8px 26px;
|
|
border-radius: 2px;
|
|
margin-bottom: 38px;
|
|
color: var(--g4);
|
|
animation: floatUp 4.5s ease-in-out infinite;
|
|
}
|
|
|
|
.hero h1 {
|
|
position: relative; z-index: 2;
|
|
font-size: clamp(2.4rem, 5.5vw, 4.6rem);
|
|
font-weight: 900;
|
|
font-family: Georgia, 'Times New Roman', serif;
|
|
line-height: 1.1;
|
|
max-width: 880px;
|
|
margin: 0 auto 26px;
|
|
letter-spacing: -1px;
|
|
background: linear-gradient(90deg,
|
|
var(--g1) 0%, var(--g2) 12%, var(--g3) 25%,
|
|
var(--g4) 40%, var(--g5) 50%,
|
|
var(--g4) 60%, var(--g3) 75%,
|
|
var(--g2) 88%, var(--g1) 100%);
|
|
background-size: 250% auto;
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
animation: shimmer 5s linear infinite;
|
|
}
|
|
.hero h1 em { font-style: italic; }
|
|
|
|
.hero-sub {
|
|
position: relative; z-index: 2;
|
|
font-size: clamp(1rem, 2vw, 1.18rem);
|
|
max-width: 600px;
|
|
margin: 0 auto 20px;
|
|
color: var(--muted);
|
|
line-height: 1.85;
|
|
}
|
|
|
|
.hero-tagline {
|
|
position: relative; z-index: 2;
|
|
font-size: 1rem;
|
|
color: rgba(184,134,11,.55);
|
|
margin-bottom: 52px;
|
|
font-style: italic;
|
|
font-family: Georgia, serif;
|
|
}
|
|
|
|
.hero-actions {
|
|
position: relative; z-index: 2;
|
|
display: flex; gap: 20px;
|
|
justify-content: center; flex-wrap: wrap;
|
|
}
|
|
|
|
.btn-primary {
|
|
position: relative; overflow: hidden;
|
|
background: linear-gradient(90deg,
|
|
var(--g1), var(--g3), var(--g5), var(--g3), var(--g1));
|
|
background-size: 250% auto;
|
|
color: #050505;
|
|
padding: 16px 42px;
|
|
border-radius: 3px;
|
|
font-weight: 800;
|
|
font-size: .92rem;
|
|
text-decoration: none;
|
|
letter-spacing: 1.8px;
|
|
text-transform: uppercase;
|
|
animation: shimmer 3s linear infinite;
|
|
box-shadow: 0 0 28px rgba(255,215,0,.3), 0 4px 18px rgba(0,0,0,.6);
|
|
transition: box-shadow .3s;
|
|
display: inline-block;
|
|
}
|
|
.btn-primary::before {
|
|
content: '';
|
|
position: absolute; top: 0;
|
|
left: -160%; width: 70px; height: 100%;
|
|
background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
|
|
transform: skewX(-20deg);
|
|
animation: shine 2.8s ease-in-out infinite;
|
|
}
|
|
.btn-primary:hover {
|
|
box-shadow: 0 0 55px rgba(255,215,0,.6), 0 8px 32px rgba(0,0,0,.7);
|
|
}
|
|
|
|
.btn-secondary {
|
|
background: transparent;
|
|
border: 1px solid var(--g2);
|
|
color: var(--g3);
|
|
padding: 16px 42px;
|
|
border-radius: 3px;
|
|
font-weight: 700;
|
|
font-size: .92rem;
|
|
text-decoration: none;
|
|
letter-spacing: 1px;
|
|
transition: background .3s, border-color .3s, color .3s;
|
|
display: inline-block;
|
|
}
|
|
.btn-secondary:hover {
|
|
background: rgba(218,165,32,.1);
|
|
border-color: var(--g4);
|
|
color: var(--g5);
|
|
}
|
|
|
|
.hero-trust {
|
|
position: relative; z-index: 2;
|
|
margin-top: 62px;
|
|
font-size: .78rem;
|
|
color: var(--g1);
|
|
letter-spacing: 1px;
|
|
}
|
|
.hero-trust strong { color: var(--g3); }
|
|
|
|
/* ── SECTION COMMONS ── */
|
|
section { padding: 100px 6vw; }
|
|
|
|
.section-label {
|
|
display: inline-block;
|
|
font-size: .68rem;
|
|
font-weight: 700;
|
|
letter-spacing: 3.5px;
|
|
text-transform: uppercase;
|
|
color: var(--g3);
|
|
margin-bottom: 14px;
|
|
border-bottom: 1px solid var(--g2);
|
|
padding-bottom: 5px;
|
|
}
|
|
|
|
.section-title {
|
|
font-size: clamp(1.9rem, 3.5vw, 2.9rem);
|
|
font-weight: 900;
|
|
font-family: Georgia, 'Times New Roman', serif;
|
|
color: var(--g5);
|
|
line-height: 1.15;
|
|
max-width: 700px;
|
|
margin-bottom: 16px;
|
|
letter-spacing: -.3px;
|
|
}
|
|
|
|
.section-sub {
|
|
font-size: .98rem;
|
|
color: var(--muted);
|
|
max-width: 560px;
|
|
margin-bottom: 58px;
|
|
line-height: 1.8;
|
|
}
|
|
|
|
/* ── VERTICALS ── */
|
|
#verticals { background: var(--dark); }
|
|
|
|
.verticals-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
|
|
gap: 22px;
|
|
}
|
|
|
|
.vertical-card {
|
|
background: var(--card);
|
|
border: 1px solid rgba(184,134,11,.4);
|
|
border-radius: var(--radius);
|
|
padding: 38px 28px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
transition: transform .35s, border-color .35s;
|
|
cursor: default;
|
|
}
|
|
|
|
/* Shimmer line at card top */
|
|
.vertical-card::before {
|
|
content: '';
|
|
position: absolute; top: 0; left: 0; right: 0;
|
|
height: 2px;
|
|
background: linear-gradient(90deg,
|
|
transparent, var(--g3), var(--g5), var(--g3), transparent);
|
|
background-size: 200% auto;
|
|
opacity: 0;
|
|
transition: opacity .35s;
|
|
animation: topBar 2.5s linear infinite;
|
|
}
|
|
|
|
.vertical-card:hover {
|
|
transform: translateY(-5px);
|
|
border-color: var(--g4);
|
|
animation: goldGlow 2.2s ease-in-out infinite;
|
|
}
|
|
.vertical-card:hover::before { opacity: 1; }
|
|
|
|
.vertical-icon {
|
|
font-size: 2.5rem;
|
|
margin-bottom: 18px;
|
|
display: block;
|
|
filter: drop-shadow(0 0 10px rgba(255,215,0,.5));
|
|
}
|
|
|
|
.vertical-name {
|
|
font-size: 1.2rem;
|
|
font-weight: 800;
|
|
font-family: Georgia, serif;
|
|
color: var(--g4);
|
|
margin-bottom: 12px;
|
|
letter-spacing: .2px;
|
|
}
|
|
|
|
.vertical-desc {
|
|
font-size: .9rem;
|
|
color: var(--muted);
|
|
line-height: 1.75;
|
|
}
|
|
|
|
.vertical-tag {
|
|
display: inline-block;
|
|
margin-top: 18px;
|
|
font-size: .7rem;
|
|
font-weight: 700;
|
|
color: var(--g3);
|
|
background: rgba(218,165,32,.08);
|
|
border: 1px solid rgba(218,165,32,.3);
|
|
padding: 5px 14px;
|
|
border-radius: 2px;
|
|
letter-spacing: .5px;
|
|
}
|
|
|
|
/* ── NEWS ── */
|
|
#news { background: var(--black); }
|
|
|
|
.news-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
|
|
gap: 22px;
|
|
}
|
|
|
|
.news-card {
|
|
background: var(--card2);
|
|
border-radius: var(--radius);
|
|
border: 1px solid rgba(184,134,11,.2);
|
|
padding: 32px 26px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
transition: border-color .35s, transform .35s;
|
|
}
|
|
|
|
/* Growing gold bottom line */
|
|
.news-card::after {
|
|
content: '';
|
|
position: absolute; bottom: 0; left: 0; right: 0;
|
|
height: 2px;
|
|
background: linear-gradient(90deg, transparent, var(--g4), transparent);
|
|
transform: scaleX(0);
|
|
transition: transform .45s ease;
|
|
}
|
|
.news-card:hover {
|
|
border-color: rgba(218,165,32,.55);
|
|
transform: translateY(-4px);
|
|
box-shadow: 0 12px 40px rgba(218,165,32,.1);
|
|
}
|
|
.news-card:hover::after { transform: scaleX(1); }
|
|
|
|
.news-area {
|
|
font-size: .65rem;
|
|
font-weight: 800;
|
|
letter-spacing: 3px;
|
|
text-transform: uppercase;
|
|
color: var(--g4);
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.news-title {
|
|
font-size: 1.02rem;
|
|
font-weight: 700;
|
|
font-family: Georgia, serif;
|
|
color: var(--g5);
|
|
margin-bottom: 10px;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
.news-teaser {
|
|
font-size: .87rem;
|
|
color: var(--muted);
|
|
line-height: 1.72;
|
|
}
|
|
|
|
.news-date {
|
|
display: block;
|
|
margin-top: 18px;
|
|
font-size: .74rem;
|
|
color: var(--g2);
|
|
letter-spacing: .5px;
|
|
}
|
|
|
|
/* ── PRICING ── */
|
|
#pricing { background: var(--dark); text-align: center; }
|
|
#pricing .section-title,
|
|
#pricing .section-sub { margin-left: auto; margin-right: auto; text-align: center; }
|
|
|
|
.pricing-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
|
|
gap: 30px;
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.pricing-card {
|
|
background: var(--card);
|
|
border: 1px solid rgba(184,134,11,.45);
|
|
border-radius: 12px;
|
|
padding: 50px 38px;
|
|
position: relative;
|
|
text-align: left;
|
|
overflow: hidden;
|
|
transition: transform .35s;
|
|
}
|
|
|
|
/* Animated shimmer bar at top of every pricing card */
|
|
.pricing-card::before {
|
|
content: '';
|
|
position: absolute; top: 0; left: 0; right: 0;
|
|
height: 3px;
|
|
background: linear-gradient(90deg,
|
|
var(--g1), var(--g3), var(--g5), var(--g3), var(--g1));
|
|
background-size: 200% auto;
|
|
animation: topBar 2.5s linear infinite;
|
|
}
|
|
|
|
.pricing-card:hover { transform: translateY(-5px); }
|
|
|
|
.pricing-card.featured {
|
|
background: linear-gradient(155deg, #18110a 0%, #0c0800 100%);
|
|
border: 1px solid var(--g4);
|
|
animation: goldGlow 3s ease-in-out infinite;
|
|
}
|
|
|
|
.pricing-badge {
|
|
position: absolute;
|
|
top: 0; right: 28px;
|
|
background: linear-gradient(90deg, var(--g2), var(--g4), var(--g5), var(--g4), var(--g2));
|
|
background-size: 200% auto;
|
|
animation: shimmer 3s linear infinite, badgePulse 2.5s ease-in-out infinite;
|
|
color: #050505;
|
|
font-size: .68rem;
|
|
font-weight: 900;
|
|
letter-spacing: 2px;
|
|
text-transform: uppercase;
|
|
padding: 6px 18px;
|
|
border-radius: 0 0 8px 8px;
|
|
}
|
|
|
|
.pricing-plan {
|
|
font-size: .7rem;
|
|
font-weight: 800;
|
|
letter-spacing: 3.5px;
|
|
text-transform: uppercase;
|
|
color: var(--g3);
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.pricing-price {
|
|
font-size: 3.4rem;
|
|
font-weight: 900;
|
|
font-family: Georgia, serif;
|
|
line-height: 1;
|
|
margin-bottom: 6px;
|
|
background: linear-gradient(90deg,
|
|
var(--g2) 0%, var(--g4) 30%, var(--g5) 50%,
|
|
var(--g4) 70%, var(--g2) 100%);
|
|
background-size: 200% auto;
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
animation: shimmer 4s linear infinite;
|
|
}
|
|
|
|
.pricing-period {
|
|
font-size: .84rem;
|
|
color: var(--g2);
|
|
margin-bottom: 22px;
|
|
letter-spacing: .3px;
|
|
}
|
|
|
|
.pricing-quote {
|
|
font-size: .9rem;
|
|
font-style: italic;
|
|
font-family: Georgia, serif;
|
|
color: var(--muted);
|
|
border-left: 2px solid var(--g2);
|
|
padding-left: 16px;
|
|
margin-bottom: 30px;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.pricing-features {
|
|
list-style: none;
|
|
margin-bottom: 34px;
|
|
}
|
|
.pricing-features li {
|
|
font-size: .88rem;
|
|
color: var(--warm);
|
|
padding: 8px 0;
|
|
border-bottom: 1px solid rgba(184,134,11,.12);
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 11px;
|
|
}
|
|
.pricing-features li::before {
|
|
content: '◆';
|
|
color: var(--g4);
|
|
font-size: .55rem;
|
|
flex-shrink: 0;
|
|
filter: drop-shadow(0 0 4px rgba(255,215,0,.6));
|
|
}
|
|
|
|
.pricing-cta {
|
|
display: block;
|
|
position: relative; overflow: hidden;
|
|
text-align: center;
|
|
padding: 14px 30px;
|
|
border-radius: 3px;
|
|
font-weight: 900;
|
|
font-size: .88rem;
|
|
text-decoration: none;
|
|
letter-spacing: 2px;
|
|
text-transform: uppercase;
|
|
background: linear-gradient(90deg,
|
|
var(--g1), var(--g3), var(--g5), var(--g3), var(--g1));
|
|
background-size: 250% auto;
|
|
color: #050505;
|
|
animation: shimmer 3s linear infinite;
|
|
box-shadow: 0 4px 22px rgba(218,165,32,.25);
|
|
transition: box-shadow .3s;
|
|
}
|
|
.pricing-cta::before {
|
|
content: '';
|
|
position: absolute; top: 0;
|
|
left: -160%; width: 60px; height: 100%;
|
|
background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
|
|
transform: skewX(-20deg);
|
|
animation: shine 3s ease-in-out infinite;
|
|
}
|
|
.pricing-cta:hover { box-shadow: 0 8px 35px rgba(218,165,32,.55); }
|
|
|
|
/* ── CUSTOMIZATION ── */
|
|
#customization { background: var(--black); }
|
|
|
|
.custom-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 28px;
|
|
}
|
|
|
|
.custom-card {
|
|
background: var(--card);
|
|
border: 1px solid rgba(184,134,11,.3);
|
|
border-radius: var(--radius);
|
|
padding: 42px 34px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
transition: border-color .4s;
|
|
}
|
|
|
|
/* Rotating golden sweep */
|
|
.custom-card::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 50%; left: 50%;
|
|
width: 250%; height: 250%;
|
|
background: conic-gradient(
|
|
from 0deg,
|
|
transparent 60%,
|
|
rgba(255,215,0,.06) 70%,
|
|
rgba(255,215,0,.12) 75%,
|
|
rgba(255,215,0,.06) 80%,
|
|
transparent 90%
|
|
);
|
|
transform: translate(-50%,-50%) rotate(0deg);
|
|
animation: rotateSweep 9s linear infinite;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.custom-card:hover {
|
|
border-color: var(--g3);
|
|
box-shadow: 0 0 40px rgba(218,165,32,.12);
|
|
}
|
|
|
|
.custom-icon {
|
|
font-size: 2.4rem;
|
|
margin-bottom: 18px;
|
|
display: block;
|
|
position: relative; z-index: 1;
|
|
filter: drop-shadow(0 0 10px rgba(255,215,0,.55));
|
|
}
|
|
|
|
.custom-title {
|
|
font-size: 1.18rem;
|
|
font-weight: 800;
|
|
font-family: Georgia, serif;
|
|
color: var(--g4);
|
|
margin-bottom: 12px;
|
|
position: relative; z-index: 1;
|
|
}
|
|
|
|
.custom-body {
|
|
font-size: .9rem;
|
|
color: var(--muted);
|
|
line-height: 1.8;
|
|
margin-bottom: 22px;
|
|
position: relative; z-index: 1;
|
|
}
|
|
.custom-body strong { color: var(--g3); }
|
|
|
|
.custom-rate {
|
|
display: inline-block;
|
|
font-size: 1.5rem;
|
|
font-weight: 900;
|
|
font-family: Georgia, serif;
|
|
letter-spacing: .5px;
|
|
position: relative; z-index: 1;
|
|
background: linear-gradient(90deg,
|
|
var(--g2) 0%, var(--g4) 35%, var(--g5) 50%,
|
|
var(--g4) 65%, var(--g2) 100%);
|
|
background-size: 200% auto;
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
animation: shimmer 4s linear infinite;
|
|
}
|
|
|
|
.custom-link {
|
|
display: inline-block;
|
|
font-weight: 700;
|
|
font-size: .9rem;
|
|
color: var(--g3);
|
|
text-decoration: none;
|
|
border-bottom: 1px solid rgba(218,165,32,.4);
|
|
padding-bottom: 2px;
|
|
transition: color .3s, border-color .3s;
|
|
position: relative; z-index: 1;
|
|
}
|
|
.custom-link:hover { color: var(--g5); border-color: var(--g4); }
|
|
|
|
/* ── FOOTER ── */
|
|
footer {
|
|
background: #030303;
|
|
border-top: 1px solid var(--g2);
|
|
padding: 62px 6vw 36px;
|
|
color: var(--muted);
|
|
}
|
|
|
|
.footer-top {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
gap: 36px;
|
|
padding-bottom: 44px;
|
|
border-bottom: 1px solid rgba(184,134,11,.12);
|
|
margin-bottom: 32px;
|
|
}
|
|
|
|
.footer-brand { max-width: 310px; }
|
|
|
|
.footer-logo {
|
|
font-size: 1.45rem;
|
|
font-weight: 900;
|
|
font-family: Georgia, serif;
|
|
text-decoration: none;
|
|
display: block;
|
|
margin-bottom: 14px;
|
|
letter-spacing: 1px;
|
|
background: linear-gradient(90deg,
|
|
var(--g2) 0%, var(--g4) 35%, var(--g5) 50%,
|
|
var(--g4) 65%, var(--g2) 100%);
|
|
background-size: 250% auto;
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
animation: shimmer 6s linear infinite;
|
|
}
|
|
.footer-logo span { /* inherits */ }
|
|
|
|
.footer-brand p { font-size: .87rem; line-height: 1.78; }
|
|
|
|
.footer-col h4 {
|
|
color: var(--g4);
|
|
font-size: .72rem;
|
|
font-weight: 800;
|
|
letter-spacing: 2.5px;
|
|
text-transform: uppercase;
|
|
margin-bottom: 18px;
|
|
}
|
|
|
|
.footer-col ul { list-style: none; }
|
|
.footer-col ul li { margin-bottom: 10px; }
|
|
.footer-col ul li a {
|
|
color: var(--muted);
|
|
text-decoration: none;
|
|
font-size: .87rem;
|
|
transition: color .25s;
|
|
}
|
|
.footer-col ul li a:hover { color: var(--g4); }
|
|
|
|
.footer-bottom {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
gap: 12px;
|
|
font-size: .78rem;
|
|
color: var(--g1);
|
|
}
|
|
|
|
.footer-legal a {
|
|
color: var(--g1);
|
|
text-decoration: none;
|
|
margin-left: 20px;
|
|
transition: color .25s;
|
|
}
|
|
.footer-legal a:hover { color: var(--g4); }
|
|
|
|
/* ── SECTION DIVIDER ── */
|
|
#verticals, #news, #customization {
|
|
border-top: 1px solid rgba(184,134,11,.1);
|
|
}
|
|
|
|
/* ── RESPONSIVE ── */
|
|
@media (max-width: 680px) {
|
|
nav { padding: 0 5vw; }
|
|
.nav-links { display: none; }
|
|
section { padding: 75px 5vw; }
|
|
.hero { padding: 95px 5vw 110px; }
|
|
.footer-top { flex-direction: column; }
|
|
.hero h1 { font-size: 2.2rem; }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<!-- ── NAV ── -->
|
|
<nav>
|
|
<a class="nav-logo" href="#">my-biz<span>.app</span></a>
|
|
<ul class="nav-links">
|
|
<li><a href="#verticals">Verticals</a></li>
|
|
<li><a href="#news">News</a></li>
|
|
<li><a href="#pricing">Pricing</a></li>
|
|
<li><a href="#customization">Customization</a></li>
|
|
<li><a class="nav-cta" href="#pricing">Get Started</a></li>
|
|
</ul>
|
|
</nav>
|
|
|
|
<!-- ── HERO ── -->
|
|
<section class="hero" id="home">
|
|
<div class="hero-eyebrow">✦ One Stop Shop · Built for Real Businesses</div>
|
|
<h1>Running a business is hard.<br><em>Your back-office shouldn't be.</em></h1>
|
|
<p class="hero-sub">
|
|
We eliminate the chaos behind the scenes — invoicing, HR, inventory, CRM, reports —
|
|
all in one place, set up for your exact industry, ready from day one.
|
|
</p>
|
|
<p class="hero-tagline">No duct tape. No spreadsheet nightmares. No expensive surprises.</p>
|
|
<div class="hero-actions">
|
|
<a class="btn-primary" href="#pricing">See Plans & Pricing</a>
|
|
<a class="btn-secondary" href="#verticals">Find Your Vertical</a>
|
|
</div>
|
|
<p class="hero-trust">Powered by <strong>Odoo Community Edition</strong> · Specialists for every industry · From <strong>$214 / year</strong></p>
|
|
</section>
|
|
|
|
<!-- ── VERTICALS ── -->
|
|
<section id="verticals">
|
|
<span class="section-label">Our Verticals</span>
|
|
<h2 class="section-title">We speak your industry's language.</h2>
|
|
<p class="section-sub">
|
|
Every vertical has a dedicated specialist who has lived through your exact challenges.
|
|
No generalists. No guessing. Just experts who get it.
|
|
</p>
|
|
<div class="verticals-grid">
|
|
|
|
<div class="vertical-card">
|
|
<span class="vertical-icon">🌍</span>
|
|
<div class="vertical-name">NGO & Non-Profit</div>
|
|
<p class="vertical-desc">
|
|
Grant tracking, donor management, project accounting, and compliance reporting —
|
|
built for organizations that answer to their mission, not just their margin.
|
|
</p>
|
|
<span class="vertical-tag">Donor CRM · Grant Accounting · Impact Reports</span>
|
|
</div>
|
|
|
|
<div class="vertical-card">
|
|
<span class="vertical-icon">🚀</span>
|
|
<div class="vertical-name">Startups</div>
|
|
<p class="vertical-desc">
|
|
Move fast without breaking your books. From your first invoice to Series A due diligence,
|
|
we set up systems that grow with you and impress every investor.
|
|
</p>
|
|
<span class="vertical-tag">Invoicing · CRM · Equity-Ready Reporting</span>
|
|
</div>
|
|
|
|
<div class="vertical-card">
|
|
<span class="vertical-icon">🏭</span>
|
|
<div class="vertical-name">Manufacturing</div>
|
|
<p class="vertical-desc">
|
|
Bills of materials, production orders, real-time inventory, and quality control —
|
|
everything on the floor finally reflected in your numbers.
|
|
</p>
|
|
<span class="vertical-tag">MRP · Inventory · Purchase · Quality</span>
|
|
</div>
|
|
|
|
<div class="vertical-card">
|
|
<span class="vertical-icon">🍽️</span>
|
|
<div class="vertical-name">Restaurants</div>
|
|
<p class="vertical-desc">
|
|
From tableside POS to supplier invoices to staff scheduling —
|
|
keep the kitchen and the books running smoothly, even on your busiest Saturday night.
|
|
</p>
|
|
<span class="vertical-tag">POS · Supplier Mgmt · Payroll · Food Cost</span>
|
|
</div>
|
|
|
|
</div>
|
|
</section>
|
|
|
|
<!-- ── NEWS ── -->
|
|
<section id="news">
|
|
<span class="section-label">News from Our Verticals</span>
|
|
<h2 class="section-title">Insights from the front lines.</h2>
|
|
<p class="section-sub">
|
|
Our specialists share what's actually working — no fluff, no vendor noise.
|
|
Real stories from real businesses in your space.
|
|
</p>
|
|
<div class="news-grid">
|
|
|
|
<div class="news-card">
|
|
<div class="news-area">NGO</div>
|
|
<div class="news-title">How a regional NGO cut grant reporting time by 70%</div>
|
|
<p class="news-teaser">
|
|
Automating donor reconciliation and project cost allocation freed up 15 hours
|
|
per week that went straight back into their mission.
|
|
</p>
|
|
<span class="news-date">June 2025</span>
|
|
</div>
|
|
|
|
<div class="news-card">
|
|
<div class="news-area">Startups</div>
|
|
<div class="news-title">Why investors love clean Odoo data rooms</div>
|
|
<p class="news-teaser">
|
|
Three founders share how a structured back-office gave them an edge
|
|
during due diligence — and closed their rounds faster.
|
|
</p>
|
|
<span class="news-date">May 2025</span>
|
|
</div>
|
|
|
|
<div class="news-card">
|
|
<div class="news-area">Manufacturing</div>
|
|
<div class="news-title">Real-time BoM costing saved a mid-size factory $40k</div>
|
|
<p class="news-teaser">
|
|
When raw material prices shifted overnight, live production cost tracking
|
|
allowed this team to reprice quotes before they lost margin.
|
|
</p>
|
|
<span class="news-date">April 2025</span>
|
|
</div>
|
|
|
|
<div class="news-card">
|
|
<div class="news-area">Restaurants</div>
|
|
<div class="news-title">Food cost under control: a chef's back-office story</div>
|
|
<p class="news-teaser">
|
|
Linking POS sales data to supplier invoices automatically flagged
|
|
a 12% food cost creep — caught in week one, fixed before it hurt.
|
|
</p>
|
|
<span class="news-date">March 2025</span>
|
|
</div>
|
|
|
|
</div>
|
|
</section>
|
|
|
|
<!-- ── PRICING ── -->
|
|
<section id="pricing">
|
|
<span class="section-label">Simple Pricing</span>
|
|
<h2 class="section-title">Transparent. Honest. No surprises.</h2>
|
|
<p class="section-sub">
|
|
Pick the plan that matches where your business is today.
|
|
You can always grow into more — on your timeline, not ours.
|
|
</p>
|
|
<div class="pricing-grid">
|
|
|
|
<div class="pricing-card">
|
|
<div class="pricing-plan">Side Hustle</div>
|
|
<div class="pricing-price">$214</div>
|
|
<div class="pricing-period">per year · billed annually</div>
|
|
<p class="pricing-quote">"No big customizations — that is all my business needs."</p>
|
|
<ul class="pricing-features">
|
|
<li>Core back-office modules</li>
|
|
<li>Invoicing & basic accounting</li>
|
|
<li>Up to 3 users</li>
|
|
<li>Standard onboarding</li>
|
|
<li>Community support</li>
|
|
</ul>
|
|
<a class="pricing-cta" href="mailto:hello@my-biz.app?subject=Side Hustle Plan">Get Started</a>
|
|
</div>
|
|
|
|
<div class="pricing-card featured">
|
|
<div class="pricing-badge">Most Popular</div>
|
|
<div class="pricing-plan">On the Rise</div>
|
|
<div class="pricing-price">$395</div>
|
|
<div class="pricing-period">per year · billed annually</div>
|
|
<p class="pricing-quote">"I need some modules and professional reports."</p>
|
|
<ul class="pricing-features">
|
|
<li>Everything in Side Hustle</li>
|
|
<li>Industry-specific modules</li>
|
|
<li>Professional report templates</li>
|
|
<li>Up to 10 users</li>
|
|
<li>Priority onboarding</li>
|
|
<li>Email & chat support</li>
|
|
</ul>
|
|
<a class="pricing-cta" href="mailto:hello@my-biz.app?subject=On the Rise Plan">Get Started</a>
|
|
</div>
|
|
|
|
</div>
|
|
</section>
|
|
|
|
<!-- ── CUSTOMIZATION ── -->
|
|
<section id="customization">
|
|
<span class="section-label">Customization</span>
|
|
<h2 class="section-title">Need something more bespoke?</h2>
|
|
<p class="section-sub">
|
|
Because we build on <strong>Odoo Community Edition</strong>, you are never locked in.
|
|
Choose the path that works best for your team and budget.
|
|
</p>
|
|
<div class="custom-grid">
|
|
|
|
<div class="custom-card">
|
|
<span class="custom-icon">🌐</span>
|
|
<div class="custom-title">Hire Any Odoo Developer</div>
|
|
<p class="custom-body">
|
|
Since we use Odoo CE, the world's largest open-source ERP community is at your fingertips.
|
|
Thousands of certified freelancers on <strong>Upwork</strong> and <strong>Fiverr</strong>
|
|
can extend, theme, or integrate your instance — no vendor lock-in, ever.
|
|
You own your code. You own your data.
|
|
</p>
|
|
<a class="custom-link" href="https://www.upwork.com/search/profiles/?q=odoo" target="_blank" rel="noopener">Browse Odoo Developers →</a>
|
|
</div>
|
|
|
|
<div class="custom-card">
|
|
<span class="custom-icon">🛠️</span>
|
|
<div class="custom-title">Our In-House Team</div>
|
|
<p class="custom-body">
|
|
Prefer to work with specialists who already know your setup inside-out?
|
|
Our senior Odoo developers are on call for custom modules, integrations,
|
|
data migrations, and anything else your business needs to scale.
|
|
Transparent scope, no hidden fees.
|
|
</p>
|
|
<span class="custom-rate">$65 USD / hour</span>
|
|
</div>
|
|
|
|
</div>
|
|
</section>
|
|
|
|
<!-- ── FOOTER ── -->
|
|
<footer>
|
|
<div class="footer-top">
|
|
<div class="footer-brand">
|
|
<a class="footer-logo" href="#">my-biz<span>.app</span></a>
|
|
<p>
|
|
A hassle-free all-in-one back-office built on Odoo Community Edition.
|
|
Specialists for NGOs, Startups, Manufacturing, and Restaurants.
|
|
</p>
|
|
</div>
|
|
<div class="footer-col">
|
|
<h4>Product</h4>
|
|
<ul>
|
|
<li><a href="#verticals">Verticals</a></li>
|
|
<li><a href="#pricing">Pricing</a></li>
|
|
<li><a href="#customization">Customization</a></li>
|
|
<li><a href="#news">News</a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="footer-col">
|
|
<h4>Company</h4>
|
|
<ul>
|
|
<li><a href="mailto:hello@my-biz.app">Contact Us</a></li>
|
|
<li><a href="#">About</a></li>
|
|
<li><a href="#">Careers</a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="footer-col">
|
|
<h4>Legal</h4>
|
|
<ul>
|
|
<li><a href="#">Privacy Policy</a></li>
|
|
<li><a href="#">Terms of Service</a></li>
|
|
<li><a href="#">Cookie Policy</a></li>
|
|
<li><a href="#">Imprint</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="footer-bottom">
|
|
<span>© 2025 my-biz.app — All rights reserved.</span>
|
|
<div class="footer-legal">
|
|
<a href="#">Privacy</a>
|
|
<a href="#">Terms</a>
|
|
<a href="#">Imprint</a>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|
|
```
|
|
|
|
Now let me write the holiday file:
|