/*
Theme Name: ISST Google Ads Landing Pages
Author: Infineural Technologies
Description: Lightweight single-purpose WordPress theme built for ISST Google Ads landing pages. No page builder, no render-blocking assets, no site-wide navigation — every template is a self-contained, fast-loading conversion page. Brand palette sourced from isst.co.in.
Version: 1.0.0
*/

/* Site-wide baseline only. Landing page templates (page-*.php) inline their
   own critical CSS in <head> so the single HTTP request that returns the
   page also returns everything needed to render above the fold — no extra
   stylesheet round trip, no flash of unstyled content. This file exists so
   the theme is valid and any non-landing-page (e.g. the default index.php
   fallback) still has a readable baseline. */

:root {
  --purple-900: #370C5C;
  --purple-700: #50197F;
  --purple-500: #8D0FDB;
  --teal: #038693;
  --teal-light: #54C5D0;
  --amber: #FFA300;
  --ink: #0F172A;
  --gray: #64748B;
  --border: #E0E1E3;
  --off-white: #F7F7F7;
  --white: #FFFFFF;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
a { color: var(--purple-700); }
img { max-width: 100%; display: block; }
