  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        body {
            background-color: #f8fafc;
            color: #1e293b;
            line-height: 1.5;
        }

        /* modern, clean header – zerodha inspired */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 5%;
            background-color: #ffffff;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
            position: sticky;
            top: 0;
            z-index: 10;
            border-bottom: 1px solid #eef2f6;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-icon {
            background: #0d9488;
            width: 32px;
            height: 32px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 1.2rem;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 600;
            letter-spacing: -0.5px;
            color: #0f172a;
        }

        .logo-text span {
            color: #0d9488;
            font-weight: 500;
        }

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

        .nav-links a {
            text-decoration: none;
            color: #334155;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: #0d9488;
        }

        .account-btn {
            background-color: #0d9488;
            color: white !important;
            padding: 0.6rem 1.4rem;
            border-radius: 40px;
            font-weight: 500;
            box-shadow: 0 8px 14px -8px rgba(13, 148, 136, 0.4);
        }

        .account-btn:hover {
            background-color: #0f766e;
            color: white;
        }

        /* main container */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 2rem 5%;
        }

        /* hero section with inserted image */
        .hero {
            display: flex;
            align-items: center;
            gap: 4rem;
            margin: 3rem 0 5rem 0;
            flex-wrap: wrap;
        }

        .hero-left {
            flex: 1 1 300px;
        }

        .hero-left h1 {
            font-size: 3.1rem;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -1px;
            color: #0f172a;
            margin-bottom: 1.2rem;
        }

        .hero-left .highlight {
            color: #0d9488;
            border-bottom: 3px solid #ccf0e9;
        }

        .hero-left p {
            font-size: 1.2rem;
            color: #475569;
            max-width: 500px;
            margin-bottom: 2.2rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1.2rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            background-color: #0d9488;
            border: none;
            color: white;
            padding: 0.9rem 2.4rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, box-shadow 0.2s;
            box-shadow: 0 10px 15px -8px #0d9488;
            border: 1px solid #0d9488;
        }

        .btn-primary:hover {
            background-color: #0f766e;
        }

        .btn-outline {
            background: transparent;
            border: 1px solid #cbd5e1;
            color: #334155;
            padding: 0.9rem 2.4rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, border 0.2s;
        }

        .btn-outline:hover {
            background: #f1f5f9;
            border-color: #94a3b8;
        }

        .hero-right {
            flex: 1 1 300px;
            display: flex;
            justify-content: center;
        }

        .hero-right img {
            max-width: 100%;
            width: 500px;
            border-radius: 28px;
            box-shadow: 0 30px 40px -20px rgba(13, 148, 136, 0.3);
            border: 1px solid #e2e8f0;
            transition: transform 0.3s ease;
        }

        .hero-right img:hover {
            transform: scale(1.01);
        }

        /* featured logos (trusted by) */
        .trusted-section {
            text-align: center;
            margin: 4rem 0 3rem;
        }

        .trusted-section p {
            color: #64748b;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.8rem;
            margin-bottom: 1.8rem;
        }

        .logo-strip {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2.5rem 3rem;
            align-items: center;
            opacity: 0.7;
        }

        .logo-strip img {
            height: 32px;
            width: auto;
            filter: grayscale(1) brightness(1.2);
            transition: filter 0.2s;
        }

        .logo-strip img:hover {
            filter: grayscale(0);
        }

        /* dashboard preview / product image section */
        .dashboard-preview {
            background: #ffffff;
            border-radius: 48px;
            padding: 2.5rem 2rem;
            margin: 5rem 0;
            box-shadow: 0 30px 50px -30px #b9c9d4;
            border: 1px solid #e9edf2;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.2rem;
            font-weight: 600;
            color: #0f172a;
            letter-spacing: -0.5px;
        }

        .section-title p {
            color: #475569;
            max-width: 600px;
            margin: 0.6rem auto 0;
        }

        .dashboard-img-container {
            display: flex;
            justify-content: center;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 25px 40px -20px #1e293b;
            border: 1px solid #dee4eb;
        }

        .dashboard-img-container img {
            max-width: 100%;
            height: auto;
            display: block;
            transition: 0.25s ease;
        }

        /* features grid – cards with icons */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
        }

        .feature-card {
            background: white;
            padding: 1.8rem 1.5rem;
            border-radius: 28px;
            border: 1px solid #ecf1f7;
            transition: all 0.2s;
            box-shadow: 0 8px 15px -12px rgba(0,0,0,0.1);
        }

        .feature-card:hover {
            border-color: #b9e0db;
            box-shadow: 0 25px 30px -18px #0d948880;
            transform: translateY(-5px);
        }

        .feature-icon {
            background: #e6f7f5;
            width: 56px;
            height: 56px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: #0d9488;
            font-size: 1.8rem;
        }

        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 0.6rem;
            color: #0f172a;
        }

        .feature-card p {
            color: #4b5a6e;
            font-size: 0.95rem;
        }

        /* markets & insights section – extra image placement */
        .markets {
            display: flex;
            gap: 2.5rem;
            background: #0b1b29;
            border-radius: 48px;
            padding: 2.8rem 3rem;
            margin: 5rem 0;
            color: white;
            flex-wrap: wrap;
            align-items: center;
        }

        .markets-left {
            flex: 1 1 250px;
        }

        .markets-left h3 {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: white;
        }

        .markets-left p {
            color: #b0c7da;
            margin-bottom: 1.8rem;
            max-width: 400px;
        }

        .pill {
            background: #1f3b4f;
            color: #b7e0dc;
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            display: inline-block;
            margin-bottom: 1rem;
        }

        .markets-right {
            flex: 1 1 250px;
            display: flex;
            justify-content: center;
        }

        .markets-right img {
            max-width: 100%;
            width: 360px;
            border-radius: 30px;
            border: 2px solid #358573;
            box-shadow: 0 20px 20px -8px #00000055;
        }

        .stats-mini {
            display: flex;
            gap: 2rem;
            margin-top: 1.5rem;
        }

        .stat-item {
            text-align: left;
        }

        .stat-number {
            font-size: 1.5rem;
            font-weight: 700;
            color: #9ef0e4;
        }

        /* pricing card / signpost */
        .pricing-cta {
            background: #ffffff;
            border-radius: 40px;
            padding: 3rem 2.5rem;
            text-align: center;
            border: 1px solid #dce3ec;
            margin: 4rem 0 2rem;
            box-shadow: 0 20px 30px -20px #99aec2;
        }

        .pricing-cta h2 {
            font-size: 2.2rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .pricing-cta .price {
            color: #0d9488;
            font-size: 2.8rem;
            font-weight: 700;
            display: inline-block;
            margin: 0.5rem 0;
        }

        .pricing-cta .price span {
            font-size: 1.2rem;
            color: #64748b;
            font-weight: 400;
        }

        .divider {
            max-width: 100px;
            height: 2px;
            background: #cbd5e1;
            margin: 1.8rem auto;
        }

        /* footer */
        .footer {
            border-top: 1px solid #e2e8f0;
            padding: 3rem 5% 2rem;
            background: #f9fbfd;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr repeat(3, 1fr);
            gap: 2rem;
            max-width: 1280px;
            margin: 0 auto;
        }

        .footer-col p {
            color: #475569;
            margin: 1rem 0 1.5rem;
            font-size: 0.9rem;
        }

        .footer-col h4 {
            margin-bottom: 1.4rem;
            color: #0f172a;
            font-weight: 600;
        }

        .footer-col a {
            display: block;
            color: #475569;
            text-decoration: none;
            margin-bottom: 0.7rem;
            font-size: 0.9rem;
        }

        .footer-col a:hover {
            color: #0d9488;
        }

        .social-icons {
            display: flex;
            gap: 1.2rem;
            margin-top: 1.2rem;
        }

        .social-icons i {
            font-size: 1.3rem;
            color: #5f6c80;
            transition: color 0.2s;
        }

        .social-icons i:hover {
            color: #0d9488;
        }

        .copyright {
            text-align: center;
            padding-top: 3rem;
            color: #68778d;
            font-size: 0.85rem;
            max-width: 1280px;
            margin: 0 auto;
        }

        /* image placeholder handling – we use real unsplash / trading related images (free) */
        .inserted-image {
            background-color: #eaf1f8;
        }

        /* responsiveness */
        @media (max-width: 800px) {
            .navbar {
                flex-direction: column;
                gap: 0.8rem;
            }
            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 1rem;
            }
            .hero-left h1 {
                font-size: 2.4rem;
            }
            .markets {
                padding: 2rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 500px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }