Changed around line 1
+ :root {
+ --primary: #6366f1;
+ --primary-dark: #4f46e5;
+ --secondary: #64748b;
+ --background: #f8fafc;
+ --text: #1e293b;
+ --border: #e2e8f0;
+ --white: #ffffff;
+ --radius: 12px;
+ --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, system-ui, sans-serif;
+ line-height: 1.6;
+ color: var(--text);
+ background: var(--background);
+ }
+
+ .container {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 1.5rem;
+ }
+
+ /* Typography */
+ h1 {
+ font-size: clamp(2.5rem, 5vw, 4rem);
+ line-height: 1.1;
+ margin-bottom: 1.5rem;
+ }
+
+ h2 {
+ font-size: clamp(2rem, 4vw, 3rem);
+ margin-bottom: 3rem;
+ text-align: center;
+ }
+
+ .lead {
+ font-size: clamp(1.25rem, 2vw, 1.5rem);
+ color: var(--secondary);
+ margin-bottom: 2rem;
+ }
+
+ /* Navigation */
+ header {
+ background: var(--white);
+ box-shadow: var(--shadow);
+ position: fixed;
+ width: 100%;
+ z-index: 1000;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 1.5rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: var(--primary);
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ align-items: center;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--text);
+ font-weight: 500;
+ transition: color 0.3s;
+ }
+
+ .nav-links a:hover {
+ color: var(--primary);
+ }
+
+ /* Buttons */
+ .btn-primary, .btn-secondary {
+ display: inline-block;
+ padding: 0.75rem 1.5rem;
+ border-radius: var(--radius);
+ text-decoration: none;
+ font-weight: 500;
+ transition: all 0.3s;
+ }
+
+ .btn-primary {
+ background: var(--primary);
+ color: var(--white);
+ }
+
+ .btn-primary:hover {
+ background: var(--primary-dark);
+ transform: translateY(-2px);
+ }
+
+ .btn-secondary {
+ background: var(--white);
+ color: var(--text);
+ border: 1px solid var(--border);
+ }
+
+ .btn-secondary:hover {
+ border-color: var(--primary);
+ color: var(--primary);
+ }
+
+ /* Hero Section */
+ .hero {
+ padding: 8rem 0 4rem;
+ text-align: center;
+ background: linear-gradient(to bottom, var(--background), var(--white));
+ }
+
+ .cta-group {
+ display: flex;
+ gap: 1rem;
+ justify-content: center;
+ margin-bottom: 4rem;
+ }
+
+ /* Status Demo Animation */
+ .status-demo {
+ max-width: 600px;
+ margin: 0 auto;
+ }
+
+ .status-card {
+ background: var(--white);
+ padding: 2rem;
+ border-radius: var(--radius);
+ box-shadow: var(--shadow);
+ display: flex;
+ gap: 1.5rem;
+ }
+
+ .pulse-indicator {
+ width: 12px;
+ height: 12px;
+ background: #22c55e;
+ border-radius: 50%;
+ animation: pulse 2s infinite;
+ }
+
+ .status-content {
+ flex: 1;
+ }
+
+ .status-bar {
+ height: 8px;
+ background: var(--border);
+ border-radius: 4px;
+ margin-bottom: 0.75rem;
+ animation: shimmer 2s infinite;
+ }
+
+ /* Features Section */
+ .features {
+ padding: 6rem 0;
+ background: var(--white);
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 3rem;
+ }
+
+ .feature-card {
+ padding: 2rem;
+ background: var(--background);
+ border-radius: var(--radius);
+ transition: transform 0.3s;
+ }
+
+ .feature-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .icon {
+ font-size: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ /* Pricing Section */
+ .pricing {
+ padding: 6rem 0;
+ background: var(--background);
+ }
+
+ .pricing-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
+ gap: 2rem;
+ margin-top: 3rem;
+ }
+
+ .price-card {
+ background: var(--white);
+ padding: 2rem;
+ border-radius: var(--radius);
+ text-align: center;
+ transition: transform 0.3s;
+ }
+
+ .price-card.featured {
+ transform: scale(1.05);
+ border: 2px solid var(--primary);
+ }
+
+ .price-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .price {
+ font-size: 2.5rem;
+ font-weight: bold;
+ margin: 1.5rem 0;
+ }
+
+ .price span {
+ font-size: 1rem;
+ color: var(--secondary);
+ }
+
+ .price-card ul {
+ list-style: none;
+ margin: 2rem 0;
+ }
+
+ .price-card li {
+ margin-bottom: 0.75rem;
+ }
+
+ /* Footer */
+ footer {
+ background: var(--white);
+ padding: 4rem 0;
+ margin-top: 4rem;
+ }
+
+ .footer-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 3rem;
+ }
+
+ .footer-col h4 {
+ margin-bottom: 1.5rem;
+ }
+
+ .footer-col a {
+ display: block;
+ color: var(--secondary);
+ text-decoration: none;
+ margin-bottom: 0.75rem;
+ transition: color 0.3s;
+ }
+
+ .footer-col a:hover {
+ color: var(--primary);
+ }
+
+ /* Animations */
+ @keyframes pulse {
+ 0% { transform: scale(1); opacity: 1; }
+ 50% { transform: scale(1.5); opacity: 0.5; }
+ 100% { transform: scale(1); opacity: 1; }
+ }
+
+ @keyframes shimmer {
+ 0% { opacity: 1; }
+ 50% { opacity: 0.5; }
+ 100% { opacity: 1; }
+ }
+
+ /* Mobile Responsiveness */
+ .mobile-menu {
+ display: none;
+ background: none;
+ border: none;
+ cursor: pointer;
+ padding: 0.5rem;
+ }
+
+ .mobile-menu span {
+ display: block;
+ width: 25px;
+ height: 3px;
+ background: var(--text);
+ margin: 5px 0;
+ transition: 0.3s;
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .mobile-menu {
+ display: block;
+ }
+
+ .nav-links.active {
+ display: flex;
+ flex-direction: column;
+ position: absolute;
+ top: 100%;
+ left: 0;
+ right: 0;
+ background: var(--white);
+ padding: 1rem;
+ box-shadow: var(--shadow);
+ }
+
+ .cta-group {
+ flex-direction: column;
+ }
+
+ .hero {
+ padding-top: 6rem;
+ }
+ }