/* ═══════════════════════════════════════════════════════════════════
   INDDN — home page skin.

   Re-skins `home.blade.php` in the visual language of `static-html/`
   without changing its structure. Two layers:

   1. TOKEN REMAP — `public/style.css` draws everything from a handful of
      custom properties (--navy, --saffron, --cream, --text-1 …). Pointing
      those at the INDDN tokens re-colours every existing component (cards,
      pipeline, roles, badges) in one move, with no markup churn and no
      risk to the JS-rendered card grid.

   2. COMPONENT SKIN — targeted rules for the pieces the static prototype
      actually redesigns: header, hero wordmark, search bar, chip rows,
      trending grid, quick links, stats, footers.

   Loaded AFTER style.css so it wins. Requires inddn-theme.css.
   ═══════════════════════════════════════════════════════════════════ */

/* ── 1. Token remap ───────────────────────────────────────────────── */
body.inddn-home {
  --white: var(--ind-card);
  --cream: var(--ind-background);
  --cream-2: var(--ind-accent);
  --cream-3: var(--ind-secondary);

  --navy: var(--ind-indigoblue);
  --navy-mid: var(--ind-royal);
  --navy-light: var(--ind-accent);
  --navy-xlight: var(--ind-cream);

  /* style.css uses these hues almost exclusively as TEXT/ICON colour on the
     matching `-lt` tint, so they map to the ink scale, not the raw brand
     hue. That single substitution lifts every badge and card icon from
     ~1.6-2.9:1 to a readable ratio in both modes. */
  --saffron: var(--ind-saffron-ink);
  --saffron-mid: var(--ind-indigoblue);
  --saffron-lt: var(--ind-accent);
  --saffron-xlt: var(--ind-cream);

  --teal: var(--ind-teal-ink);
  --teal-lt: color-mix(in oklab, var(--ind-teal) 16%, var(--ind-card));

  --green: var(--ind-green-ink);
  --green-lt: color-mix(in oklab, var(--ind-indiagreen) 16%, var(--ind-card));

  --amber: var(--ind-gold-ink);
  --amber-lt: color-mix(in oklab, var(--ind-gold) 22%, var(--ind-card));

  --rose: var(--ind-violet-ink);
  --rose-lt: color-mix(in oklab, var(--ind-visited) 16%, var(--ind-card));

  --red-deep: var(--ind-red-ink);
  --red-lt: color-mix(in oklab, var(--ind-destructive) 14%, var(--ind-card));

  --text-1: var(--ind-foreground);
  --text-2: color-mix(in oklab, var(--ind-foreground) 78%, var(--ind-background));
  --text-3: var(--ind-muted-foreground);
  --border: var(--ind-border);
  --border-mid: color-mix(in oklab, var(--ind-border) 70%, var(--ind-foreground) 12%);

  --font-disp: var(--ind-font-display);
  --font-body: var(--ind-font-sans);

  --r-sm: 0.375rem;
  --r-md: var(--ind-radius);
  --r-lg: 0.625rem;
  --r-xl: 0.875rem;

  --shadow-xs: var(--ind-shadow-sm);
  --shadow-sm: var(--ind-shadow-sm);
  --shadow-md: var(--ind-shadow-md);

  background: var(--ind-background);
  color: var(--ind-foreground);
  font-family: var(--ind-font-sans);
}

/* Headings pick up the Devanagari display face */
body.inddn-home h1,
body.inddn-home h2,
body.inddn-home h3,
body.inddn-home h4,
body.inddn-home h5 {
  font-family: var(--ind-font-display);
  font-weight: 500;
}

/* ── 2. Header ────────────────────────────────────────────────────── */
/* Homepage ships its own full gn-bar, so hide the shared app-nav header.
   (Moved here from an inline <style> block in home.blade.php.) */
body.inddn-home .app-nav { display: none !important; }

body.inddn-home .page-hero {
  background: var(--ind-background);
}

/* ── Search-engine header ─────────────────────────────────────────────
   A home page for a search engine shouldn't wear an app navbar. Like
   Google and Bing, this is a bare strip: transparent, no border, no
   shadow, not sticky — just utilities pushed to the right. */
body.inddn-home .gn-bar,
body.inddn-home .gn-bar--bare {
  position: static;
  height: auto;
  min-height: 60px;
  padding: 14px 22px;
  /* Brand sits left, utilities right — fills the empty left corner */
  justify-content: space-between;
  gap: 6px;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* ── Corner brand lockup ─────────────────────────────────────────────── */
body.inddn-home .gn-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px;
  border-radius: 9999px;
  text-decoration: none;
  transition: background 0.15s;
}
body.inddn-home .gn-brand:hover { background: var(--ind-accent); }
body.inddn-home .gn-brand-chakra {
  display: inline-flex;
  width: 26px;
  height: 26px;
  color: var(--ind-saffron);
}
body.inddn-home .gn-brand-chakra svg { width: 100%; height: 100%; }
body.inddn-home .gn-brand-text {
  font-family: var(--ind-font-brand, var(--ind-font-display));
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
}
body.inddn-home .gn-brand-text .gb-i { color: var(--ind-saffron); }
body.inddn-home .gn-brand-text .gb-n { color: var(--ind-indigoblue); }
body.inddn-home .gn-brand-text .gb-d { color: var(--ind-gold, var(--ind-indigoblue)); }

@media (max-width: 640px) {
  body.inddn-home .gn-brand-text { font-size: 1.05rem; }
  body.inddn-home .gn-brand-chakra { width: 22px; height: 22px; }
}
body.dark.inddn-home .gn-bar,
body.dark.inddn-home .gn-bar--bare {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

body.inddn-home .gn-bar-right { gap: 6px; }

/* Plain text destinations, Google's "Gmail / Images" treatment */
body.inddn-home .gn-toplink {
  padding: 6px 10px;
  border-radius: var(--ind-radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ind-muted-foreground);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}
body.inddn-home .gn-toplink:hover {
  color: var(--ind-foreground);
  background: var(--ind-accent);
}

@media (max-width: 640px) {
  body.inddn-home .gn-bar { padding: 10px 12px; }
  body.inddn-home .gn-toplink { display: none; }
}

body.inddn-home .gn-bar-logo-text {
  font-family: var(--ind-font-brand);
  color: var(--ind-indigoblue);
  letter-spacing: -0.01em;
}

/* Tricolour chip standing in for the 🇮🇳 emoji, which Windows renders as
   the bare letters "IN". */
body.inddn-home .ind-flag-chip {
  display: inline-block;
  width: 18px;
  height: 12px;
  vertical-align: -1px;
  border-radius: 2px;
  border: 1px solid var(--ind-border);
  background: linear-gradient(
    to bottom,
    var(--ind-saffron) 0 33.33%,
    var(--ind-tiranga-white) 33.33% 66.66%,
    var(--ind-indiagreen) 66.66% 100%
  );
}

body.inddn-home .gn-apps-btn,
body.inddn-home .gn-settings-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  color: var(--ind-muted-foreground);
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
body.inddn-home .gn-apps-btn:hover,
body.inddn-home .gn-settings-btn:hover {
  background: var(--ind-accent);
  color: var(--ind-indigoblue);
}
body.dark.inddn-home .gn-apps-btn,
body.dark.inddn-home .gn-settings-btn { color: var(--ind-muted-foreground) !important; }
body.dark.inddn-home .gn-apps-btn:hover,
body.dark.inddn-home .gn-settings-btn:hover {
  background: var(--ind-accent) !important;
  color: var(--ind-indigoblue) !important;
}

/* Header settings button — matches the dark-mode toggle sitting next to it */
body.inddn-home .gn-settings-btn { font-size: 0.95rem; }
body.inddn-home .gn-settings-btn:hover {
  background: var(--ind-accent);
  color: var(--ind-indigoblue);
}

/* Dark-mode toggle. The `!important` on colour is deliberate: script.js's
   own `apply()` writes an inline `btn.style.color`, which would otherwise
   win over the token. */
body.inddn-home .dark-mode-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: none;
  border-radius: 9999px;
  color: var(--ind-muted-foreground) !important;
  background: none;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}
body.inddn-home .dark-mode-btn:hover {
  background: var(--ind-accent);
  color: var(--ind-indigoblue) !important;
}

/* Sign in — outlined indigo pill, per the prototype */
body.inddn-home .gn-signin-btn {
  border: 1px solid color-mix(in oklab, var(--ind-indigoblue) 25%, transparent);
  border-radius: 9999px;
  background: transparent;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ind-indigoblue);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
