/* =============================================================================
   THE SITE THEME — change one line here to re-theme the whole website.
   ─────────────────────────────────────────────────────────────────────────────

   HOW TO SWITCH
   Uncomment ONE @import pair below, upload this single file, done. Every page
   on the site follows it — homepage, all 40+ landing pages, header, dropdown
   menus and footer. Nothing else needs editing.

       aurora     refined dark, indigo        (Linear / Vercel)
       midnight   deep navy, cyan             (Datadog / Auth0)
       carbon     neutral mono, signal green  (GitHub / Railway)
       studio     warm charcoal, amber        (Arc / Superhuman)
       sage       muted green-grey            (Craft / Bear)
       mono       greyscale, one red          (Swiss / brutalist)
       neon       near-black, violet + pink   (bold, high contrast)
       daylight   light, off-white + blue     (Stripe / Notion)
       canvas     light warm paper, terracotta(Ghost / Medium)

   WHY IT IS TWO IMPORTS
   The second one is not optional. mega-nav.css hard-codes its colours and
   reads no design tokens, so a theme on its own re-skins the page but leaves
   the header and dropdowns on the old palette. _theme-nav.css re-points those
   at tokens. It is colour-free, so the same file works with every theme.

   WHY THIS FILE LOADS AT THE END OF <BODY>
   Each page defines its own :root token block inside <head>. A theme linked in
   the head loses to those tokens — same specificity, later wins — and appears
   to do nothing at all. Loading last is what makes it work.

   PREVIEW WITHOUT COMMITTING
   Append ?theme=carbon to any URL to try one, ?theme=off to clear it. That
   overrides whatever is set here, for you only.
   ============================================================================= */

/* ---- ACTIVE THEME — uncomment exactly one pair ---------------------------- */

/* ACTIVE: white pages with the ORIGINAL rainbow gradient as the primary
   accent — gradient CTAs, gradient "Rocket" wordmark, colourful menu chips,
   signature rainbow hairline at the top of every page. Self-contained; no
   _theme-nav import needed. */
@import url("themes/theme-site-seed.css?v=2.2.7.48");
/* previous: @import url("themes/theme-site-epic.css?v=2.2.6.86"); */
/* previous look, kept one line away:
@import url("themes/theme-site-white.css?v=2.2.6.82"); */


/* @import url("themes/theme-aurora.css");   @import url("themes/_theme-nav.css"); */
/* @import url("themes/theme-midnight.css"); @import url("themes/_theme-nav.css"); */
/* @import url("themes/theme-carbon.css");   @import url("themes/_theme-nav.css"); */
/* @import url("themes/theme-studio.css");   @import url("themes/_theme-nav.css"); */
/* @import url("themes/theme-sage.css");     @import url("themes/_theme-nav.css"); */
/* @import url("themes/theme-mono.css");     @import url("themes/_theme-nav.css"); */
/* @import url("themes/theme-neon.css");     @import url("themes/_theme-nav.css"); */
/* @import url("themes/theme-daylight.css"); @import url("themes/_theme-nav.css"); */
/* @import url("themes/theme-canvas.css");   @import url("themes/_theme-nav.css"); */

/* Nothing uncommented = the site's original look. */
