📊 Q4FY26 Earnings Snapshot (April 24, 2026)

✅ Good / Decent (11 Companies)

  • NBFCs strong: L&T Finance, Shriram Finance, M&M Financial
    → Loan growth + improving asset quality

  • Banking: DCB Bank stable performance

  • Metals: Hindustan Zinc → price + volume recovery

  • Infra/Industrial: Jayaswal Neco → deleveraging story intact

  • Chemicals: Raghav Productivity, Atul → solid numbers

  • Renewables: Adani Green → capacity + PLF growth

  • Others:

    • Tanla Platforms → decent

    • Lodha (Macrotech) → strong housing demand (MMR)


❌ Weak / Poor (3 Companies)

  • Vinyl Chemicals → margin pressure

  • Zensar Tech → weak IT demand (negative growth)

  • Wendt India → needs monitoring


⚖️ Mixed / Neutral (8 Companies)

  • Refining: CPCL, MRPL → better margins but crude risk

  • Petchem: Supreme Petro → margin up, revenue pressure

  • Chemicals/Paper: Bhansali Engg, TN Newsprint → weak revenue, better margins

  • Reliance Industries → margin compression (avg/weak)

  • IndusInd Bank → profit recovery but trust rebuild needed

  • Can Fin Homes → good, but weaker vs peers


🧠 Key Takeaways

  • 💰 Financials = Outperformers

  • Renewables = Growth intact

  • 💻 IT = Weak demand trend

  • 🧪 Chemicals = Margin volatility

  • 🛢️ Refining = Margin-driven, volatile outlook


⚠️ Disclaimer

Based on preliminary Q4FY26 data. Refer detailed financials before investment decisions.


Generate a full HTML page using ONLY inline CSS, and define all required theme variables inside the HTML itself so it works independently anywhere.

IMPORTANT:

You MUST define the following CSS variables inside a tag in the using :root: --background: #060b08; --foreground: #e7f5ef; --paper: rgba(10, 18, 14, 0.78); --paper-2: rgba(255, 255, 255, 0.045); --paper-3: rgba(255, 255, 255, 0.075); --border: rgba(255, 255, 255, 0.11); --muted: rgba(231, 245, 239, 0.72); --accent: #25d366; --accent-2: #00ff85; --glow: rgba(37, 211, 102, 0.28);

STRICT RULES:

Use only inline style="" for all layout and UI styling Only the :root variables should be inside Do NOT use Tailwind, classes, or external CSS frameworks Do NOT import fonts, scripts, or libraries Do NOT use random hardcoded colors — always use var(--...) Output ONLY HTML code

LAYOUT RULES:

ALL elements must be full width (width: 100%) by default ❌ Do NOT use max-width on any elements such as paragraphs, containers, or content sections. All elements should span the full available width without any width restrictions. Use CSS Grid for responsive layouts: display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); Use spacing via padding, margin, gap only Keep structure clean and minimal (avoid unnecessary wrappers)

DESIGN RULES:

Page: background: var(--background) color: var(--foreground) Cards: background: var(--paper) border: 1px solid var(--border) border-radius: 12px Soft sections: background: var(--paper-2) Text: Primary → var(--foreground) Secondary → var(--muted) Accent: Use var(--accent) or gradient with --accent-2

STRUCTURE RULES:

Include full HTML structure:

❌ Do NOT create header or footer sections ❌ Do NOT add a main page title (H1) ✅ Start with a secondary title (H2 or lower) inside the body Use semantic tags (section, article, etc.) where useful

GOAL: Generate a clean, responsive, full-width HTML layout using inline CSS and self-defined theme variables, with no dependency on external styles, and ready to paste directly into a website editor.