body.inddn-home .gn-signin-btn:hover {
  background: var(--ind-indigoblue);
  border-color: var(--ind-indigoblue);
  color: var(--ind-primary-foreground);
}
body.inddn-home .gn-signin-btn.is-user { gap: 7px; }
body.inddn-home .gn-user-avatar {
  background: var(--ind-saffron);
  color: var(--ind-saffron-foreground);
}
body.inddn-home .gn-signin-btn.is-user:hover .gn-user-name { color: var(--ind-primary-foreground); }

/* ── Apps panel ───────────────────────────────────────────────────────
   Was a full-height slab pinned to the viewport. Now a contained popover
   that ends well short of the bottom, with its own scroll. */
body.inddn-home .apps-panel {
  top: 62px;
  right: 18px;
  width: 340px;
  max-height: min(560px, calc(100vh - 96px));
  background: var(--ind-popover);
  border: 1px solid var(--ind-border);
  border-radius: 1rem;
  box-shadow: var(--ind-shadow-lg);
}
body.inddn-home .apps-panel-grid { gap: 2px; padding: 8px 10px 12px; }
body.inddn-home .app-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 0.75rem;
  font-size: 1.05rem;
  color: #fff;
}
body.inddn-home .app-item:hover .app-icon-wrap { box-shadow: var(--ind-shadow-md); }
body.inddn-home .app-item span { font-size: 0.7rem; }
/* Real-world logos are drawn for light backgrounds, so these tiles stay
   light in dark mode on purpose — only the frame follows the theme. */
body.inddn-home .indian-icon-wrap {
  background: oklch(0.97 0.005 90) !important;
  border: 1px solid var(--ind-border);
}
body.inddn-home .indian-apps-heading {
  display: flex;
  align-items: center;
  gap: 7px;
}
body.inddn-home .apps-footer-icon { font-size: inherit; }
body.inddn-home .apps-panel-header { border-bottom: 1px solid var(--ind-border); }
body.inddn-home .apps-panel-title {
  font-family: var(--ind-font-display);
  color: var(--ind-indigoblue);
}
body.inddn-home .apps-panel-edit {
  background: var(--ind-muted);
  color: var(--ind-muted-foreground);
}
body.inddn-home .apps-panel-edit:hover { background: var(--ind-accent); color: var(--ind-indigoblue); }
body.inddn-home .app-item { border-radius: var(--ind-radius); }
body.inddn-home .app-item:hover { background: var(--ind-accent); }
body.inddn-home .app-item span { color: var(--ind-muted-foreground); }
body.inddn-home .indian-apps-heading {
  font-family: var(--ind-font-display);
  color: var(--ind-indigoblue);
  border-color: var(--ind-border);
}
body.inddn-home .indian-icon-wrap {
  background: var(--ind-muted);
  border: 1px solid var(--ind-border);
}
body.inddn-home .apps-panel-footer {
  background: var(--ind-cream);
  border-top: 1px solid var(--ind-border);
}
body.inddn-home .apps-panel-footer span { color: var(--ind-muted-foreground); }
body.inddn-home .apps-panel-footer strong { color: var(--ind-indigoblue); }
body.inddn-home .apps-panel::-webkit-scrollbar-thumb { background: var(--ind-border); }

/* ── 3. Hero ──────────────────────────────────────────────────────── */
body.inddn-home .goog-center {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 640px) {
  body.inddn-home .goog-center { padding-top: 72px; }
}

/* The jaali lattice washes the whole hero */
body.inddn-home .hero-jaali { position: relative; }

body.inddn-home .inddn-brand-link {
  display: inline-block;
  text-decoration: none;
}

body.inddn-home .inddn-tagline {
  margin-top: 0.5rem;
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--ind-muted-foreground);
}

body.inddn-home .inddn-hero-divider {
  width: 14rem;
  margin: 1.5rem auto;
}

/* Acronym expansion — kept, restyled to the token palette */
body.inddn-home .inddn-fullname {
  font-family: var(--ind-font-display);
  color: var(--ind-muted-foreground);
}
body.inddn-home .inddn-fullname .fn-i { color: var(--ind-saffron); }
body.inddn-home .inddn-fullname .fn-d { color: var(--ind-gold); }
body.inddn-home .inddn-fullname .fn-n { color: var(--ind-royal); }

/* ── Search bar ───────────────────────────────────────────────────────
   Rebuilt as one calm 56px pill: a roomy input, then a divider, then a
   tight cluster of equally-sized 34px icon buttons, then the Search pill.
   The old version mixed inline paddings and icon sizes, which is what
   made it read as cramped and misaligned. */
body.inddn-home #search-wrapper {
  position: relative;
  height: 46px;
  width: 100%;
  max-width: 582px !important;
  margin: 0 auto;
}

body.inddn-home .inddn-search-box-outer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--ind-card);
  border: 1px solid var(--ind-border);
  border-radius: 24px;
  box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
  transition: box-shadow 0.15s ease, border-color 0.15s ease, border-radius 0.15s ease;
  overflow: hidden;
  z-index: 1000;
}

body.inddn-home .inddn-search-box-outer:hover {
  box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
  border-color: transparent;
}

body.inddn-home .inddn-search-box-outer.is-focused,
body.inddn-home .inddn-search-box-outer:focus-within {
  box-shadow: 0 4px 12px rgba(32, 33, 36, 0.3);
  border-color: transparent;
}

body.inddn-home .inddn-search-box-outer.is-focused {
  border-radius: 24px 24px 0 0;
}

body.dark.inddn-home .inddn-search-box-outer {
  box-shadow: none;
  border-color: #5f6368;
}

body.dark.inddn-home .inddn-search-box-outer:hover,
body.dark.inddn-home .inddn-search-box-outer:focus-within {
  box-shadow: 0 2px 18px oklch(0 0 0 / 0.6);
  border-color: transparent;
  background: #303134;
}

/* Inner input row */
body.inddn-home .inddn-search-box-inner {
  display: flex;
  align-items: center;
  height: 44px;
  padding: 0 14px;
  gap: 8px;
}

/* Clickable Magnifier submit button */
body.inddn-home .search-submit-btn {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ind-muted-foreground);
  transition: color 0.15s;
  box-shadow: none !important;
}

body.inddn-home .search-submit-btn:hover {
  color: var(--ind-saffron) !important;
  background: transparent !important;
  background-color: transparent !important;
}

body.inddn-home .search-magnifier-icon {
  width: 20px;
  height: 20px;
}

/* Input field */
body.inddn-home .inddn-search-input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--ind-font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--ind-foreground);
  padding: 0 !important;
  height: 100%;
}

body.inddn-home .inddn-search-input::placeholder {
  color: var(--ind-muted-foreground);
  font-weight: 400;
}

/* Button Group (Mic + Lens) */
body.inddn-home .search-buttons-group {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

/* Divider between input/submit and right buttons */
body.inddn-home .search-divider {
  width: 1px;
  height: 20px;
  background-color: var(--ind-border);
  margin: 0 6px;
}

body.dark.inddn-home .search-divider {
  background-color: #5f6368;
}

/* Voice and Visual buttons */
body.inddn-home .voice-btn,
body.inddn-home .ind-searchbox-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: none !important;
  border-radius: 50% !important;
  background: transparent !important;
  background-color: transparent !important;
  cursor: pointer;
  transition: background-color 0.15s;
  padding: 0;
  box-shadow: none !important;
}

body.inddn-home .voice-btn:hover,
body.inddn-home .ind-searchbox-btn:hover {
  background-color: var(--ind-accent) !important;
}

body.dark.inddn-home .voice-btn:hover,
body.dark.inddn-home .ind-searchbox-btn:hover {
  background-color: rgba(255, 255, 255, 0.12) !important;
}

body.inddn-home .voice-btn svg,
body.inddn-home .ind-searchbox-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── Language selector — standalone chip, centered under the search box ── */
body.inddn-home .search-lang-row {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}
body.inddn-home #langPickerBtn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 32px;
  padding: 0 14px;
  border: 1px solid var(--ind-border);
  border-radius: 9999px;
  background: var(--ind-card);
  font-family: var(--ind-font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ind-muted-foreground);
  cursor: pointer;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}
body.inddn-home #langPickerBtn:hover {
  border-color: var(--ind-saffron);
  background: var(--ind-accent);
  color: var(--ind-indigoblue);
}
body.inddn-home #langPickerBtn i { color: var(--ind-saffron); font-size: 0.72rem; }

@media (max-width: 640px) {
  body.inddn-home #search-wrapper {
    height: 44px;
  }
  body.inddn-home .inddn-search-box-inner {
    height: 42px;
    padding: 0 10px;
    gap: 6px;
  }
  body.inddn-home .search-divider {
    height: 16px;
    margin: 0 3px;
  }
  body.inddn-home .voice-btn,
  body.inddn-home .ind-searchbox-btn {
    width: 32px;
    height: 32px;
  }
}

