:root {
      --mm-primary: #25e200;
      --mm-primary-soft: rgba(37, 226, 0, 0.1);
      --mm-dark: #0f172a;
      --mm-text-secondary: #64748b;
      --mm-border: #f1f5f9;
      --mm-surface: #f8fafc;
      --mm-white: #ffffff;
      --glass-bg: rgba(255, 255, 255, 0.7);
      --glass-border: rgba(255, 255, 255, 0.2);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      background-color: var(--mm-white);
      color: var(--mm-dark);
      font-family: 'Satoshi-Variable', sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      font-weight: 300;
      /* Light weight by default */
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    .nav-links a {
      font-family: 'Satoshi-Variable', sans-serif;
      font-weight: 400;
    }

    .container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
    }

    /* Modern Floating Header */
    header {
      padding: 0.75rem 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: fixed;
      top: 1.25rem;
      left: 50%;
      transform: translateX(-50%);
      width: 90%;
      max-width: 1200px;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(20px) saturate(180%);
      z-index: 1000;
      border: 1px solid var(--mm-border);
      border-radius: 100px;
      transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
      box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    }

    .logo {
      height: 42px;
      transition: transform 0.3s;
    }

    .logo:hover {
      transform: scale(1.05);
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      align-items: center;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--mm-dark);
      font-weight: 600;
      font-size: 0.95rem;
      transition: all 0.3s;
      position: relative;
    }

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

    .nav-links a:hover {
      color: var(--mm-primary);
    }

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

    .btn-login {
      background: var(--mm-primary);
      color: var(--mm-white) !important;
      padding: 0.75rem 1.75rem;
      border-radius: 100px;
      font-weight: 700 !important;
      box-shadow: 0 10px 20px -5px rgba(37, 226, 0, 0.2);
      transition: all 0.3s;
    }

    .btn-login:hover {
      background: #22cc00;
      transform: translateY(-2px);
      box-shadow: 0 15px 30px -5px rgba(37, 226, 0, 0.3);
    }

    /* Hero Section */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 140px 0 80px;
      position: relative;
      background:
        radial-gradient(circle at 90% 10%, rgba(37, 226, 0, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 10% 90%, rgba(59, 130, 246, 0.08) 0%, transparent 40%),
        radial-gradient(var(--mm-border) 1px, transparent 1px);
      background-size: 100% 100%, 100% 100%, 40px 40px;
    }

    .hero-container {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 1rem;
      align-items: center;
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
    }

    .hero-text h1 {
      font-size: 4.5rem;
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 2rem;
      letter-spacing: -2.5px;
      color: var(--mm-dark);
      max-width: 650px;
    }

    .hero-text p {
      font-size: 1.35rem;
      color: var(--mm-text-secondary);
      margin-bottom: 3rem;
      max-width: 580px;
      font-weight: 500;
    }

    .hero-actions {
      display: flex;
      gap: 1.5rem;
    }

    .btn-hero-primary {
      padding: 1.25rem 2.5rem;
      background: var(--mm-primary);
      color: white;
      text-decoration: none;
      border-radius: 100px;
      font-weight: 700;
      font-size: 1.1rem;
      box-shadow: 0 20px 40px -10px rgba(37, 226, 0, 0.3);
      transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    }

    .btn-hero-primary:hover {
      background: #22cc00;
      transform: translateY(-4px);
      box-shadow: 0 30px 60px -12px rgba(37, 226, 0, 0.4);
    }

    .btn-hero-secondary {
      padding: 1.25rem 2.5rem;
      background: transparent;
      color: var(--mm-dark);
      text-decoration: none;
      border-radius: 100px;
      font-weight: 700;
      font-size: 1.1rem;
      border: 1px solid var(--mm-border);
      transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    }

    .btn-hero-secondary:hover {
      background: var(--mm-surface);
      border-color: var(--mm-dark);
      transform: translateY(-4px);
    }

    .hero-visual {
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 5;
    }

    #hero-globe {
      width: 160%;
      height: 160%;
      transform: scale(1.5);
      transition: transform 0.2s cubic-bezier(0.19, 1, 0.22, 1);
      filter: drop-shadow(0 0 80px rgba(37, 226, 0, 0.1));
      position: relative;
    }

    /* Floating Rate Card */
    .rate-card {
      position: absolute;
      bottom: 20%;
      right: -10%;
      background: white;
      padding: 1.25rem 2rem;
      border-radius: 24px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
      border: 1px solid var(--mm-border);
      display: flex;
      align-items: center;
      gap: 1rem;
      z-index: 10;
      white-space: nowrap;
      animation: float 4s ease-in-out infinite;
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-10px);
      }
    }

    .live-dot {
      width: 8px;
      height: 8px;
      background: var(--mm-primary);
      border-radius: 50%;
      position: relative;
    }

    .live-dot::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--mm-primary);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% {
        transform: scale(1);
        opacity: 0.8;
      }

      100% {
        transform: scale(3);
        opacity: 0;
      }
    }

    /* Stats Section */
    .section-stats {
      padding: 4rem 0;
      margin-top: -60px;
      position: relative;
      z-index: 10;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .stat-card {
      background: white;
      padding: 2.5rem 2rem;
      border-radius: 32px;
      border: 1px solid var(--mm-border);
      text-align: center;
      transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }

    .stat-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.05);
      border-color: var(--mm-primary);
    }

    .stat-number {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--mm-dark);
      display: block;
      letter-spacing: -1.5px;
      line-height: 1.2;
    }

    .stat-label {
      font-size: 0.9rem;
      color: var(--mm-text-secondary);
      font-weight: 500;
    }

    .stat-badge {
      width: 36px;
      height: 36px;
      background: var(--mm-primary-soft);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--mm-primary);
      margin-bottom: 1rem;
    }

    /* About Section */
    .section-about {
      padding: 100px 0;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;
    }

    .about-image {
      position: relative;
    }

    .main-about-img {
      width: 100%;
      border-radius: 40px;
      box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.1);
    }

    .about-content h2 {
      font-size: 3rem;
      font-weight: 800;
      margin-bottom: 2rem;
      letter-spacing: -1px;
    }

    .about-content p {
      font-size: 1.1rem;
      color: var(--mm-text-secondary);
      margin-bottom: 2.5rem;
    }

    .founders-grid {
      display: flex;
      gap: 3rem;
    }

    .founder-item {
      display: flex;
      align-items: center;
      gap: 1.25rem;
    }

    .founder-img {
      width: 64px;
      height: 64px;
      border-radius: 20px;
      object-fit: cover;
    }

    .founder-info h4 {
      font-size: 1.1rem;
      font-weight: 700;
      margin: 0;
    }

    .founder-info p {
      font-size: 0.85rem;
      margin: 0;
      color: var(--mm-text-secondary);
      font-weight: 600;
    }

    /* Features Section */
    .section-features {
      padding: 100px 0;
      background: var(--mm-surface);
    }

    .section-header {
      text-align: center;
      margin-bottom: 5rem;
    }

    .section-header h2 {
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 1.5rem;
    }

    .section-header p {
      color: var(--mm-text-secondary);
      max-width: 600px;
      margin: 0 auto;
      font-size: 1.1rem;
    }

    /* Tab Switcher */
    .tabs-nav {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 4rem;
    }

    .tab-trigger {
      padding: 0.85rem 2.5rem;
      border-radius: 100px;
      border: 1px solid var(--mm-border);
      background: white;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s;
      font-size: 1rem;
    }

    .tab-trigger.active {
      background: var(--mm-dark);
      color: white;
      border-color: var(--mm-dark);
      box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.2);
    }

    .tab-panel {
      display: none;
      animation: fadeInUp 0.5s ease-out forwards;
    }

    .tab-panel.active {
      display: block;
    }

    .panel-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .panel-text ul {
      list-style: none;
      margin-top: 2rem;
    }

    .panel-text li {
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      font-weight: 600;
      color: var(--mm-text-secondary);
    }

    .panel-text li i {
      color: var(--mm-primary);
    }

    .panel-img img {
      width: 100%;
      border-radius: 100px;
      box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.1);
    }

    /* Features Grid (2x3) */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3rem;
      margin-top: 6rem;
    }

    .feature-card {
      padding: 3rem;
      background: white;
      border-radius: 40px;
      border: 1px solid var(--mm-border);
      transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
      position: relative;
      overflow: hidden;
    }

    .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--mm-primary-soft) 0%, transparent 100%);
      opacity: 0;
      transition: opacity 0.4s;
    }

    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.08);
      border-color: var(--mm-primary);
    }

    .feature-card:hover::before {
      opacity: 1;
    }

    .feature-icon-box {
      width: 60px;
      height: 60px;
      background: var(--mm-primary-soft);
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 2rem;
      color: var(--mm-primary);
    }

    .feature-card h3 {
      font-size: 1.5rem;
      font-weight: 500;
      margin-bottom: 1.5rem;
      position: relative;
    }

    .feature-card p {
      color: var(--mm-text-secondary);
      font-size: 0.95rem;
      line-height: 1.6;
    }

    /* Contact Section */
    .section-contact {
      padding: 100px 0;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 4rem;
    }

    .contact-info {
      padding: 4rem;
      background: var(--mm-dark);
      border-radius: 40px;
      color: white;
    }

    .contact-info h3 {
      font-size: 2.5rem;
      margin-bottom: 3rem;
    }

    .info-row {
      display: flex;
      gap: 1.5rem;
      margin-bottom: 2.5rem;
    }

    .info-icon {
      width: 48px;
      height: 48px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--mm-primary);
    }

    .info-text h4 {
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
    }

    .info-text p {
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.95rem;
    }

    /* Footer */
    footer {
      padding: 5rem 0 2rem;
      background: var(--mm-surface);
      border-top: 1px solid var(--mm-border);
    }

    .footer-main {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.2fr;
      gap: 4rem;
      margin-bottom: 4rem;
    }

    .footer-logo {
      height: 35px;
      margin-bottom: 2rem;
    }

    .footer-about p {
      color: var(--mm-text-secondary);
      font-size: 0.95rem;
      margin-bottom: 2rem;
      max-width: 320px;
    }

    .footer-links h4 {
      font-weight: 800;
      margin-bottom: 2rem;
      font-size: 1.1rem;
    }

    .footer-links ul {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 1rem;
    }

    .footer-links a {
      text-decoration: none;
      color: var(--mm-text-secondary);
      font-weight: 600;
      transition: color 0.3s;
    }

    .footer-links a:hover {
      color: var(--mm-primary);
    }

    .footer-bottom {
      padding-top: 2rem;
      border-top: 1px solid var(--mm-border);
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: var(--mm-text-secondary);
      font-size: 0.85rem;
      font-weight: 600;
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Language Switcher Button Style */
    .lang-btn {
      padding: 0.5rem 0.75rem;
      background: white;
      border: 1px solid var(--mm-border);
      border-radius: 8px;
      font-size: 0.8rem;
      font-weight: 800;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .contact-form-card {
      background: white;
      padding: 3rem;
      border-radius: 40px;
      border: 1px solid var(--mm-border);
      box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.05);
    }

    .form-group {
      margin-bottom: 2rem;
      text-align: left;
    }

    .form-group label {
      display: block;
      font-weight: 700;
      margin-bottom: 0.75rem;
      font-size: 0.9rem;
      color: var(--mm-dark);
    }

    .form-control {
      width: 100%;
      padding: 1.25rem 1.75rem;
      border-radius: 100px;
      border: 1px solid var(--mm-border);
      background: var(--mm-surface);
      font-family: inherit;
      font-size: 1rem;
      transition: all 0.3s;
    }

    .form-control:focus {
      outline: none;
      border-color: var(--mm-primary);
      background: white;
      box-shadow: 0 0 0 4px var(--mm-primary-soft);
    }

    .btn-submit {
      width: 100%;
      padding: 1.25rem;
      border: none;
      border-radius: 100px;
      background: var(--mm-dark);
      color: white;
      font-weight: 800;
      font-size: 1.1rem;
      cursor: pointer;
      transition: all 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
    }

    .btn-submit:hover {
      background: var(--mm-primary);
      transform: translateY(-2px);
      box-shadow: 0 20px 40px -10px rgba(37, 226, 0, 0.3);
    }

    /* Responsive */
    @media (max-width: 1200px) {

      .hero-container,
      .panel-content,
      .section-about,
      .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .hero-text h1 {
        font-size: 3.5rem;
      }

      .hero-actions,
      .founders-grid,
      .tabs-nav {
        justify-content: center;
      }

      .section-stats,
      .features-grid {
        grid-template-columns: 1fr;
      }

      .panel-content {
        gap: 2rem;
      }

      .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
    }