css
/*
Theme Name: Steinmetz Ventures LLC
Description: Modern dark theme with animated Earth globe and satellite network for global technology company
Version: 1.0
Author: Steinmetz Ventures
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0d1421 0%, #1a2332 100%);
    color: #e2e8f0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
.header {
    background: rgba(13, 20, 33, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(56, 178, 172, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #38b2ac;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #38b2ac;
}

/* Hero Section with Globe */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #38b2ac, #4fd1c7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: linear-gradient(135deg, #38b2ac, #4fd1c7);
    color: #1a202c;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* Earth Globe Animation */
.globe-container {
    position: relative;
    width: 800px;
    height: 800px;
    margin: 0 auto;
}

.globe {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/9/97/The_Earth_seen_from_Apollo_17.jpg/512px-The_Earth_seen_from_Apollo_17.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    animation: earthRotate 60s linear infinite;
    box-shadow: 
        inset 60px 0 120px rgba(0,0,0,0.4),
        0 0 100px rgba(59, 130, 246, 0.3),
        0 0 200px rgba(59, 130, 246, 0.1);
    overflow: hidden;
}

.globe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 25% 25%, rgba(255,255,255,0.3), transparent 60%);
    z-index: 10;
}

.globe::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(90deg, transparent 50%, rgba(0,0,0,0.4) 100%);
    z-index: 9;
}

@keyframes earthRotate {
    from { 
        transform: rotate(0deg);
    }
    to { 
        transform: rotate(360deg);
    }
}

/* Satellites with Solar Panels */
.satellite {
    position: absolute;
    width: 16px;
    height: 16px;
    background: linear-gradient(45deg, #c0c0c0, #e5e5e5, #a0a0a0);
    border-radius: 50%;
    box-shadow: 0 0 15px #ffd700;
    z-index: 6;
}

.satellite::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 8px;
    background: linear-gradient(45deg, #1e3a8a, #3b82f6, #1e40af);
    top: 4px;
    left: -28px;
    border-radius: 2px;
    box-shadow: 
        inset 0 1px 0 rgba(255,255,255,0.3),
        0 0 5px rgba(59, 130, 246, 0.5);
    background-image: 
        repeating-linear-gradient(90deg, transparent, transparent 3px, rgba(255,255,255,0.2) 3px, rgba(255,255,255,0.2) 4px),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.1) 2px, rgba(255,255,255,0.1) 3px);
}

.satellite::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 8px;
    background: linear-gradient(45deg, #1e3a8a, #3b82f6, #1e40af);
    top: 4px;
    right: -28px;
    border-radius: 2px;
    box-shadow: 
        inset 0 1px 0 rgba(255,255,255,0.3),
        0 0 5px rgba(59, 130, 246, 0.5);
    background-image: 
        repeating-linear-gradient(90deg, transparent, transparent 3px, rgba(255,255,255,0.2) 3px, rgba(255,255,255,0.2) 4px),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.1) 2px, rgba(255,255,255,0.1) 3px);
}

.satellite-1 {
    top: 100px;
    right: 200px;
    animation: orbit1 15s linear infinite;
}

.satellite-2 {
    bottom: 160px;
    left: 120px;
    animation: orbit2 18s linear infinite;
}

.satellite-3 {
    top: 300px;
    left: 60px;
    animation: orbit3 22s linear infinite;
}

.satellite-4 {
    top: 40px;
    left: 300px;
    animation: orbit4 25s linear infinite;
}

.satellite-5 {
    bottom: 80px;
    right: 100px;
    animation: orbit5 20s linear infinite;
}

.satellite-6 {
    top: 200px;
    right: 40px;
    animation: orbit6 16s linear infinite;
}

.satellite-7 {
    bottom: 240px;
    left: 300px;
    animation: orbit7 28s linear infinite;
}

.satellite-8 {
    top: 400px;
    right: 160px;
    animation: orbit8 19s linear infinite;
}