/* ── Language picker panel ────────────────────────────────────────── */
body.inddn-home #langPickerWrap { position: relative; }
body.inddn-home #langPickerDropdown {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 10px);
  z-index: 1000;
  min-width: 210px;
  padding: 6px;
  overflow: hidden;
  background: var(--ind-popover);
  border: 1px solid var(--ind-border);
  border-radius: 0.75rem;
  box-shadow: var(--ind-shadow-lg);
  color: var(--ind-foreground);
}
body.inddn-home .lang-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--ind-radius);
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.12s;
}
body.inddn-home .lang-opt:hover { background: var(--ind-accent); }
body.inddn-home .lang-opt-code {
  min-width: 26px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ind-saffron-ink);
}
body.inddn-home .lang-opt-name { color: var(--ind-foreground); }

/* ── Trending dropdown ────────────────────────────────────────────── */
body.inddn-home #trending-dropdown {
  position: static;
  background: transparent;
  border: none;
  border-top: 1px solid var(--ind-border);
  border-radius: 0;
  box-shadow: none;
  color: var(--ind-foreground);
  margin-top: 0;
}

body.dark.inddn-home #trending-dropdown {
  border-top-color: #5f6368;
}

body.inddn-home .trending-dd-inner {
  padding: 8px 6px 12px;
}

body.inddn-home .trending-dd-title {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ind-muted-foreground);
}

body.inddn-home .trending-dd-title i { color: var(--ind-saffron); }

body.inddn-home .trend-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.12s;
}

body.inddn-home .trend-item:hover,
body.inddn-home .trend-item.active {
  background: var(--ind-accent);
}

body.dark.inddn-home .trend-item:hover,
body.dark.inddn-home .trend-item.active {
  background: rgba(255, 255, 255, 0.08);
}

body.inddn-home .trend-item-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--ind-muted-foreground);
}

body.inddn-home .trend-item-label {
  flex: 1;
  min-width: 0;
  font-size: 0.88rem;
  color: var(--ind-foreground);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.inddn-home .trend-item-go {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: var(--ind-border);
}

body.inddn-home .trend-item:hover .trend-item-go { color: var(--ind-saffron); }

/* Autocomplete panel (search-autocomplete.js) */
body.inddn-home #suggestions {
  background: var(--ind-popover);
  border: 1px solid var(--ind-border);
  border-radius: 0.875rem;
  box-shadow: var(--ind-shadow-md);
  color: var(--ind-foreground);
}

/* Action chips under the search bar */
body.inddn-home .ind-chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
body.inddn-home .ind-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 9999px;
  border: 1px solid var(--ind-border);
  background: var(--ind-card);
  padding: 0.375rem 1rem;
  font-family: var(--ind-font-sans);
  font-size: 0.875rem;
  color: var(--ind-indigoblue);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
body.inddn-home .ind-chip:hover {
  border-color: var(--ind-saffron);
  background: var(--ind-accent);
}

/* Trending in India — numbered grid */
body.inddn-home .ind-trending {
  width: 100%;
  max-width: 48rem;
  margin: 3rem auto 0;
}
body.inddn-home .ind-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--ind-font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--ind-indigoblue);
  margin: 0;
}
body.inddn-home .ind-section-title i { color: var(--ind-saffron); font-size: 0.9rem; }

body.inddn-home .ind-trending-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
@media (min-width: 640px) {
  body.inddn-home .ind-trending-list { grid-template-columns: 1fr 1fr; }
}
body.inddn-home .ind-trending-list a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--ind-border);
  border-radius: var(--ind-radius);
  background: var(--ind-card);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--ind-foreground);
  transition: border-color 0.15s, background 0.15s;
}
body.inddn-home .ind-trending-list a:hover {
  border-color: var(--ind-saffron);
  background: color-mix(in oklab, var(--ind-accent) 50%, var(--ind-card));
}
body.inddn-home .ind-trending-rank {
  display: grid;
  place-items: center;
  height: 1.5rem;
  width: 1.5rem;
  flex-shrink: 0;
  border-radius: 9999px;
  background: var(--ind-accent);
  font-family: var(--ind-font-display);
  font-size: 11px;
  color: var(--ind-indigoblue);
}
body.inddn-home .ind-trending-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Vertical quick links (Images / Videos / News / Search) */
body.inddn-home .ind-verticals {
  display: grid;
  gap: 0.75rem;
  width: 100%;
  max-width: 48rem;
  margin: 2.5rem auto 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 640px) {
  body.inddn-home .ind-verticals { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
body.inddn-home .ind-vertical {
  border: 1px solid var(--ind-border);
  border-radius: 0.625rem;
  background: var(--ind-card);
  padding: 1rem;
  text-align: center;
  transition: transform 0.15s, border-color 0.15s;
}
body.inddn-home .ind-vertical:hover {
  transform: translateY(-2px);
  border-color: var(--ind-saffron);
}
body.inddn-home .ind-vertical strong {
  display: block;
  font-family: var(--ind-font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ind-indigoblue);
}
body.inddn-home .ind-vertical span {
  display: block;
  margin-top: 0.125rem;
  font-size: 0.75rem;
  color: var(--ind-muted-foreground);
}

/* Pillars — the circle keeps its solid `--pillar-color` fill (set inline per
   pillar). It must NOT become a light surface: the icons inside are white. */
body.inddn-home .pillar-circle {
  width: 56px;
  height: 56px;
  background: var(--pillar-color, var(--ind-indigoblue));
  color: #fff;
  border: none;
  font-size: 1.15rem;
  box-shadow: 0 4px 14px color-mix(in oklab, var(--pillar-color, var(--ind-indigoblue)) 35%, transparent);
}
body.inddn-home .pillar-item:hover .pillar-circle {
  box-shadow: 0 8px 22px color-mix(in oklab, var(--pillar-color, var(--ind-indigoblue)) 45%, transparent);
}
body.inddn-home .pillar-item span {
  color: var(--ind-muted-foreground);
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* Jump-to links */
body.inddn-home .goog-offered { color: var(--ind-muted-foreground); }
body.inddn-home .goof-link { color: var(--ind-indigoblue); }
body.inddn-home .goof-link:hover { color: var(--ind-saffron); }

/* Stats bar */
body.inddn-home .goog-stats-bar {
  background: var(--ind-cream);
  border-top: 1px solid var(--ind-border);
  border-bottom: 1px solid var(--ind-border);
}
body.inddn-home .hstat strong {
  font-family: var(--ind-font-display);
  color: var(--ind-indigoblue);
}
body.inddn-home .hstat span { color: var(--ind-muted-foreground); }
body.inddn-home .hstat-sep { background: var(--ind-border); }

/* Inner footer bar */
body.inddn-home .goog-footer-bar {
  background: var(--ind-cream);
  border-top: 1px solid var(--ind-border);
  color: var(--ind-muted-foreground);
}
body.inddn-home .goog-footer-bar a { color: var(--ind-muted-foreground); }
body.inddn-home .goog-footer-bar a:hover { color: var(--ind-saffron); }

/* ── 4. Category cards + filters ──────────────────────────────────── */

/* The base rule is a bottom-bordered strip with `padding-bottom` only, so
   turning it into a card left the contents jammed against the edges — that
   is the "floating on top of the cards" look. Give it real padding and let
   it stick under the header instead. */
body.inddn-home .filter-wrap {
  position: sticky;
  top: 12px;
  z-index: 20;
  margin-bottom: 28px;
  padding: 14px 18px !important;
  border: 1px solid var(--ind-border);
  border-radius: 0.875rem;
  background: color-mix(in oklab, var(--ind-card) 88%, transparent);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  box-shadow: var(--ind-shadow-sm);
  row-gap: 10px;
}
body.inddn-home .filter-label {
  font-family: var(--ind-font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ind-muted-foreground);
}
body.inddn-home .filter-label i { color: var(--ind-saffron); }
body.inddn-home .filter-count {
  font-size: 0.78rem;
  color: var(--ind-muted-foreground);
}
body.inddn-home .filter-count span {
  color: var(--ind-saffron);
  font-weight: 700;
}

@media (max-width: 640px) {
  body.inddn-home .filter-wrap { position: static; padding: 12px 14px !important; }
  body.inddn-home .filter-count { margin-left: 0; }
}

/* Masonry via CSS columns.
   These cards vary enormously in height (a "no Indian player" card carries a
   role picker + investor CTA and runs ~700px; a plain one is ~310px). In a
   grid, every row is as tall as its tallest card, so short cards either
   stretch or trail a large gap — the problem circled in review. Columns pack
   them tightly with no gaps and no JS. `break-inside: avoid` keeps a card
   whole, and the renderer in script.js is untouched. */
body.inddn-home .cards-grid {
  display: block;
  columns: 3;
  column-gap: 18px;
}
body.inddn-home .cards-grid > .cat-card {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  width: 100%;
  margin: 0 0 18px;
  display: inline-block; /* Safari needs this to honour break-inside */
  vertical-align: top;
}
body.inddn-home .card-accordion,
body.inddn-home .cat-card { height: auto; }

@media (max-width: 1180px) {
  body.inddn-home .cards-grid { columns: 2; }
}
@media (max-width: 760px) {
  body.inddn-home .cards-grid { columns: 1; }
}
body.inddn-home .pill {
  border-radius: 9999px;
  border: 1px solid var(--ind-border);
  background: var(--ind-card);
  color: var(--ind-muted-foreground);
  font-family: var(--ind-font-sans);
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
body.inddn-home .pill:hover {
  border-color: var(--ind-saffron);
  background: var(--ind-accent);
  color: var(--ind-indigoblue);
}
body.inddn-home .pill.active {
  background: var(--ind-saffron);
  border-color: var(--ind-saffron);
  color: var(--ind-saffron-foreground);
  font-weight: 600;
}

body.inddn-home .cat-card {
  background: var(--ind-card);
  border: 1px solid var(--ind-border);
  border-radius: 0.875rem;
  box-shadow: var(--ind-shadow-sm);
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
body.inddn-home .cat-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in oklab, var(--ind-saffron) 55%, var(--ind-border));
  box-shadow: var(--ind-shadow-md);
}

body.inddn-home .card-head {
  padding: 16px 16px 14px;
  border-bottom: 1px solid var(--ind-border);
}
body.inddn-home .card-title {
  font-family: var(--ind-font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ind-foreground);
}
body.inddn-home .card-subtitle {
  font-size: 0.72rem;
  color: var(--ind-muted-foreground);
}
body.inddn-home .card-icon {
  width: 38px;
  height: 38px;
  border-radius: 0.625rem;
}
body.inddn-home .card-badge {
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Brand rows.
   `.b-flag` holds a flag emoji from the script.js data. Windows ships no
   flag glyphs, so it falls back to the two regional-indicator letters
   ("US", "IN"). Rather than fight that, style the fallback as a deliberate
   country-code chip — it reads as designed on every platform. */
body.inddn-home .b-flag {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 16px;
  padding: 0 3px;
  border-radius: 3px;
  border: 1px solid var(--ind-border);
  background: var(--ind-muted);
  font-size: 0.58rem !important;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ind-muted-foreground);
  overflow: hidden;
}
body.inddn-home .brand-row.india-row .b-flag,
body.inddn-home .nil-card-top .b-flag {
  border-color: color-mix(in oklab, var(--ind-saffron) 45%, var(--ind-border));
  color: var(--ind-saffron-ink);
}
body.inddn-home .brand-list { padding: 12px 16px 8px; }
body.inddn-home .b-country {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ind-muted-foreground);
}
body.inddn-home .b-name { font-size: 0.82rem; color: var(--ind-foreground); }
body.inddn-home .brand-row.india-row .b-name { color: var(--ind-indigoblue); font-weight: 600; }

/* "India's opening" disclosure */
body.inddn-home .opp-toggle-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ind-indigoblue);
}
body.inddn-home .opp-icon-wrap {
  width: 18px;
  height: 18px;
  background: var(--ind-saffron);
}
body.inddn-home .opp-icon-wrap i { color: var(--ind-saffron-foreground); }
body.inddn-home .opp-box {
  background: color-mix(in oklab, var(--ind-accent) 55%, var(--ind-card));
  border-radius: 0.625rem;
}
body.inddn-home .opp-box.open { border-color: var(--ind-border); }
body.inddn-home .opp-text {
  font-size: 0.74rem;
  line-height: 1.65;
  color: var(--ind-foreground);
}

