:root { --wpo-primary: #10b981;
--wpo-primary-dark: #059669;
--wpo-primary-light: #d1fae5; --wpo-surface: #ffffff;
--wpo-background: #f8fafc;
--wpo-foreground: #1e293b;
--wpo-muted: #64748b;
--wpo-border: #e2e8f0; --wpo-success: #10b981;
--wpo-warning: #f59e0b;
--wpo-danger: #ef4444; --wpo-gradient-primary: linear-gradient(135deg, #10b981 0%, #06b6d4 50%, #0ea5e9 100%); --wpo-container: 1280px;
--wpo-container-wide: 1440px; --wpo-radius: 0.5rem;
--wpo-radius-lg: 1rem;
--wpo-radius-xl: 1.5rem; --wpo-transition: 150ms ease;
} .dark {
--wpo-surface: #1e293b;
--wpo-background: #0f172a;
--wpo-foreground: #f1f5f9;
--wpo-muted: #94a3b8;
--wpo-border: #334155;
} html {
scroll-behavior: smooth;
}
body {
font-family: 'Inter', system-ui, -apple-system, sans-serif;
-webkit-font-smoothing: antialiased;
} .text-gradient {
background: var(--wpo-gradient-primary);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
} .container {
width: 100%;
max-width: var(--wpo-container);
margin: 0 auto;
padding: 0 1.5rem;
} .btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
height: 2.5rem;
padding: 0 1.25rem;
font-size: 0.875rem;
font-weight: 600;
border-radius: var(--wpo-radius);
cursor: pointer;
transition: all var(--wpo-transition);
text-decoration: none;
border: none;
}
.btn--primary {
background: var(--wpo-gradient-primary);
color: #fff !important;
}
.btn--primary:hover {
opacity: 0.9;
transform: translateY(-1px);
}
.btn--outline {
background: transparent;
color: var(--wpo-foreground);
border: 1px solid var(--wpo-border);
}
.btn--outline:hover {
border-color: var(--wpo-primary);
color: var(--wpo-primary);
}
.btn--ghost {
background: transparent;
color: var(--wpo-foreground);
}
.btn--ghost:hover {
background: var(--wpo-border);
}
.btn--full {
width: 100%;
}
.btn--lg {
height: 3rem;
padding: 0 1.75rem;
font-size: 1rem;
} .section-title {
font-size: 2rem;
font-weight: 700;
text-align: center;
color: var(--wpo-foreground);
} .pricing-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1.25rem;
max-width: 72rem;
margin: 0 auto;
align-items: start;
}
@media (max-width: 1023px) {
.pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 639px) {
.pricing-grid { grid-template-columns: 1fr; max-width: 24rem; }
}
.pricing-card {
position: relative;
display: flex;
flex-direction: column;
padding: 2rem 1.75rem;
background: var(--wpo-surface);
border: 1px solid var(--wpo-border);
border-radius: 1rem;
transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.pricing-card:hover {
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
} .pricing-card--featured {
border-color: var(--wpo-primary);
border-width: 2px;
padding: 2rem 1.75rem 2rem;
box-shadow: 0 8px 30px rgba(16, 185, 129, 0.12);
}
.pricing-card--featured:hover {
box-shadow: 0 12px 40px rgba(16, 185, 129, 0.18);
transform: translateY(-2px);
}
.pricing-card__badge {
display: inline-flex;
align-items: center;
justify-content: center;
align-self: center;
padding: 0.3125rem 1rem;
background: var(--wpo-gradient-primary);
color: white;
font-size: 0.6875rem;
font-weight: 700;
border-radius: 9999px;
text-transform: uppercase;
letter-spacing: 0.05em;
margin-bottom: 1.25rem;
} .pricing-card__name {
font-size: 1.125rem;
font-weight: 700;
color: var(--wpo-foreground);
margin-bottom: 0.25rem;
text-align: center;
}
.pricing-card__description {
font-size: 0.8125rem;
color: var(--wpo-muted);
margin-bottom: 1.5rem;
line-height: 1.5;
text-align: center;
} .pricing-card__price-block {
text-align: center;
margin-bottom: 1.5rem;
min-height: 4.75rem;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-end;
}
.pricing-card__price {
display: flex;
align-items: baseline;
justify-content: center;
line-height: 1;
}
.pricing-card__currency {
font-size: 1.25rem;
font-weight: 600;
color: var(--wpo-foreground);
align-self: flex-start;
margin-top: 0.375rem;
margin-right: 0.125rem;
}
.pricing-card__amount {
font-size: 3rem;
font-weight: 800;
color: var(--wpo-foreground);
letter-spacing: -0.04em;
line-height: 1;
}
.pricing-card__cents {
font-size: 1rem;
font-weight: 700;
color: var(--wpo-foreground);
align-self: flex-start;
margin-top: 0.375rem;
}
.pricing-card__period {
font-size: 0.8125rem;
color: var(--wpo-muted);
margin-left: 0.25rem;
align-self: flex-end;
margin-bottom: 0.25rem;
} .pricing-card__discount {
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
margin-bottom: 0.375rem;
}
.pricing-card__original {
font-size: 0.9375rem;
color: var(--wpo-muted);
text-decoration: line-through;
font-weight: 500;
}
.pricing-card__save {
display: inline-flex;
align-items: center;
padding: 0.125rem 0.5rem;
font-size: 0.6875rem;
font-weight: 700;
color: #059669;
background: rgba(16, 185, 129, 0.1);
border-radius: 9999px;
letter-spacing: 0.02em;
} .pricing-card__divider {
height: 1px;
background: var(--wpo-border);
margin-bottom: 1.5rem;
} .pricing-card__features-label {
font-size: 0.6875rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.06em;
color: var(--wpo-muted);
margin-bottom: 0.75rem;
} .pricing-card__features {
flex: 1;
list-style: none;
padding: 0;
margin: 0 0 1.5rem;
}
.pricing-card__features li {
position: relative;
padding-left: 1.5rem;
margin-bottom: 0.5rem;
font-size: 0.8125rem;
color: var(--wpo-foreground);
line-height: 1.6;
}
.pricing-card__features li::before {
content: '';
position: absolute;
left: 0;
top: 0.35rem;
width: 14px;
height: 14px;
background: var(--wpo-success);
mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
}
.pricing-card__features li strong {
font-weight: 600;
color: var(--wpo-foreground);
} .pricing-card .btn {
font-weight: 600;
font-size: 0.875rem;
padding: 0.6875rem 1.5rem;
border-radius: 0.5rem;
text-align: center;
}
.pricing-card--featured .btn--primary {
box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}
.pricing-card--featured .btn--primary:hover {
box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
transform: translateY(-1px);
} .section-subtitle {
font-size: 1.125rem;
color: var(--wpo-muted);
max-width: 42rem;
margin-left: auto;
margin-right: auto;
line-height: 1.7;
} .feature-card {
position: relative;
padding: 2rem;
background: var(--wpo-surface);
border: 1px solid var(--wpo-border);
border-radius: var(--wpo-radius-xl);
transition: all 0.3s ease;
}
.feature-card:hover {
transform: translateY(-4px);
box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
border-color: var(--wpo-primary);
}
.feature-card__icon {
display: flex;
align-items: center;
justify-content: center;
width: 3rem;
height: 3rem;
border-radius: 0.75rem;
background: var(--wpo-primary-light);
color: var(--wpo-primary-dark);
margin-bottom: 1.25rem;
}
.feature-card__title {
font-size: 1.125rem;
font-weight: 700;
color: var(--wpo-foreground);
margin-bottom: 0.5rem;
}
.feature-card__text {
font-size: 0.9375rem;
color: var(--wpo-muted);
line-height: 1.6;
} .testimonial-card {
padding: 2rem;
background: var(--wpo-surface);
border: 1px solid var(--wpo-border);
border-radius: var(--wpo-radius-xl);
transition: all 0.3s ease;
}
.testimonial-card:hover {
transform: translateY(-2px);
box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
}
.testimonial-card__text {
font-size: 0.9375rem;
color: var(--wpo-foreground);
line-height: 1.7;
margin-bottom: 1.5rem;
font-style: italic;
}
.testimonial-card__author {
display: flex;
align-items: center;
gap: 0.75rem;
}
.testimonial-card__avatar {
display: flex;
align-items: center;
justify-content: center;
width: 2.5rem;
height: 2.5rem;
border-radius: 9999px;
background: var(--wpo-gradient-primary);
color: #fff;
font-size: 0.75rem;
font-weight: 700;
flex-shrink: 0;
}
.testimonial-card__info {
display: flex;
flex-direction: column;
}
.testimonial-card__info strong {
font-size: 0.875rem;
font-weight: 600;
color: var(--wpo-foreground);
}
.testimonial-card__info span {
font-size: 0.8125rem;
color: var(--wpo-muted);
} .pillar-card {
position: relative;
padding: 2.5rem 2rem;
background: var(--wpo-surface);
border: 1px solid var(--wpo-border);
border-radius: var(--wpo-radius-xl);
transition: all 0.3s ease;
text-align: center;
}
.pillar-card:hover {
transform: translateY(-6px);
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}
.pillar-card--featured {
border: 2px solid var(--wpo-primary);
box-shadow: 0 0 40px rgba(16, 185, 129, 0.1);
}
.pillar-card--featured:hover {
box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.2);
}
.pillar-card__icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 4rem;
height: 4rem;
border-radius: 1rem;
margin-bottom: 1.5rem;
}
.pillar-card__icon--smtp {
background: linear-gradient(135deg, #dbeafe, #ede9fe);
color: #6366f1;
}
.pillar-card__icon--newsletter {
background: linear-gradient(135deg, #d1fae5, #ccfbf1);
color: #10b981;
}
.pillar-card__icon--automation {
background: linear-gradient(135deg, #fef3c7, #ffedd5);
color: #f59e0b;
}
.pillar-card__title {
font-size: 1.25rem;
font-weight: 700;
color: var(--wpo-foreground);
margin-bottom: 0.75rem;
}
.pillar-card__text {
font-size: 0.9375rem;
color: var(--wpo-muted);
line-height: 1.7;
margin-bottom: 1.5rem;
}
.pillar-card__list {
list-style: none;
padding: 0;
margin: 0;
text-align: left;
}
.pillar-card__list li {
position: relative;
padding-left: 1.5rem;
margin-bottom: 0.625rem;
font-size: 0.875rem;
color: var(--wpo-foreground);
}
.pillar-card__list li::before {
content: '';
position: absolute;
left: 0;
top: 0.35rem;
width: 12px;
height: 12px;
background: var(--wpo-success);
mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
} .solar-system {
position: relative;
width: 100%;
max-width: 900px;
height: 400px;
margin: 0 auto;
} .solar-orbits-svg {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 1;
}
.solar-orbit-path {
fill: none;
stroke: var(--wpo-border);
stroke-dasharray: 6 6;
}
.solar-orbit-path--1 {
stroke-width: 1.5;
stroke-opacity: 0.9;
}
.solar-orbit-path--2 {
stroke-width: 1.2;
stroke-opacity: 0.6;
}
.solar-orbit-path--3 {
stroke-width: 1.2;
stroke-opacity: 0.7;
} .solar-sun {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 10;
}
.solar-sun__glow {
position: absolute;
inset: -28px;
border-radius: 9999px;
background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, transparent 70%);
animation: sun-pulse 4s ease-in-out infinite;
}
.solar-sun__core {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 0.25rem;
width: 88px;
height: 88px;
border-radius: 9999px;
background: linear-gradient(135deg, #10b981, #06b6d4);
color: #fff;
box-shadow:
0 0 0 4px rgba(16, 185, 129, 0.15),
0 0 40px rgba(16, 185, 129, 0.2),
0 8px 20px rgba(0, 0, 0, 0.12);
}
.solar-sun__core svg {
width: 22px;
height: 22px;
stroke: #fff;
}
.solar-sun__core span {
font-size: 0.6875rem;
font-weight: 800;
letter-spacing: 0.02em;
text-transform: uppercase;
} .solar-planet {
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
transform: translate(var(--x), var(--y));
z-index: 5;
}
.solar-planet__pill {
display: inline-flex;
align-items: center;
gap: 0.375rem;
padding: 0.4rem 0.75rem;
background: var(--wpo-surface);
border: 1px solid var(--wpo-border);
border-radius: 9999px;
white-space: nowrap;
font-size: 0.75rem;
font-weight: 600;
color: var(--wpo-foreground);
transform: translate(-50%, -50%);
animation: planet-float 5s ease-in-out infinite;
animation-delay: var(--d, 0s);
transition: border-color 0.2s ease, box-shadow 0.2s ease;
cursor: default;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}
.solar-planet__pill:hover {
border-color: var(--brand);
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), 0 0 0 3px color-mix(in srgb, var(--brand) 12%, transparent);
z-index: 20;
}
.solar-planet__dot {
width: 7px;
height: 7px;
border-radius: 9999px;
background: var(--brand);
flex-shrink: 0;
box-shadow: 0 0 4px var(--brand);
} @keyframes planet-float {
0%, 100% { transform: translate(-50%, -50%) translateY(0); }
50% { transform: translate(-50%, -50%) translateY(-6px); }
}
@keyframes sun-pulse {
0%, 100% { transform: scale(1); opacity: 0.6; }
50% { transform: scale(1.3); opacity: 1; }
} @media (max-width: 960px) {
.solar-system {
transform: scale(0.72);
transform-origin: center center;
margin-top: -3rem;
margin-bottom: -3rem;
}
} @media (max-width: 640px) {
.solar-system {
height: auto;
max-width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 0.5rem;
padding: 1rem 0;
transform: none;
margin-top: 0;
margin-bottom: 0;
}
.solar-orbits-svg {
display: none;
}
.solar-sun {
position: static;
transform: none;
width: 100%;
display: flex;
justify-content: center;
margin-bottom: 1rem;
}
.solar-sun__glow {
display: none;
}
.solar-sun__core {
width: auto;
height: auto;
flex-direction: row;
gap: 0.5rem;
padding: 0.625rem 1.25rem;
border-radius: 9999px;
}
.solar-sun__core span {
font-size: 0.8125rem;
}
.solar-planet {
position: static;
width: auto;
height: auto;
transform: none;
}
.solar-planet__pill {
transform: none;
animation: none;
}
} .hiw-timeline {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
position: relative;
max-width: 56rem;
margin: 0 auto;
} .hiw-timeline__line {
position: absolute;
top: calc(1.375rem - 1px);
left: calc(16.66%);
right: calc(16.66%);
height: 2px;
background: var(--wpo-border);
z-index: 0;
}
.hiw-timeline__line::before {
content: '';
position: absolute;
inset: 0;
background: var(--wpo-gradient-primary);
opacity: 0.35;
} .hiw-card {
text-align: center;
position: relative;
z-index: 1;
}
.hiw-card__badge {
display: inline-flex;
align-items: center;
justify-content: center;
width: 2.75rem;
height: 2.75rem;
border-radius: 9999px;
background: var(--wpo-gradient-primary);
color: #fff;
font-size: 1rem;
font-weight: 700;
margin-bottom: 1.5rem;
box-shadow: 0 0 0 4px var(--wpo-background), 0 4px 12px rgba(16, 185, 129, 0.25);
position: relative;
z-index: 2;
}
.hiw-card__icon {
display: flex;
align-items: center;
justify-content: center;
width: 3.5rem;
height: 3.5rem;
border-radius: 1rem;
background: var(--wpo-surface);
border: 1px solid var(--wpo-border);
margin: 0 auto 1.25rem;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.hiw-card__title {
font-size: 1.125rem;
font-weight: 700;
color: var(--wpo-foreground);
margin-bottom: 0.5rem;
}
.hiw-card__text {
font-size: 0.9375rem;
color: var(--wpo-muted);
line-height: 1.7;
max-width: 18rem;
margin: 0 auto;
}
@media (max-width: 640px) {
.hiw-timeline {
grid-template-columns: 1fr;
gap: 2.5rem;
}
.hiw-timeline__line {
display: none;
}
} .faq-item__question::-webkit-details-marker,
.faq-summary::-webkit-details-marker,
details summary::-webkit-details-marker {
display: none;
}
details summary {
list-style: none;
} .bg-grid {
background-image:
linear-gradient(rgba(16, 185, 129, 0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(16, 185, 129, 0.03) 1px, transparent 1px);
background-size: 40px 40px;
} @keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-20px); }
}
.animate-float {
animation: float 6s ease-in-out infinite;
}  .screen-reader-text {
clip: rect(1px, 1px, 1px, 1px);
position: absolute !important;
height: 1px;
width: 1px;
overflow: hidden;
} .alignleft {
float: left;
margin-right: 1.5rem;
margin-bottom: 1rem;
}
.alignright {
float: right;
margin-left: 1.5rem;
margin-bottom: 1rem;
}
.aligncenter {
display: block;
margin: 0 auto 1rem;
} .prose h2 {
margin-top: 2rem;
margin-bottom: 1rem;
padding-bottom: 0.5rem;
border-bottom: 1px solid var(--wpo-border);
}
.prose a {
color: var(--wpo-primary);
}
.prose a:hover {
text-decoration: underline;
}
.prose code {
background: var(--wpo-primary-light);
color: var(--wpo-primary-dark);
padding: 0.125rem 0.375rem;
border-radius: 0.25rem;
font-size: 0.875em;
}
.dark .prose code {
background: rgba(16, 185, 129, 0.2);
color: #34d399;
}
.prose pre {
background: #0f172a;
border-radius: 0.75rem;
padding: 1.25rem;
overflow-x: auto;
}
.prose pre code {
background: transparent;
color: #e2e8f0;
padding: 0;
}
.prose blockquote {
border-left: 4px solid var(--wpo-primary);
padding-left: 1rem;
font-style: italic;
color: var(--wpo-muted);
} body.admin-bar #site-header {
top: 32px;
}
body.admin-bar #header-spacer {
height: 4rem; }
@media (min-width: 1024px) {
body.admin-bar #header-spacer {
height: 5rem; }
} @media (max-width: 782px) {
body.admin-bar #site-header {
top: 46px;
}
body.admin-bar #header-spacer {
height: 4rem; }
}