@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=Outfit:wght@400;700&display=swap');
:root {
      --bg-dark: #0F172A;
      --bg-dark-accent: #1E293B;
      --accent-blue: #3B82F6;
      --accent-emerald: #10B981;
      --text-primary: #F8FAFC;
      --text-muted: #94A3B8;
      --glass-bg: rgba(30, 41, 59, 0.4);
      --glass-border: rgba(255, 255, 255, 0.1);
      --glass-blur: 16px;
      --shadow-premium: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      scroll-behavior: smooth;
}
body {
      background-color: var(--bg-dark);
      color: var(--text-primary);
      font-family: 'Inter', sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
}
h1, h2, h3, .brand-font {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
}
.bg-text-container {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      z-index: -1;
      overflow: hidden;
      pointer-events: none;
      display: flex;
      flex-direction: column;
      justify-content: space-around;
      opacity: 0.03;
}
.moving-text {
      font-size: 15rem;
      font-weight: 900;
      white-space: nowrap;
      color: var(--accent-emerald);
      animation: moveText 60s linear infinite;
}
.moving-text.reverse {
      animation: moveTextReverse 80s linear infinite;
      color: var(--accent-blue);
}
@keyframes moveText {
      from { transform: translateX(100%); }
      to { transform: translateX(-100%); }
}
@keyframes moveTextReverse {
      from { transform: translateX(-100%); }
      to { transform: translateX(100%); }
}
header {
      width: 100%;
      padding: 1.5rem 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(15, 23, 42, 0.8);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--glass-border);
}
.nav-links {
      display: flex;
      gap: 2rem;
}
.nav-links a {
      color: var(--text-muted);
      text-decoration: none;
      font-weight: 500;
      transition: 0.3s;
}
.nav-links a:hover {
      color: var(--accent-blue);
}
.container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
}
.glass-card {
      background: var(--glass-bg);
      backdrop-filter: blur(var(--glass-blur));
      -webkit-backdrop-filter: blur(var(--glass-blur));
      border: 1px solid var(--glass-border);
      border-radius: 24px;
      padding: 2.5rem;
      box-shadow: var(--shadow-premium);
      transition: transform 0.3s ease, border-color 0.3s ease;
}
.glass-card:hover {
      transform: translateY(-5px);
      border-color: rgba(59, 130, 246, 0.5);
}
.btn {
      padding: 0.8rem 2rem;
      border-radius: 12px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s;
      text-decoration: none;
      display: inline-block;
      border: none;
}
.btn-primary {
      background: linear-gradient(135deg, var(--accent-blue), #1D4ED8);
      color: white;
}
.btn-primary:hover {
      box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
      transform: scale(1.05);
}
.btn-outline {
      background: transparent;
      border: 1px solid var(--accent-blue);
      color: var(--accent-blue);
}
.btn-outline:hover {
      background: rgba(59, 130, 246, 0.1);
}
.hero {
      padding: 10rem 0 5rem;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
}
.hero-tag {
      background: rgba(59, 130, 246, 0.1);
      color: var(--accent-blue);
      padding: 0.5rem 1.2rem;
      border-radius: 50px;
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 2rem;
      border: 1px solid rgba(59, 130, 246, 0.2);
}
.hero h1 {
      font-size: 4rem;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      background: linear-gradient(to right, #ffffff, #94A3B8);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
}
.hero p {
      font-size: 1.25rem;
      color: var(--text-muted);
      max-width: 700px;
      margin-bottom: 3rem;
}
.section-title {
      text-align: center;
      margin-bottom: 4rem;
}
.section-title h2 {
      font-size: 2.5rem;
}
.features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-bottom: 8rem;
}
.feature-icon {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      display: inline-block;
}
.pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-bottom: 8rem;
}
.pricing-card.featured {
      border: 2px solid var(--accent-blue);
      position: relative;
      transform: scale(1.05);
}
.featured-tag {
      position: absolute;
      top: -15px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--accent-blue);
      color: white;
      padding: 0.2rem 1rem;
      border-radius: 20px;
      
      font-size: 0.8rem;
}
footer {
      padding: 5rem 0;
      border-top: 1px solid var(--glass-border);
      margin-top: 5rem;
}
.footer-content {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 3rem;
}
@media (max-width: 768px) {
      .hero h1 {
                font-size: 2.5rem;
      }
      .nav-links {
                display: none;
      }
}