/* ── "No Indian player" card ──────────────────────────────────────────
   The base styles use light-mode gradients and translucent-white fills,
   which go muddy on a dark surface. Rebuilt on tokens. */
body.inddn-home .nil-card {
  background: color-mix(in oklab, var(--ind-saffron) 7%, var(--ind-card));
  border: 1px solid color-mix(in oklab, var(--ind-saffron) 25%, var(--ind-border));
  border-radius: 0.625rem;
  margin: 6px 0 8px;
}
body.inddn-home .nil-card-top .b-country { color: var(--ind-foreground); }
body.inddn-home .nil-card-top .b-name { color: var(--ind-destructive); }
body.inddn-home .nil-join-btn {
  background: var(--ind-saffron);
  color: var(--ind-saffron-foreground);
  font-family: var(--ind-font-sans);
  font-weight: 700;
}
body.inddn-home .nil-join-btn:hover {
  background: var(--ind-indigoblue);
  color: var(--ind-primary-foreground);
  box-shadow: none;
}

/* The action bar wrapped badly and its label vanished on dark. Stack the
   label above the two links so they never collide. */
body.inddn-home .nil-card-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  padding: 10px 12px;
  background: color-mix(in oklab, var(--ind-foreground) 4%, transparent);
  border-top: 1px solid var(--ind-border);
}
body.inddn-home .nil-actions-label {
  color: var(--ind-muted-foreground);
  font-size: 0.6rem;
  margin-right: 0;
}
body.inddn-home .nil-card-actions > .nil-project-btn { margin-right: 14px; }
body.inddn-home .nil-project-btn {
  font-family: var(--ind-font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: none;
}
body.inddn-home .nil-project-btn.saffron-btn { color: var(--ind-saffron-ink); }
body.inddn-home .nil-project-btn.purple-btn { color: var(--ind-violet-ink); }
body.inddn-home .nil-project-btn:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 1;
  transform: none;
  box-shadow: none;
}

/* ── Role picker ──────────────────────────────────────────────────────
   Dropped the five-colour rainbow strip for a single tiranga hairline. */
body.inddn-home .role-picker {
  background: color-mix(in oklab, var(--ind-indigoblue) 7%, var(--ind-card));
  border: 1px solid color-mix(in oklab, var(--ind-indigoblue) 22%, var(--ind-border));
  border-radius: 0.625rem;
  padding: 12px;
}
body.inddn-home .role-picker::before {
  background: linear-gradient(
    to right,
    var(--ind-saffron) 0 33.33%,
    var(--ind-tiranga-white) 33.33% 66.66%,
    var(--ind-indiagreen) 66.66% 100%
  );
}
body.inddn-home .rp-label { color: var(--ind-indigoblue); }
body.inddn-home .rp-label::before { color: var(--ind-saffron); }
body.inddn-home .rp-tagline { color: var(--ind-muted-foreground); }
body.inddn-home .rp-btn {
  border-radius: 9999px;
  background: var(--ind-card) !important;
  border-color: var(--ind-border) !important;
  color: var(--ind-foreground) !important;
  font-family: var(--ind-font-sans);
  font-weight: 600;
}
body.inddn-home .rp-btn:hover {
  border-color: var(--ind-saffron) !important;
  background: var(--ind-accent) !important;
  color: var(--ind-indigoblue) !important;
}

/* ── Investor CTA ─────────────────────────────────────────────────── */
body.inddn-home .investor-cta {
  background: color-mix(in oklab, var(--ind-indiagreen) 10%, var(--ind-card));
  border: 1px solid color-mix(in oklab, var(--ind-indiagreen) 40%, var(--ind-border));
  border-radius: 0.625rem;
}
body.inddn-home .investor-cta-icon,
body.inddn-home .investor-cta-title { color: var(--ind-indiagreen); }
body.inddn-home .investor-cta-sub { color: var(--ind-muted-foreground); opacity: 1; }
body.inddn-home .investor-cta-btn {
  background: var(--ind-indiagreen);
  color: #fff;
  border-radius: 9999px;
  font-weight: 700;
}
body.inddn-home .investor-cta-btn:hover {
  background: color-mix(in oklab, var(--ind-indiagreen) 80%, black);
}

/* ── 5. Hope section ──────────────────────────────────────────────── */
body.inddn-home .hope-section {
  background: var(--ind-card);
  border-top: 1px solid var(--ind-border);
}
body.inddn-home .hope-title { color: var(--ind-indigoblue); }
body.inddn-home .hope-eyebrow { color: var(--ind-saffron); }
body.inddn-home .eyebrow-dot.saffron { background: var(--ind-saffron); }
body.inddn-home .hope-sub,
body.inddn-home .roles-sub { color: var(--ind-muted-foreground); }
body.inddn-home .flag-text { color: var(--ind-muted-foreground); }