@keyframes orbit1 {
    from { transform: rotate(0deg) translateX(360px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(360px) rotate(-360deg); }
}

@keyframes orbit2 {
    from { transform: rotate(0deg) translateX(400px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(400px) rotate(-360deg); }
}

@keyframes orbit3 {
    from { transform: rotate(0deg) translateX(440px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(440px) rotate(-360deg); }
}

@keyframes orbit4 {
    from { transform: rotate(45deg) translateX(380px) rotate(-45deg); }
    to { transform: rotate(405deg) translateX(380px) rotate(-405deg); }
}

@keyframes orbit5 {
    from { transform: rotate(90deg) translateX(420px) rotate(-90deg); }
    to { transform: rotate(450deg) translateX(420px) rotate(-450deg); }
}

@keyframes orbit6 {
    from { transform: rotate(135deg) translateX(340px) rotate(-135deg); }
    to { transform: rotate(495deg) translateX(340px) rotate(-495deg); }
}

@keyframes orbit7 {
    from { transform: rotate(180deg) translateX(480px) rotate(-180deg); }
    to { transform: rotate(540deg) translateX(480px) rotate(-540deg); }
}

@keyframes orbit8 {
    from { transform: rotate(270deg) translateX(370px) rotate(-270deg); }
    to { transform: rotate(630deg) translateX(370px) rotate(-630deg); }
}

/* Connection Lines */
.connection-line {
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg, transparent, #38b2ac, transparent);
    transform-origin: left center;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.line-1 {
    top: 240px;
    left: 300px;
    width: 300px;
    transform: rotate(25deg);
    animation-delay: 0s;
}

.line-2 {
    bottom: 280px;
    right: 240px;
    width: 240px;
    transform: rotate(-45deg);
    animation-delay: 1s;
}

.line-3 {
    top: 400px;
    left: 160px;
    width: 360px;
    transform: rotate(65deg);
    animation-delay: 2s;
}

.line-4 {
    top: 160px;
    right: 200px;
    width: 280px;
    transform: rotate(-25deg);
    animation-delay: 0.5s;
}

.line-5 {
    bottom: 200px;
    left: 200px;
    width: 320px;
    transform: rotate(15deg);
    animation-delay: 1.5s;
}

.line-6 {
    top: 320px;
    right: 120px;
    width: 260px;
    transform: rotate(55deg);
    animation-delay: 2.5s;
}

.line-7 {
    top: 120px;
    left: 240px;
    width: 220px;
    transform: rotate(-65deg);
    animation-delay: 3s;
}

.line-8 {
    bottom: 120px;
    right: 280px;
    width: 340px;
    transform: rotate(35deg);
    animation-delay: 0.8s;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: rgba(26, 35, 50, 0.5);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #38b2ac;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: rgba(45, 55, 72, 0.6);
    border: 1px solid rgba(56, 178, 172, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #38b2ac;
    box-shadow: 0 10px 30px rgba(56, 178, 172, 0.2);
}

.service-card h3 {
    color: #4fd1c7;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.service-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #38b2ac;
}

/* Brands Section */
.brands {
    padding: 4rem 0;
    background: rgba(13, 20, 33, 0.8);
}

.brands-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.brands h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #38b2ac;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.brand-card {
    background: linear-gradient(135deg, rgba(56, 178, 172, 0.1), rgba(77, 209, 199, 0.1));
    border: 1px solid rgba(56, 178, 172, 0.3);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.brand-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(56, 178, 172, 0.3);
}

.brand-card h3 {
    color: #4fd1c7;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.brand-link {
    display: inline-block;
    margin-top: 1rem;
    color: #38b2ac;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.brand-link:hover {
    color: #4fd1c7;
}

/* Footer */
.footer {
    background: #0d1421;
    padding: 3rem 0 1rem;
    text-align: center;
    border-top: 1px solid rgba(56, 178, 172, 0.2);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer h3 {
    color: #38b2ac;
    margin-bottom: 1rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.copyright {
    padding-top: 2rem;
    border-top: 1px solid rgba(56, 178, 172, 0.1);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .globe-container {
        width: 400px;
        height: 400px;
    }

    .globe {
        width: 300px;
        height: 300px;
    }

    .satellite {
        width: 12px;
        height: 12px;
    }

    .connection-line {
        height: 2px;
    }

    .nav-menu {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}
...

/* =================================
   BLOCK EDITOR & SERVICES UPDATE
   ================================= */

/* Block Editor Styles */
.wp-block {
    max-width: 1200px;
}

.editor-styles-wrapper {
    background: linear-gradient(135deg, #0d1421 0%, #1a2332 100%);
    color: #e2e8f0;
}

.wp-block-group {
    margin-bottom: 2rem;
}

.wp-block-columns {
    margin-bottom: 2rem;
}

.wp-block-button__link {
    background: linear-gradient(135deg, #38b2ac, #4fd1c7);
    color: #1a202c;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
}

.wp-block-button__link:hover {
    transform: translateY(-2px);
}

/* Enhanced Service Cards - Clickable */
.service-card {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.service-card:hover {
    text-decoration: none;
    color: inherit;
}

.service-card .service-description {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.service-card .service-features {
    list-style: none;
    padding: 0;
}

.service-card .service-features li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.service-card .service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #38b2ac;
}

.service-card .learn-more {
    margin-top: 1rem;
    color: #4fd1c7;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-card .learn-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.service-card:hover .learn-more::after {
    transform: translateX(5px);
}

/* Pricing Tables */
.pricing-table {
    background: rgba(45, 55, 72, 0.8);
    border: 1px solid rgba(56, 178, 172, 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.pricing-table h3 {
    color: #4fd1c7;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.pricing-table .price {
    font-size: 3rem;
    font-weight: bold;
    color: #38b2ac;
    margin-bottom: 1rem;
}

.pricing-table .price-period {
    font-size: 1rem;
    opacity: 0.8;
}

.pricing-table .features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-table .features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(56, 178, 172, 0.1);
}

.pricing-table .subscribe-btn {
    background: linear-gradient(135deg, #38b2ac, #4fd1c7);
    color: #1a202c;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.3s ease;
    margin-top: 1rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.pricing-table .subscribe-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
    color: #1a202c;
}

/* Page Content Styles */
.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 2rem 2rem;
}

.page-title {
    font-size: 3rem;
    color: #38b2ac;
    margin-bottom: 2rem;
    text-align: center;
}

/* Service Page Layout */
.service-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .service-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Header spacing fix */
.hero {
    margin-top: 80px;
}
```

---