:root {
      --bg-primary: #0a0a0a;
      --bg-secondary: #111;
      --bg-card: #1a1a1a;
      --border-color: #2a2a2a;
      --text-primary: #fff;
      --text-secondary: #a1a1aa;
      --text-muted: #71717a;
      --accent-green: #0b9fad;
      --accent-green-dark: #006e7e;
      --accent-purple: #8b5cf6;
      --accent-blue: #3b82f6;
      --gradient-primary: linear-gradient(135deg, #0b9fad 0%, #006e7e 100%);
      --gradient-secondary: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
      --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, .5), 0 10px 10px -5px rgba(0, 0, 0, .3);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: var(--bg-primary);
      color: var(--text-primary);
      line-height: 1.6;
      overflow-x: hidden
    }

    /* Header */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(10, 10, 10, .8);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border-color)
    }

    .nav {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
      height: 100px;
      display: flex;
      align-items: center
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 24px;
      font-weight: 800;
      color: var(--text-primary);
      text-decoration: none
    }

    .logo-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      color: var(--bg-primary);
      font-weight: 900
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 2rem;
      margin-left: 4rem
    }

    .nav-links a {
      color: var(--text-secondary);
      text-decoration: none;
      font-weight: 500;
      font-size: 15px;
      transition: .3s;
      position: relative
    }

    .nav-links a:hover {
      color: var(--accent-green)
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gradient-primary);
      transition: width .3s
    }

    .nav-links a:hover::after {
      width: 100%
    }

    /* Mobile toggle button */
    .nav-toggle {
      display: none;
      background: none;
      border: 0;
      color: var(--text-primary);
      font-size: 24px;
      margin-left: auto;
      cursor: pointer
    }

    /* Hero */
    .hero {
      min-height: calc(100vh - 100px);
      /* account for fixed header */
      margin-top: 100px;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 20%, rgb(0 79 90) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, .1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(59, 130, 246, .05) 0%, transparent 50%);
      pointer-events: none;
    }

    .hero-content {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
      position: relative;
      z-index: 2
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      background: rgba(0, 255, 136, .1);
      border: 1px solid rgba(0, 255, 136, .2);
      border-radius: 50px;
      font-size: 14px;
      color: var(--accent-green);
      font-weight: 500;
      margin-bottom: 2rem;
      animation: pulse 2s infinite
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: .8
      }
    }

    .hero h1 {
      font-size: clamp(3rem, 8vw, 7rem);
      font-weight: 900;
      line-height: .9;
      margin-bottom: 1.5rem;
      background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-green) 50%, var(--accent-purple) 100%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent
    }

    .hero-subtitle {
      font-size: clamp(1.25rem, 3vw, 1.5rem);
      color: var(--text-secondary);
      max-width: 600px;
      margin-bottom: 3rem;
      font-weight: 400
    }

    .hero-cta {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap
    }

    .btn {
      padding: 16px 32px;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 600;
      font-size: 16px;
      transition: .3s;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px
    }

    .btn-primary {
      background: var(--gradient-primary);
      color: var(--bg-primary);
      box-shadow: 0 8px 32px rgba(8, 136, 151, .7)
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 48px rgba(8, 136, 151, .9)
    }

    .btn-secondary {
      background: rgba(255, 255, 255, .05);
      color: var(--text-primary);
      border: 1px solid var(--border-color);
      backdrop-filter: blur(10px)
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, .1);
      border-color: var(--accent-green)
    }

    /* Sections */
    .section {
      padding: 120px 0
    }

    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem
    }

    .section-header {
      text-align: center;
      margin-bottom: 80px
    }

    .section-badge {
      display: inline-block;
      padding: 6px 16px;
      background: rgba(139, 92, 246, .1);
      border: 1px solid rgba(139, 92, 246, .2);
      border-radius: 50px;
      font-size: 14px;
      color: var(--accent-purple);
      font-weight: 500;
      margin-bottom: 1rem
    }

    .section-title {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 800;
      margin-bottom: 1rem;
      background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent
    }

    .section-description {
      font-size: 1.25rem;
      color: var(--text-secondary);
      max-width: 800px;
      margin: 0 auto
    }

    /* Cards */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 2rem;
      margin-top: 60px
    }

    .card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 20px;
      padding: 2.5rem;
      position: relative;
      overflow: hidden;
      transition: .3s
    }

    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: var(--gradient-primary);
      transform: scaleX(0);
      transition: transform .3s
    }

    .card:hover {
      transform: translateY(-8px);
      border-color: var(--accent-green);
      box-shadow: var(--shadow-lg)
    }

    .card:hover::before {
      transform: scaleX(1)
    }

    .card-title {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 1.5rem
    }

    .card-icon {
      width: 60px;
      height: 60px;
      background: var(--gradient-primary);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin-bottom: 1.5rem;
      color: var(--bg-primary)
    }

    .card h3 {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--text-primary)
    }

    .card p {
      color: var(--text-secondary);
      line-height: 1.6
    }

    .card ul {
      list-style: none;
      margin-top: 1rem
    }

    .card ul li {
      color: var(--text-secondary);
      margin-bottom: .5rem;
      display: flex;
      align-items: flex-start;
      gap: 12px
    }

    .card ul li::before {
      content: '→';
      color: var(--accent-green);
      font-weight: bold;
      min-width: 16px;
      margin-top: 2px
    }

    /* Products */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
      gap: 3rem;
      margin-top: 80px
    }

    .product-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 24px;
      padding: 3rem;
      position: relative;
      overflow: hidden
    }

    .product-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(0, 255, 136, .05) 0%, rgba(139, 92, 246, .05) 100%);
      opacity: 0;
      transition: opacity .3s
    }

    .product-card:hover::before {
      opacity: 1
    }

    .product-header {
      display: flex;
      align-items: center;
      gap: 1rem
    }

    .product-icon {
      width: 80px;
      height: 80px;
      background: var(--gradient-secondary);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px
    }

    .product-info h3 {
      font-size: 2rem;
      font-weight: 800;
      margin-bottom: .5rem
    }

    .product-info .product-subtitle {
      color: var(--accent-purple);
      font-weight: 600;
      font-size: 1.1rem
    }

    .product-description {
      font-size: 1.1rem;
      color: var(--text-secondary);
      margin-bottom: 2rem
    }

    .features-list {
      list-style: none
    }

    .features-list li {
      margin-bottom: 1rem;
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 12px;
      background: rgba(255, 255, 255, .02);
      border-radius: 12px;
      border-left: 3px solid var(--accent-green)
    }

    .features-list li strong {
      color: var(--accent-green);
      min-width: 120px
    }

    /* Team */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      gap: 3rem;
      margin-top: 80px
    }

    .team-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 24px;
      padding: 3rem;
      text-align: center;
      position: relative;
      overflow: hidden
    }

    .team-card::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(0, 255, 136, .1) 0%, transparent 70%);
      opacity: 0;
      transition: opacity .3s
    }

    .team-card:hover::before {
      opacity: 1
    }

    .team-avatar {
      width: 120px;
      height: 120px;
      background: var(--gradient-primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 2rem;
      font-size: 3rem;
      color: var(--bg-primary);
      font-weight: 900
    }

    .team-card h3 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: .5rem
    }

    .team-role {
      color: var(--accent-green);
      font-weight: 600;
      margin-bottom: 2rem;
      font-size: 1.1rem
    }

    .team-experience {
      text-align: left;
      list-style: none
    }

    .team-experience li {
      margin-bottom: .8rem;
      display: flex;
      align-items: flex-start;
      gap: 12px;
      color: var(--text-secondary);
      font-size: .95rem
    }

    .team-experience li::before {
      content: '•';
      color: var(--accent-green);
      font-weight: bold;
      min-width: 16px
    }

    /* Timeline */
    .timeline {
      max-width: 900px;
      margin: 80px auto 0
    }

    .timeline-item {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 20px;
      padding: 2.5rem;
      margin-bottom: 2rem;
      position: relative;
      overflow: hidden
    }

    .timeline-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 4px;
      background: var(--gradient-primary)
    }

    .timeline-item h3 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: var(--accent-green)
    }

    .timeline-content ul {
      list-style: none
    }

    .timeline-content li {
      margin-bottom: .8rem;
      display: flex;
      align-items: flex-start;
      gap: 12px;
      color: var(--text-secondary)
    }

    .timeline-content li::before {
      content: '▸';
      color: var(--accent-green);
      font-weight: bold;
      min-width: 16px
    }

    /* Contact */
    .contact-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 24px;
      padding: 4rem;
      text-align: center;
      max-width: 700px;
      margin: 80px auto 0;
      position: relative;
      overflow: hidden
    }

    .contact-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(0, 255, 136, .05) 0%, rgba(139, 92, 246, .05) 100%)
    }

    .contact-content {
      position: relative;
      z-index: 2
    }

    .contact-card h3 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: var(--accent-green)
    }

    .contact-details {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-top: 2rem
    }

    .contact-details a,
    .contact-details span {
      color: var(--text-secondary);
      text-decoration: none;
      font-size: 1.1rem;
      transition: color .3s
    }

    .contact-details a:hover {
      color: var(--accent-green)
    }

    /* Responsive */
    @media (max-width:768px) {
      .nav-toggle {
        display: block
      }

      .nav-links {
        display: none;
        position: absolute;
        top: 100px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, .95);
        border-bottom: 1px solid var(--border-color);
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 2rem;
        z-index: 1001
      }

      .nav-links.open {
        display: flex
      }

      .hero-cta {
        flex-direction: column;
        align-items: flex-start
      }

      .products-grid {
        grid-template-columns: 1fr
      }

      .team-grid {
        grid-template-columns: 1fr
      }

      .cards-grid {
        grid-template-columns: 1fr
      }
    }

    /* Animations */
    .fade-in-up {
      opacity: 0;
      transform: translateY(30px);
      transition: all .8s ease
    }

    .fade-in-up.visible {
      opacity: 1;
      transform: translateY(0)
    }

    .product-logo {
      width: 100px;
      height: 100px;
      border-radius: 16px
    }