body.inddn-home .pipe-icon {
  background: var(--ind-accent);
  color: var(--ind-indigoblue);
  border: 1px solid var(--ind-border);
}
body.inddn-home .pipe-step:hover .pipe-icon {
  border-color: var(--ind-saffron);
  background: var(--ind-saffron);
  color: var(--ind-saffron-foreground);
}
body.inddn-home .pipe-icon.saffron-icon {
  background: var(--ind-saffron);
  color: var(--ind-saffron-foreground);
  border-color: var(--ind-saffron);
}
body.inddn-home .pipe-num {
  font-family: var(--ind-font-display);
  color: var(--ind-muted-foreground);
}
body.inddn-home .pipe-content h4 { color: var(--ind-indigoblue); }
body.inddn-home .pipe-content p { color: var(--ind-muted-foreground); }
body.inddn-home .connector-line { background: var(--ind-border); }
body.inddn-home .connector-line::after { background: var(--ind-saffron); }
body.inddn-home .connector-arrow { border-left-color: var(--ind-saffron); }

body.inddn-home .roles-title { color: var(--ind-indigoblue); }
body.inddn-home .role-card {
  background: var(--ind-card);
  border: 1px solid var(--ind-border);
  border-radius: 0.75rem;
}
body.inddn-home .role-card:hover { border-color: var(--ind-saffron); }
body.inddn-home .role-card.featured-role {
  border-color: var(--ind-saffron);
  background: color-mix(in oklab, var(--ind-accent) 45%, var(--ind-card));
}
body.inddn-home .role-card h5 { color: var(--ind-indigoblue); }
body.inddn-home .role-card p { color: var(--ind-muted-foreground); }
body.inddn-home .role-tag {
  border-radius: 9999px;
  border: 1px solid var(--ind-border);
  color: var(--ind-muted-foreground);
}
body.inddn-home .featured-tag {
  background: var(--ind-saffron);
  border-color: var(--ind-saffron);
  color: var(--ind-saffron-foreground);
}

/* Mission strip must stay a deep band in BOTH modes. `--ind-indigoblue`
   inverts to a light tint on dark, which turned this into a pale blue
   slab. Pinned to explicit deep values instead. */
body.inddn-home .mission-strip {
  /* Solid colour first so the light text is never stranded on a bare
     surface if the gradient doesn't paint. */
  background-color: oklch(0.3 0.08 268);
  background-image: linear-gradient(135deg, oklch(0.32 0.09 265) 0%, oklch(0.26 0.07 275) 100%);
  border: 1px solid oklch(0.42 0.09 265);
  border-radius: 0.875rem;
  color: oklch(0.96 0.01 90);
}
body.inddn-home .mission-text span,
body.inddn-home .mission-words { color: oklch(0.96 0.01 90); }
body.inddn-home .mission-heart { color: var(--ind-saffron); }
body.inddn-home .mission-words em { color: var(--ind-gold); font-style: normal; }
body.inddn-home .cta-button {
  background: var(--ind-saffron);
  color: var(--ind-saffron-foreground);
  border-radius: 9999px;
  border: none;
}
body.inddn-home .cta-button:hover {
  background: var(--ind-gold);
  color: var(--ind-foreground);
}

/* ── 6. Page footer ───────────────────────────────────────────────── */
body.inddn-home .page-footer {
  background: var(--ind-cream);
  border-top: 1px solid var(--ind-border);
}
body.inddn-home .footer-logo {
  font-family: var(--ind-font-brand);
  color: var(--ind-indigoblue);
}
body.inddn-home .footer-tagline,
body.inddn-home .footer-sep { color: var(--ind-muted-foreground); }
body.inddn-home .footer-links a { color: var(--ind-muted-foreground); }
body.inddn-home .footer-links a:hover { color: var(--ind-saffron); }

/* ── 7. Dark-mode reconciliation ──────────────────────────────────────
   `public/style.css` ships a legacy homepage dark theme (hard-coded slate
   hexes, all `!important`). Those rules are `body.dark .x` (0,1,1); these
   are `body.inddn-home.dark .x` (0,2,1), so they win — and they keep the
   legacy theme intact for every page that is not yet ported.
   ─────────────────────────────────────────────────────────────────── */
body.inddn-home.dark {
  background: var(--ind-background) !important;
  color: var(--ind-foreground) !important;
}
body.inddn-home.dark .page-hero { background: var(--ind-background) !important; }
body.inddn-home.dark .gn-bar {
  background: transparent !important;
  border-color: transparent !important;
}
body.inddn-home.dark .gn-link { color: var(--ind-muted-foreground) !important; }
body.inddn-home.dark .gn-link:hover { color: var(--ind-indigoblue) !important; }
body.inddn-home.dark .gn-link.active {
  color: var(--ind-saffron) !important;
  border-bottom-color: var(--ind-saffron) !important;
}
body.inddn-home.dark .gn-signin-btn {
  background: transparent !important;
  color: var(--ind-indigoblue) !important;
  border-color: color-mix(in oklab, var(--ind-indigoblue) 45%, transparent) !important;
}
body.inddn-home.dark .gn-signin-btn:hover {
  background: var(--ind-indigoblue) !important;
  color: var(--ind-primary-foreground) !important;
}
body.inddn-home.dark .gn-settings-btn,
body.inddn-home.dark .dark-mode-btn {
  border-color: var(--ind-border) !important;
  color: var(--ind-saffron) !important;
  background: none !important;
}
body.inddn-home.dark .gn-settings-btn:hover,
body.inddn-home.dark .dark-mode-btn:hover {
  border-color: var(--ind-saffron) !important;
  background: var(--ind-accent) !important;
  color: var(--ind-indigoblue) !important;
}
body.inddn-home.dark .apps-panel {
  background: var(--ind-popover) !important;
  border-color: var(--ind-border) !important;
}
body.inddn-home.dark .apps-panel-title { color: var(--ind-indigoblue) !important; }
body.inddn-home.dark .apps-panel-edit {
  background: var(--ind-muted) !important;
  color: var(--ind-muted-foreground) !important;
}
body.inddn-home.dark .app-item:hover { background: var(--ind-accent) !important; }
body.inddn-home.dark .app-item span { color: var(--ind-muted-foreground) !important; }
body.inddn-home.dark .apps-panel-footer {
  background: var(--ind-cream) !important;
  border-color: var(--ind-border) !important;
}
body.inddn-home.dark .apps-panel-footer span { color: var(--ind-muted-foreground) !important; }
body.inddn-home.dark .apps-panel-footer strong { color: var(--ind-indigoblue) !important; }
body.inddn-home.dark .indian-apps-heading {
  color: var(--ind-indigoblue) !important;
  border-color: var(--ind-border) !important;
}
body.inddn-home.dark .indian-icon-wrap {
  background: var(--ind-muted) !important;
  border-color: var(--ind-border) !important;
}
body.inddn-home.dark .hope-section { background: var(--ind-card) !important; }
body.inddn-home.dark .role-card {
  background: var(--ind-card) !important;
  border-color: var(--ind-border) !important;
}
body.inddn-home.dark .role-card.featured-role { border-color: var(--ind-saffron) !important; }
body.inddn-home.dark .role-card h5 { color: var(--ind-indigoblue) !important; }
body.inddn-home.dark .role-card p { color: var(--ind-muted-foreground) !important; }
body.inddn-home.dark .page-footer,
body.inddn-home.dark .goog-footer-bar,
body.inddn-home.dark .goog-stats-bar {
  background: var(--ind-cream) !important;
  border-color: var(--ind-border) !important;
}
body.inddn-home.dark .goog-stats-bar .hero-stats { border-color: var(--ind-border) !important; }
body.inddn-home.dark .footer-tagline,
body.inddn-home.dark .footer-links a,
body.inddn-home.dark .goog-footer-bar a { color: var(--ind-muted-foreground) !important; }
body.inddn-home.dark .footer-links a:hover,
body.inddn-home.dark .goog-footer-bar a:hover { color: var(--ind-saffron) !important; }
body.inddn-home.dark .hstat strong { color: var(--ind-indigoblue) !important; }
body.inddn-home.dark .hstat span { color: var(--ind-muted-foreground) !important; }
body.inddn-home.dark .hstat-sep { background: var(--ind-border) !important; }
/* On dark, the ink scale is LIGHT, so anything filled with an ink colour
   needs dark glyphs instead of white ones. */
body.inddn-home.dark .pillar-circle { color: var(--ind-background) !important; }
body.inddn-home.dark .investor-cta-btn { color: var(--ind-background) !important; }
body.inddn-home.dark .nil-join-btn { color: var(--ind-saffron-foreground) !important; }

body.inddn-home.dark .inddn-search-input { color: var(--ind-foreground) !important; }
body.inddn-home.dark .inddn-search-input::placeholder,
body.inddn-home.dark input::placeholder { color: var(--ind-muted-foreground) !important; }

/* ── 8. Mobile ────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  /* Keep the homepage comfortable on narrow phones.  The base layout is
     desktop-first, so these rules deliberately turn the dense horizontal
     groups into readable stacks or compact two-column grids. */
  body.inddn-home {
    padding-bottom: 74px; /* space for the fixed mobile navigation */
  }

  body.inddn-home .page-hero { min-height: auto; }
  body.inddn-home .goog-center {
    width: 100%;
    justify-content: flex-start;
    padding: 32px 16px 36px;
  }
  body.inddn-home .ind-wordmark { font-size: clamp(2.5rem, 14vw, 3.25rem); }
  body.inddn-home .inddn-tagline {
    max-width: 100%;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }
  body.inddn-home .inddn-fullname { font-size: 0.82rem; }
  body.inddn-home .inddn-hero-divider { width: min(14rem, 72vw); margin: 1.15rem auto; }

  body.inddn-home #search-wrapper {
    width: 100%;
    max-width: none !important;
    height: 44px;
  }
  body.inddn-home .inddn-search-box-inner {
    height: 42px;
    padding: 0 10px;
    gap: 6px;
  }
  body.inddn-home .search-divider {
    height: 16px;
    margin: 0 3px;
  }
  body.inddn-home .voice-btn,
  body.inddn-home .ind-searchbox-btn {
    width: 32px;
    height: 32px;
  }
  body.inddn-home .ind-chip-row {
    width: 100%;
    gap: 0.5rem;
  }
  body.inddn-home .ind-chip {
    width: 100%;
    justify-content: center;
    padding: 0.55rem 0.75rem;
    font-size: 0.82rem;
  }

  body.inddn-home .ind-trending { margin-top: 2rem; }
  body.inddn-home .ind-verticals { margin-top: 2rem; gap: 0.55rem; }
  body.inddn-home .ind-vertical { padding: 0.8rem 0.5rem; }
  body.inddn-home .ind-vertical span { font-size: 0.68rem; }

  body.inddn-home .inddn-pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 16px 8px;
    margin-top: 28px;
  }
  body.inddn-home .pillar-circle { width: 50px; height: 50px; font-size: 1rem; }
  body.inddn-home .pillar-item span { font-size: 0.52rem; letter-spacing: 0.05em; }
  body.inddn-home .goog-offered { margin-top: 28px; gap: 4px 8px; font-size: 0.76rem; }

  body.inddn-home .goog-stats-bar { padding: 16px 0; }
  body.inddn-home .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 18px 12px;
  }
  body.inddn-home .hstat { min-width: 0; }
  body.inddn-home .hstat strong { font-size: 1.45rem; }
  body.inddn-home .hstat span { font-size: 0.65rem; letter-spacing: 0; line-height: 1.35; }
  body.inddn-home .hstat-sep { display: none; }

  body.inddn-home .goog-footer-bar { padding: 12px 16px; }
  body.inddn-home .main-section { padding: 36px 0 44px; }
  body.inddn-home .filter-pills {
    flex-wrap: nowrap;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: thin;
  }
  body.inddn-home .filter-pills .pill { white-space: nowrap; flex-shrink: 0; }
  body.inddn-home .cards-grid { columns: 1; }

  body.inddn-home .hope-section { padding: 48px 0 44px; }
  body.inddn-home .hope-header { gap: 20px; margin-bottom: 38px; }
  body.inddn-home .hope-header-right { align-self: flex-start; }
  body.inddn-home .pipeline { margin-bottom: 48px; }
  body.inddn-home .pipeline-steps { padding-left: 26px; }
  body.inddn-home .pipe-step { gap: 12px; padding: 16px 0; }
  body.inddn-home .pipe-icon { width: 50px; height: 50px; margin-left: -40px; }
  body.inddn-home .pipe-content { max-width: none; }
  body.inddn-home .roles-grid { grid-template-columns: 1fr; }
  body.inddn-home .mission-strip { padding: 22px 20px; }
  body.inddn-home .mission-text { align-items: flex-start; font-size: 0.88rem; }
  body.inddn-home .mission-cta { width: 100%; }
  body.inddn-home .mission-words { font-size: 1rem; }
  body.inddn-home .cta-button { width: 100%; justify-content: center; }

  body.inddn-home .footer-inner { gap: 18px; }
  body.inddn-home .footer-brand { flex-wrap: wrap; gap: 6px 10px; }
  body.inddn-home .footer-tagline { flex-basis: 100%; }
  body.inddn-home .footer-links { width: 100%; justify-content: space-between; gap: 8px; }
  body.inddn-home .footer-links a { font-size: 0.72rem; }

  body.inddn-home .apps-panel {
    top: 56px;
    right: 8px;
    width: min(340px, calc(100vw - 16px));
    max-height: calc(100dvh - 72px);
  }
}


/* ═══════════════════════════════════════════════════════════════════════
   V2 — Premium "Your Path From Idea to Impact" redesign
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Keyframes ──────────────────────────────────────────────────────── */
@keyframes hope-orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}
@keyframes hope-pulse-ring {
  0% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}
@keyframes hope-shine-sweep {
  0% { transform: translateX(-100%) rotate(25deg); }
  100% { transform: translateX(200%) rotate(25deg); }
}
@keyframes hope-gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes hope-heart-beat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.2); }
  30% { transform: scale(1); }
  45% { transform: scale(1.15); }
  60% { transform: scale(1); }
}

/* ── Section wrapper ────────────────────────────────────────────────── */
body.inddn-home .hope-section--v2 {
  position: relative;
  overflow: hidden;
  background: var(--ind-background);
  border-top: none;
  padding: 100px 0 88px;
}

/* ── Background mesh orbs ───────────────────────────────────────────── */
body.inddn-home .hope-bg-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
  display: block;
}
body.inddn-home .hope-mesh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.15;
  animation: hope-orb-float 18s ease-in-out infinite;
}
body.inddn-home .hope-mesh-orb--1 {
  width: 400px; height: 400px;
  background: var(--ind-saffron);
  top: -10%; right: -5%;
  animation-delay: 0s;
}
body.inddn-home .hope-mesh-orb--2 {
  width: 350px; height: 350px;
  background: var(--ind-royal);
  bottom: -5%; left: -8%;
  animation-delay: -6s;
}
body.inddn-home .hope-mesh-orb--3 {
  width: 280px; height: 280px;
  background: var(--ind-indiagreen);
  top: 40%; left: 50%;
  animation-delay: -12s;
}

/* ── Section header — centred ───────────────────────────────────────── */
body.inddn-home .hope-header--v2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 72px;
}
body.inddn-home .hope-header-badge {
  margin-bottom: 20px;
}
body.inddn-home .hope-header-badge .india-flag-badge {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08), 0 0 0 3px rgba(255,153,51,0.1);
}
body.inddn-home .hope-eyebrow--v2 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--ind-saffron);
}
body.inddn-home .eyebrow-line {
  flex: 1;
  height: 1px;
  max-width: 60px;
  background: linear-gradient(90deg, transparent, var(--ind-saffron), transparent);
  opacity: 0.4;
}
body.inddn-home .eyebrow-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: color-mix(in oklab, var(--ind-saffron) 8%, transparent);
  border: 1px solid color-mix(in oklab, var(--ind-saffron) 20%, transparent);
  border-radius: 9999px;
  padding: 5px 16px;
}
body.inddn-home .hope-title--v2 {
  font-family: var(--ind-font-display, 'Outfit', sans-serif);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--ind-foreground);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
body.inddn-home .hope-title-accent {
  background: linear-gradient(135deg, var(--ind-royal), var(--ind-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.inddn-home .hope-title-accent--saffron {
  background: linear-gradient(135deg, var(--ind-saffron), var(--ind-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.inddn-home .hope-sub--v2 {
  font-size: 1.05rem;
  color: var(--ind-muted-foreground);
  font-weight: 400;
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 12px;
}
body.inddn-home .hope-sub-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
body.inddn-home .hope-sub-badge .flag-text {
  background: color-mix(in oklab, var(--ind-indiagreen) 8%, transparent);
  border: 1px solid color-mix(in oklab, var(--ind-indiagreen) 18%, transparent);
  padding: 3px 14px;
  border-radius: 9999px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ind-green-ink);
}

/* ── Pipeline — flowchart layout ────────────────────────────────────── */
body.inddn-home .flowchart-pipeline {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  margin-bottom: 72px;
  width: 100%;
}
body.inddn-home .flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-align: center;
  max-width: 230px;
  position: relative;
}
body.inddn-home .flow-node-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
body.inddn-home .flow-node {
  position: relative;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--step-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 14px color-mix(in oklab, var(--step-color) 20%, transparent);
}
body.inddn-home .flow-step:hover .flow-node {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 8px 24px color-mix(in oklab, var(--step-color) 35%, transparent);
}
body.inddn-home .flow-node-num {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ind-card);
  border: 1.5px solid var(--ind-border);
  color: var(--ind-foreground);
  font-family: var(--ind-font-display, 'Outfit', sans-serif);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  transition: border-color 0.3s ease, background 0.3s ease;
}
body.inddn-home .flow-step:hover .flow-node-num {
  background: var(--ind-foreground);
  color: var(--ind-background);
  border-color: var(--ind-foreground);
}
body.inddn-home .flow-node-icon {
  font-size: 1.3rem;
  color: #fff;
  transition: transform 0.3s ease;
}
body.inddn-home .flow-step:hover .flow-node-icon {
  transform: rotate(-8deg) scale(1.05);
}
body.inddn-home .flow-node-line-down {
  width: 2px;
  height: 24px;
  background: linear-gradient(180deg, var(--step-color), var(--ind-border));
}
body.inddn-home .flow-card {
  background: color-mix(in oklab, var(--ind-card) 90%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--ind-border);
  border-radius: 16px;
  padding: 18px 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}
body.inddn-home .flow-step:hover .flow-card {
  border-color: color-mix(in oklab, var(--step-color) 35%, var(--ind-border));
  box-shadow: 0 8px 24px color-mix(in oklab, var(--step-color) 8%, transparent);
  transform: translateY(-2px);
}
body.inddn-home .flow-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    ellipse at center,
    color-mix(in oklab, var(--step-color) 4%, transparent) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
body.inddn-home .flow-step:hover .flow-card-glow {
  opacity: 1;
}
body.inddn-home .flow-card-title {
  font-family: var(--ind-font-display, 'Outfit', sans-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ind-foreground);
  margin-bottom: 6px;
}
body.inddn-home .flow-card-desc {
  font-size: 0.8rem;
  color: var(--ind-muted-foreground);
  line-height: 1.55;
}

/* Flowchart Connector */
body.inddn-home .flow-connector {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 34px;
  min-width: 32px;
}
body.inddn-home .flow-connector-line {
  width: 100%;
  height: 2px;
  background: var(--ind-border);
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}
body.inddn-home .flow-connector-pulse {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 40px;
  background: linear-gradient(90deg, transparent, var(--connector-color-start), var(--connector-color-end), transparent);
  animation: flowchart-flow-pulse 2.2s linear infinite;
}
@keyframes flowchart-flow-pulse {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(300%); }
}
body.inddn-home .flow-connector-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ind-card);
  border: 1px solid var(--ind-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ind-muted-foreground);
  font-size: 0.6rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
  z-index: 2;
  transition: all 0.25s ease;
}
body.inddn-home .flow-connector:hover .flow-connector-arrow {
  border-color: var(--connector-color-end);
  color: var(--connector-color-end);
  transform: translate(-50%, -50%) scale(1.08);
}


/* ── Roles bento grid ───────────────────────────────────────────────── */
body.inddn-home .roles-section--v2 {
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}
body.inddn-home .roles-header-v2 {
  text-align: center;
  margin-bottom: 36px;
}
body.inddn-home .roles-title--v2 {
  font-family: var(--ind-font-display, 'Outfit', sans-serif);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--ind-foreground);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
body.inddn-home .roles-sub--v2 {
  font-size: 0.95rem;
  color: var(--ind-muted-foreground);
}
body.inddn-home .roles-grid--v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
body.inddn-home .role-card--v2 {
  background: color-mix(in oklab, var(--ind-card) 92%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--ind-border);
  border-radius: 18px;
  padding: 26px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s ease,
              box-shadow 0.35s ease;
}
body.inddn-home .role-card--v2:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px color-mix(in oklab, var(--ind-foreground) 6%, transparent);
  border-color: color-mix(in oklab, var(--ind-saffron) 40%, var(--ind-border));
}
body.inddn-home .role-card-shine {
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in oklab, var(--ind-card) 60%, transparent),
    transparent
  );
  transform: rotate(25deg);
  pointer-events: none;
  opacity: 0;
}
body.inddn-home .role-card--v2:hover .role-card-shine {
  opacity: 1;
  animation: hope-shine-sweep 0.8s ease forwards;
}
body.inddn-home .featured-role--v2 {
  grid-column: span 1;
  border-color: color-mix(in oklab, var(--ind-saffron) 30%, var(--ind-border));
  background: color-mix(in oklab, var(--ind-accent) 50%, var(--ind-card));
  box-shadow: 0 4px 20px color-mix(in oklab, var(--ind-saffron) 8%, transparent);
}
body.inddn-home .featured-role--v2:hover {
  border-color: var(--ind-saffron);
  box-shadow: 0 12px 40px color-mix(in oklab, var(--ind-saffron) 15%, transparent);
}
body.inddn-home .role-icon--v2 {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--role-color, var(--role-gradient));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 16px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 3px 12px color-mix(in oklab, var(--ind-foreground) 8%, transparent);
}
body.inddn-home .role-card--v2:hover .role-icon--v2 {
  transform: scale(1.1) rotate(-3deg);
}
body.inddn-home .role-card--v2 h5 {
  font-family: var(--ind-font-display, 'Outfit', sans-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ind-foreground);
  margin-bottom: 6px;
}
body.inddn-home .role-card--v2 p {
  font-size: 0.82rem;
  color: var(--ind-muted-foreground);
  line-height: 1.65;
  margin-bottom: 16px;
}
body.inddn-home .role-tag--v2 {
  display: inline-flex;
  align-items: center;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 9999px;
  background: var(--ind-accent);
  border: 1px solid var(--ind-border);
  color: var(--ind-muted-foreground);
  transition: background 0.3s ease, color 0.3s ease;
}
body.inddn-home .featured-tag--v2 {
  background: var(--ind-saffron);
  border-color: var(--ind-saffron);
  color: var(--ind-saffron-foreground);
}

/* ── Mission strip — premium CTA ────────────────────────────────────── */
body.inddn-home .mission-strip--v2 {
  position: relative;
  z-index: 1;
  isolation: isolate;
  background-color: oklch(0.24 0.07 265);
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 18px 18px;
  border-radius: 28px;
  padding: 64px 40px;
  display: flex;
  justify-content: center;
  text-align: center;
  border: 1px solid color-mix(in oklab, var(--ind-saffron) 22%, rgba(255,255,255,0.08));
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(10, 8, 32, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Animated tricolour aurora behind the copy */
body.inddn-home .mission-aurora {
  position: absolute;
  inset: -30%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(38% 55% at 18% 18%, color-mix(in oklab, var(--ind-saffron) 55%, transparent) 0%, transparent 70%),
    radial-gradient(40% 55% at 82% 22%, color-mix(in oklab, var(--ind-royal) 60%, transparent) 0%, transparent 70%),
    radial-gradient(45% 60% at 78% 88%, color-mix(in oklab, var(--ind-indiagreen) 50%, transparent) 0%, transparent 70%),
    radial-gradient(40% 55% at 20% 85%, color-mix(in oklab, var(--ind-teal) 45%, transparent) 0%, transparent 70%);
  filter: blur(28px);
  opacity: 0.9;
  animation: mission-aurora-drift 16s ease-in-out infinite alternate;
}
@keyframes mission-aurora-drift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(2%, -2%, 0) scale(1.08); }
  100% { transform: translate3d(-2%, 2%, 0) scale(1.04); }
}

/* Ashoka chakra watermark, top-right */
body.inddn-home .mission-chakra {
  position: absolute;
  top: -46px;
  right: -46px;
  width: 220px;
  height: 220px;
  z-index: -1;
  color: rgba(255, 255, 255, 0.10);
  pointer-events: none;
  animation: mission-chakra-spin 90s linear infinite;
}
body.inddn-home .mission-chakra svg { width: 100%; height: 100%; }
@keyframes mission-chakra-spin {
  to { transform: rotate(360deg); }
}

body.inddn-home .mission-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

/* Eyebrow pill */
body.inddn-home .mission-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--ind-font-display, 'Outfit', sans-serif);
}
body.inddn-home .mission-tricolor {
  display: inline-flex;
  gap: 3px;
}
body.inddn-home .mission-tricolor i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
body.inddn-home .mission-tricolor i:nth-child(1) { background: var(--ind-saffron); }
body.inddn-home .mission-tricolor i:nth-child(2) { background: #fff; }
body.inddn-home .mission-tricolor i:nth-child(3) { background: var(--ind-indiagreen); }

/* Headline */
body.inddn-home .mission-headline {
  margin: 0;
  font-family: var(--ind-font-display, 'Outfit', sans-serif);
  font-weight: 700;
  font-size: clamp(1.55rem, 3.4vw, 2.5rem);
  line-height: 1.24;
  letter-spacing: -0.01em;
  color: #fff;
  text-wrap: balance;
}
body.inddn-home .mission-grad {
  background: linear-gradient(100deg, var(--ind-saffron), var(--ind-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
body.inddn-home .mission-grad--green {
  background: linear-gradient(100deg, var(--ind-teal), var(--ind-indiagreen) 70%, oklch(0.78 0.14 150));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Rhythm words */
body.inddn-home .mission-words--v2 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ind-font-display, 'Outfit', sans-serif);
  font-size: clamp(0.95rem, 1.6vw, 1.12rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}
body.inddn-home .mission-words--v2 .mission-word-dot { color: var(--ind-gold); opacity: 0.6; }
body.inddn-home .mission-words--v2 em {
  color: var(--ind-gold);
  font-style: normal;
  font-weight: 700;
}

/* CTA row */
body.inddn-home .mission-cta--v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 4px;
}
body.inddn-home .cta-button--v2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: var(--ind-saffron);
  color: var(--ind-saffron-foreground);
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 14px;
  border: none;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 8px 22px color-mix(in oklab, var(--ind-saffron) 40%, transparent);
}
body.inddn-home .cta-button--v2:hover {
  transform: translateY(-2px);
  background: var(--ind-gold);
  color: var(--ind-foreground);
  box-shadow: 0 12px 30px color-mix(in oklab, var(--ind-gold) 45%, transparent);
}
body.inddn-home .cta-button--v2 i {
  font-size: 0.72rem;
  transition: transform 0.3s ease;
}
body.inddn-home .cta-button--v2:hover i {
  transform: translateX(4px);
}
body.inddn-home .cta-button-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
body.inddn-home .cta-button-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  body.inddn-home .mission-aurora,
  body.inddn-home .mission-chakra { animation: none; }
}

/* ── V2 Dark-mode overrides ─────────────────────────────────────────── */
body.inddn-home.dark .hope-section--v2 {
  background: var(--ind-background) !important;
}
body.inddn-home.dark .hope-mesh-orb {
  opacity: 0.08 !important;
}
body.inddn-home.dark .eyebrow-chip {
  background: color-mix(in oklab, var(--ind-saffron) 12%, transparent) !important;
  border-color: color-mix(in oklab, var(--ind-saffron) 25%, transparent) !important;
}
body.inddn-home.dark .hope-title--v2 {
  color: var(--ind-foreground) !important;
}
body.inddn-home.dark .hope-sub-badge .flag-text {
  background: color-mix(in oklab, var(--ind-indiagreen) 12%, transparent) !important;
  border-color: color-mix(in oklab, var(--ind-indiagreen) 22%, transparent) !important;
  color: var(--ind-indiagreen) !important;
}
body.inddn-home.dark .flow-node {
  background: var(--ind-card) !important;
  border-color: var(--ind-border) !important;
}
body.inddn-home.dark .flow-node-num {
  background: var(--ind-card) !important;
  border-color: var(--ind-border) !important;
  color: var(--ind-foreground) !important;
}
body.inddn-home.dark .flow-node-line-down {
  background: linear-gradient(180deg, var(--step-color), var(--ind-border)) !important;
}
body.inddn-home.dark .flow-card {
  background: color-mix(in oklab, var(--ind-card) 75%, transparent) !important;
  border-color: var(--ind-border) !important;
}
body.inddn-home.dark .flow-card-title {
  color: var(--ind-foreground) !important;
}
body.inddn-home.dark .flow-connector-line {
  background: var(--ind-border) !important;
}
body.inddn-home.dark .flow-connector-arrow {
  background: var(--ind-card) !important;
  border-color: var(--ind-border) !important;
  color: var(--ind-muted-foreground) !important;
}
body.inddn-home.dark .role-card--v2 {
  background: color-mix(in oklab, var(--ind-card) 80%, transparent) !important;
  border-color: var(--ind-border) !important;
}
body.inddn-home.dark .role-card--v2 h5 {
  color: var(--ind-foreground) !important;
}
body.inddn-home.dark .featured-role--v2 {
  border-color: color-mix(in oklab, var(--ind-saffron) 35%, var(--ind-border)) !important;
  background: color-mix(in oklab, var(--ind-accent) 30%, var(--ind-card)) !important;
}
body.inddn-home.dark .role-tag--v2 {
  background: var(--ind-muted) !important;
  border-color: var(--ind-border) !important;
}
body.inddn-home.dark .featured-tag--v2 {
  background: var(--ind-saffron) !important;
  border-color: var(--ind-saffron) !important;
  color: var(--ind-saffron-foreground) !important;
}
body.inddn-home.dark .roles-title--v2 {
  color: var(--ind-foreground) !important;
}
body.inddn-home.dark .role-card-shine {
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in oklab, var(--ind-card) 30%, transparent),
    transparent
  ) !important;
}

/* ── V2 Responsive — tablet / flowchart vertical stacking ───────────────── */
@media (max-width: 900px) {
  body.inddn-home .hope-section--v2 { padding: 72px 0 60px; }
  body.inddn-home .hope-header--v2 { margin-bottom: 52px; }

  /* Flowchart vertical flow */
  body.inddn-home .flowchart-pipeline {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  body.inddn-home .flow-step {
    max-width: 100%;
    width: 100%;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 20px;
  }
  body.inddn-home .flow-node-wrapper {
    flex-shrink: 0;
  }
  body.inddn-home .flow-node-line-down {
    display: none;
  }
  body.inddn-home .flow-card {
    text-align: left;
    margin-top: 0;
    padding: 16px 18px;
  }
  body.inddn-home .flow-connector {
    align-self: flex-start;
    margin-left: 33px; /* Centered under the 68px node */
    margin-top: 0;
    margin-bottom: 0;
    height: 28px;
    width: 2px;
    flex: none;
  }
  body.inddn-home .flow-connector-line {
    width: 2px;
    height: 100%;
  }
  body.inddn-home .flow-connector-arrow {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  body.inddn-home .roles-grid--v2 { grid-template-columns: repeat(2, 1fr); }
  body.inddn-home .mission-strip--v2 { padding: 48px 28px; }
}

/* ── V2 Responsive — mobile ─────────────────────────────────────────── */
@media (max-width: 640px) {
  body.inddn-home .hope-section--v2 { padding: 56px 0 48px; }
  body.inddn-home .hope-header--v2 { margin-bottom: 40px; }
  body.inddn-home .hope-title--v2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  body.inddn-home .flow-step { gap: 14px; }
  body.inddn-home .flow-node { width: 56px; height: 56px; }
  body.inddn-home .flow-node-icon { font-size: 1.1rem; }
  body.inddn-home .flow-node-num { width: 18px; height: 18px; font-size: 0.65rem; top: -3px; right: -3px; }
  body.inddn-home .flow-card { padding: 14px 16px; }
  body.inddn-home .flow-card-title { font-size: 0.95rem; }
  body.inddn-home .flow-card-desc { font-size: 0.78rem; }
  body.inddn-home .flow-connector { margin-left: 27px; height: 24px; }

  body.inddn-home .roles-grid--v2 { grid-template-columns: 1fr; }
  body.inddn-home .role-card--v2 { padding: 22px 20px; }
  body.inddn-home .mission-strip--v2 { padding: 40px 20px; border-radius: 20px; }
  body.inddn-home .mission-br { display: none; }
  body.inddn-home .mission-chakra { width: 150px; height: 150px; top: -30px; right: -30px; }
  body.inddn-home .mission-cta--v2 { width: 100%; flex-direction: column; }
  body.inddn-home .cta-button--v2,
  body.inddn-home .cta-button-ghost { width: 100%; justify-content: center; padding: 13px 20px; }
  body.inddn-home .mission-words--v2 { flex-wrap: wrap; justify-content: center; gap: 8px; font-size: 0.85rem; }
}
