/* ==========================================================================
   GIRI — ENTERPRISE WHITE LUXURY DESIGN SYSTEM
   Inspired by: Zoho Layout Hierarchy & Apple/Stripe Minimalist Aesthetics
   Theme: Pristine White (#ffffff) with Signature Crimson Accent (#e11d48 / #dc2626)
   ========================================================================== */

:root {
  /* Core Palette */
  --bg-pure: #ffffff;
  --bg-canvas: #fcfdfe;
  --surface-glass: rgba(255, 255, 255, 0.76);
  --surface-glass-hover: rgba(255, 255, 255, 0.92);
  --surface-subtle: rgba(0, 0, 0, 0.025);
  
  /* Precision Borders */
  --border-subtle: 1px solid rgba(0, 0, 0, 0.06);
  --border-glass: 1px solid rgba(0, 0, 0, 0.07);
  --border-glass-hover: 1px solid rgba(0, 0, 0, 0.12);
  --border-divider: rgba(0, 0, 0, 0.05);

  /* Typography */
  --text-primary: #111215;
  --text-secondary: #4b5563;
  --text-tertiary: #9ca3af;
  --accent-red: #e11d48;
  --accent-red-hover: #be123c;
  --accent-emerald: #10b981;
  --accent-blue: #2563eb;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.03);
  --shadow-card: 0 30px 60px rgba(0, 0, 0, 0.04), 0 2px 10px rgba(0, 0, 0, 0.02);
  --shadow-card-hover: 0 45px 95px rgba(0, 0, 0, 0.09), 0 4px 20px rgba(0, 0, 0, 0.03);
  --shadow-dragging: 0 60px 120px rgba(0, 0, 0, 0.13), 0 8px 30px rgba(0, 0, 0, 0.05);
  --shadow-spotlight: 0 24px 48px rgba(15, 23, 42, 0.08);

  /* Easing */
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fluid: 0.45s;
  --duration-fast: 0.2s;
  --radius-card: 20px;
  --radius-inner: 12px;
  --radius-pill: 9999px;
  --backdrop-blur: blur(25px);
}

/* --------------------------------------------------------------------------
   RESET & BASE TYPOGRAPHY
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  width: 100%;
  height: 100%;
  background-color: var(--bg-pure);
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, SF Pro Display, Segoe UI, sans-serif;
  letter-spacing: -0.012em;
  overflow-x: hidden;
}

button, input, select, textarea, a {
  font-family: inherit;
  color: inherit;
  font-size: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

a {
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   AMBIENT ATMOSPHERIC CANVAS
   -------------------------------------------------------------------------- */
.ambient-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.ambient-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.85;
}

.blur-1 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.016) 0%, rgba(0, 0, 0, 0) 70%);
  top: -150px;
  left: 5%;
}

.blur-2 {
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.018) 0%, rgba(0, 0, 0, 0) 70%);
  bottom: 10%;
  right: 5%;
}

.blur-3 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.012) 0%, rgba(0, 0, 0, 0) 70%);
  top: 30%;
  left: 40%;
}

.ambient-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(0, 0, 0, 0.018) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.15) 85%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.15) 85%);
}

/* --------------------------------------------------------------------------
   ZOHO-STYLE ENTERPRISE HEADER
   Fixed top bar with dropdowns, search, lang, and strictly NO sign in/up
   -------------------------------------------------------------------------- */
.zoho-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: var(--backdrop-blur);
  -webkit-backdrop-filter: var(--backdrop-blur);
  border-bottom: var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 36px;
}

.header-container {
  width: 100%;
  max-width: 1440px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Left Brand */
.zoho-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
}

.brand-logo-wrap {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: #ffffff;
  border: var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.brand-vector-svg {
  width: 24px;
  height: 24px;
}

.brand-name {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--text-primary);
}

/* Navigation Links with dropdowns */
.zoho-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: #374151;
  border-radius: 8px;
  transition: all var(--duration-fast) ease;
  cursor: pointer;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.035);
}

.nav-link.is-active-page {
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.045);
  font-weight: 600;
}

.chevron {
  color: var(--text-tertiary);
  transition: transform var(--duration-fast) ease;
}

.has-dropdown:hover .chevron,
.has-dropdown:focus-within .chevron,
.has-dropdown.is-open .chevron {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 6px;
  min-width: 280px;
  background: #ffffff;
  border: var(--border-subtle);
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.03);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: all var(--duration-fast) var(--ease-spring);
  z-index: 120;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu,
.has-dropdown.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-link {
  display: flex;
  flex-direction: column;
  padding: 10px 14px;
  border-radius: 10px;
  transition: background var(--duration-fast) ease;
}

.dropdown-link:hover {
  background: rgba(0, 0, 0, 0.04);
}

.dropdown-link.is-active-app {
  background: rgba(225, 29, 72, 0.05);
}

.dropdown-link.is-active-app strong {
  color: var(--accent-red);
}

.dropdown-link strong {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-link span {
  font-size: 11.5px;
  color: var(--text-secondary);
  margin-top: 2px;
  line-height: 1.4;
}

/* Right Utilities: Search, Lang, Contact (NO SIGN IN / UP) */
.zoho-utilities {
  display: flex;
  align-items: center;
  gap: 16px;
}

.util-btn {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #4b5563;
  transition: all var(--duration-fast) ease;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.util-btn svg {
  display: block;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.util-btn:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--text-primary);
}

.lang-selector {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: #4b5563;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all var(--duration-fast) ease;
  background: transparent;
  border: none;
  font-family: inherit;
  line-height: 1.2;
  flex-shrink: 0;
}

.lang-selector svg {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.lang-selector:hover {
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.04);
}

.contact-pill-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  font-size: 12.5px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  background: #111215;
  color: #ffffff;
  transition: all var(--duration-fluid) var(--ease-spring);
  box-shadow: 0 2px 8px rgba(17, 18, 21, 0.1);
}

.contact-pill-btn:hover {
  background: #2b2e38;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(17, 18, 21, 0.16);
}

/* --------------------------------------------------------------------------
   HERO SECTION (ZOHO STYLE)
   -------------------------------------------------------------------------- */
.zoho-hero-section {
  position: relative;
  z-index: 10;
  padding: 68px 24px 48px 24px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.hero-content {
  max-width: 920px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-headline {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.035em;
  color: #111215;
  margin-bottom: 20px;
}

.hero-headline-highlight {
  color: #111215;
}

/* Signature Red Accent Bar (from reference) */
.hero-accent-bar {
  width: 48px;
  height: 3.5px;
  background-color: var(--accent-red);
  border-radius: 2px;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 18px;
  line-height: 1.55;
  color: #4b5563;
  max-width: 720px;
  margin-bottom: 34px;
  letter-spacing: -0.015em;
}

.underlined-privacy {
  text-decoration: underline dotted rgba(0, 0, 0, 0.3);
  text-underline-offset: 4px;
  color: #1f2937;
  font-weight: 500;
}

/* High-Contrast Red CTA (Zoho Style) */
.hero-action-row {
  margin-bottom: 38px;
}

.hero-red-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background-color: var(--accent-red);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 4px; /* Crisp Zoho button contour */
  box-shadow: 0 4px 18px rgba(225, 29, 72, 0.28);
  transition: all var(--duration-fluid) var(--ease-spring);
}

.hero-red-cta:hover {
  background-color: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(225, 29, 72, 0.36);
}

.hero-red-cta:active {
  transform: translateY(0);
}

/* Mode Switcher Bar */
.view-mode-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 5px 12px;
  background: rgba(0, 0, 0, 0.025);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-pill);
}

.mode-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
}

.mode-toggle-group {
  display: flex;
  align-items: center;
  gap: 4px;
}

.mode-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-pill);
  transition: all var(--duration-fast) ease;
}

.mode-btn:hover {
  color: var(--text-primary);
}

.mode-btn.is-active {
  background: #ffffff;
  color: var(--text-primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.live-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-emerald);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

/* --------------------------------------------------------------------------
   FEATURED SUITE SECTION (ZOHO STYLE SPOTLIGHT & APPS)
   -------------------------------------------------------------------------- */
.featured-suite-section {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto 60px auto;
  padding: 0 24px;
}

.suite-container {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
  display: grid;
  grid-template-columns: 320px 1fr;
  overflow: hidden;
}

/* Left: Spotlight Hero Card */
.spotlight-card {
  background: linear-gradient(145deg, #180d2b 0%, #0d1222 100%);
  color: #ffffff;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.spotlight-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #38bdf8;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 24px;
}

.sparkle {
  color: #f43f5e;
}

.spotlight-icon-box {
  position: relative;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
}

.spotlight-glow {
  position: absolute;
  inset: -8px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.5) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(10px);
}

.spotlight-svg {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.spotlight-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.spotlight-desc {
  font-size: 12.5px;
  line-height: 1.55;
  color: #94a3b8;
  margin-bottom: 28px;
}

.spotlight-action-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #38bdf8;
  transition: gap var(--duration-fast) ease;
}

.spotlight-action-link:hover {
  gap: 12px;
  color: #7dd3fc;
}

/* Right: Featured Apps Grid */
.featured-apps-panel {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-divider);
  padding-bottom: 14px;
}

.panel-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #374151;
}

.panel-explore-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #2563eb;
  transition: gap var(--duration-fast) ease;
}

.panel-explore-link:hover {
  gap: 10px;
  color: #1d4ed8;
}

.apps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.app-item-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all var(--duration-fast) ease;
  cursor: pointer;
}

.app-item-card:hover {
  background: #f8fafc;
  border-color: rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.app-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.icon-blue { background: rgba(37, 99, 235, 0.08); color: #2563eb; }
.icon-emerald { background: rgba(16, 185, 129, 0.08); color: #059669; }
.icon-indigo { background: rgba(99, 102, 241, 0.08); color: #4f46e5; }
.icon-amber { background: rgba(245, 158, 11, 0.08); color: #d97706; }

.app-meta {
  display: flex;
  flex-direction: column;
}

.app-name {
  font-size: 15px;
  font-weight: 700;
  color: #111215;
  margin-bottom: 4px;
}

.app-tagline {
  font-size: 12px;
  line-height: 1.45;
  color: #64748b;
}

/* --------------------------------------------------------------------------
   ZERO-GRAVITY INTERACTIVE CANVAS SECTION
   -------------------------------------------------------------------------- */
.zerog-canvas-section {
  position: relative;
  z-index: 10;
  max-width: 1440px;
  margin: 0 auto 60px auto;
  padding: 0 24px;
}

.canvas-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 18px;
}

.sub-pill {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #2563eb;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.section-title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #111215;
}

.section-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.canvas-telemetry-hud {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.025);
  padding: 4px 6px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.hud-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-pill);
}

.hud-pill:hover {
  background: #ffffff;
  color: var(--text-primary);
}

.status-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.6);
}

.status-indicator.paused {
  background: #f59e0b;
}

.hud-icon-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-secondary);
}

.hud-icon-btn:hover {
  background: #ffffff;
  color: var(--text-primary);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

/* The Zero-G Floating Card Surface */
.workspace-canvas {
  position: relative;
  width: 100%;
  height: 840px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
  touch-action: none;
}

/* Base Glassmorphism Card Spec */
.giri-card {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--surface-glass);
  backdrop-filter: var(--backdrop-blur);
  -webkit-backdrop-filter: var(--backdrop-blur);
  border: var(--border-glass);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  cursor: grab;
  will-change: transform, box-shadow;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  touch-action: none;
  transition: box-shadow var(--duration-fluid) var(--ease-spring),
              border-color var(--duration-fluid) var(--ease-spring);
}

.giri-card:hover {
  background: var(--surface-glass-hover);
  border-color: rgba(0, 0, 0, 0.10);
  box-shadow: var(--shadow-card-hover);
  z-index: 40 !important;
}

.giri-card.is-dragging {
  cursor: grabbing !important;
  box-shadow: var(--shadow-dragging) !important;
  border-color: rgba(0, 0, 0, 0.14) !important;
  z-index: 50 !important;
  transition: none !important;
}

.giri-card.is-filtered-out {
  opacity: 0.15;
  filter: grayscale(80%) blur(2px);
  pointer-events: none;
}

.giri-card.is-focused-card {
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.03);
}

/* Card Header */
.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 12px 20px;
  border-bottom: 1px solid var(--border-divider);
}

.card-identity {
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-icon-badge {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #ffffff;
  border: var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.card-title-group {
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-primary);
}

.card-category-tag {
  font-size: 9.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
}

.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  font-size: 10px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.035);
  color: var(--text-secondary);
}

.card-badge.status-live {
  background: rgba(16, 185, 129, 0.08);
  color: #065f46;
}

.card-badge.status-live::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #10b981;
}

.card-body {
  padding: 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-footer {
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.015);
  border-top: 1px solid var(--border-divider);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-secondary);
}

/* Individual Card Sizing */
.card-drift { width: 420px; }
.card-axis { width: 430px; }
.card-kinetic { width: 440px; }
.card-developer { width: 370px; }

/* Editor Mock inside Drift */
.editor-mock {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: var(--border-subtle);
  border-radius: var(--radius-inner);
  overflow: hidden;
}

.editor-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  background: rgba(0, 0, 0, 0.02);
  border-bottom: 1px solid var(--border-divider);
}

.formatting-glyphs {
  display: flex;
  align-items: center;
  gap: 4px;
}

.glyph-btn {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
}

.glyph-btn.active {
  background: #111215;
  color: #ffffff;
}

.editor-doc-tab {
  font-size: 10px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--text-tertiary);
}

.editor-content {
  padding: 14px;
  display: flex;
  gap: 10px;
  font-size: 12px;
  line-height: 1.6;
}

.editor-gutters {
  display: flex;
  flex-direction: column;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #c4c7cf;
  text-align: right;
  padding-right: 6px;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.editor-heading {
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 4px;
}

.editor-paragraph {
  color: #4b5563;
  margin-bottom: 8px;
}

.editor-code-snippet {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  background: rgba(0, 0, 0, 0.03);
  padding: 6px 8px;
  border-radius: 6px;
  color: #1e293b;
}

.code-keyword { color: #8b5cf6; font-weight: 600; }
.code-fn { color: #2563eb; }
.code-string { color: #059669; }

.cursor-caret {
  display: inline-block;
  width: 2px;
  height: 13px;
  background: #111215;
  vertical-align: middle;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.editor-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.015);
  border-top: 1px solid var(--border-divider);
  font-size: 9.5px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--text-tertiary);
}

/* Axis Metrics & Sparklines */
.axis-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.metric-tile {
  background: #ffffff;
  border: var(--border-subtle);
  border-radius: var(--radius-inner);
  padding: 10px 12px;
}

.metric-label {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-tertiary);
  font-weight: 600;
  margin-bottom: 4px;
}

.metric-value-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.metric-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.metric-change {
  font-size: 10px;
  font-weight: 600;
  padding: 1px 5px;
  border-radius: 4px;
}

.metric-change.positive { background: rgba(16, 185, 129, 0.1); color: #047857; }
.metric-change.neutral { background: rgba(0, 0, 0, 0.04); color: var(--text-secondary); }

.axis-chart-container {
  background: #ffffff;
  border: var(--border-subtle);
  border-radius: var(--radius-inner);
  padding: 12px 14px 8px 14px;
  margin-bottom: 12px;
}

.chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.chart-title {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-secondary);
}

.chart-subvalue {
  font-size: 11px;
  font-weight: 700;
}

.sparkline-svg {
  width: 100%;
  height: 54px;
}

.axis-stream-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 6px;
  font-size: 10.5px;
}

.stream-node {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--text-secondary);
}

.pulse-node {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2563eb;
  animation: pulse-stream 1.5s infinite;
}

@keyframes pulse-stream {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

/* Kinetic 16:9 Presentation Canvas */
.slide-canvas-viewport {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #ffffff;
  border: var(--border-subtle);
  border-radius: var(--radius-inner);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 20px;
}

.slide-guide-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: 
    linear-gradient(to right, rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 18px 18px;
}

.slide-badge-pill {
  align-self: flex-start;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.05);
  z-index: 2;
}

.slide-deck-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4px;
}

.slide-deck-subtitle {
  font-size: 11px;
  color: var(--text-secondary);
}

.slide-motion-curve {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 140px;
  height: 80px;
  opacity: 0.18;
}

.slide-filmstrip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.filmstrip-thumbnails {
  display: flex;
  gap: 5px;
}

.thumbnail-node {
  width: 34px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8.5px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--text-tertiary);
}

.thumbnail-node.current {
  background: #111215;
  color: #ffffff;
  border-color: #111215;
}

.transition-telemetry {
  font-size: 9.5px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--text-secondary);
  background: rgba(0, 0, 0, 0.03);
  padding: 2px 6px;
  border-radius: 4px;
}

/* Developer Intel Profile */
.dev-profile-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.dev-avatar-ring {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #111215;
}

.dev-avatar-ring .active-ping {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b981;
  border: 2px solid #ffffff;
}

.dev-meta-titles {
  display: flex;
  flex-direction: column;
}

.dev-name {
  font-size: 15px;
  font-weight: 700;
}

.dev-role {
  font-size: 10.5px;
  color: var(--text-secondary);
}

.dev-status-dispatch {
  background: rgba(0, 0, 0, 0.02);
  border: var(--border-subtle);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 11px;
  color: #334155;
  margin-bottom: 12px;
}

.dev-section-heading {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  margin-bottom: 6px;
}

.dev-stack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}

.tech-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  font-size: 10.5px;
  font-weight: 500;
  border-radius: var(--radius-pill);
  background: #ffffff;
  color: #1e293b;
  border: 1px solid rgba(0, 0, 0, 0.07);
}

.tech-tag-icon {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.dev-assignment-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  font-size: 11px;
}

.assignment-name { font-weight: 600; }
.assignment-badge {
  font-size: 9.5px;
  padding: 2px 6px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   CORPORATE FOOTER
   -------------------------------------------------------------------------- */
.zoho-footer {
  border-top: var(--border-subtle);
  background: #ffffff;
  padding: 48px 36px 40px 36px;
  position: relative;
  z-index: 10;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand-col {
  max-width: 320px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 12px 0 16px 0;
  line-height: 1.5;
}

.copyright {
  font-size: 11.5px;
  color: var(--text-tertiary);
  display: block;
}

.footer-links-group {
  display: flex;
  gap: 64px;
}

.footer-links-group .col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-group h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.footer-links-group a {
  font-size: 12.5px;
  color: var(--text-secondary);
  transition: color var(--duration-fast) ease;
}

.footer-links-group a:hover {
  color: var(--text-primary);
}

/* --------------------------------------------------------------------------
   DIALOGS & SEARCH
   -------------------------------------------------------------------------- */
.glass-dialog {
  border: none;
  background: transparent;
  padding: 0;
  max-width: 520px;
  width: 90vw;
  margin: auto;
  outline: none;
}

.glass-dialog::backdrop {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.dialog-content {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
  padding: 30px 32px;
}

.dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.dialog-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-secondary);
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-emerald);
}

.dialog-close-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.03);
}

.dialog-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.dialog-subtitle {
  font-size: 12.5px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #fafbfc;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 13px;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #111215;
  background: #ffffff;
}

.dialog-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: #111215;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 10px;
  margin-top: 6px;
}

.form-feedback {
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  min-height: 16px;
}

.form-feedback.success { color: #047857; }

/* Quick Search Dialog */
.search-dialog-wrap {
  max-width: 600px;
}

.search-input-row {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border-divider);
  padding-bottom: 16px;
}

.search-input-row input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  color: var(--text-primary);
}

.search-suggestions {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.suggestion-tag {
  font-size: 11.5px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.04);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--duration-fast) ease;
}

.suggestion-tag:hover {
  background: #111215;
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   RESPONSIVE LAYOUT
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .suite-container {
    grid-template-columns: 1fr;
  }
  .hero-headline {
    font-size: 42px;
  }
  .zoho-nav {
    display: none;
  }
  .apps-grid {
    grid-template-columns: 1fr;
  }
}
/* Additional styling rules for human-centered elements */

.editor-checklist-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #374151;
  margin-bottom: 6px;
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: #059669;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}

.hero-red-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 20px rgba(225, 29, 72, 0.28);
  transition: all var(--duration-fluid) var(--ease-spring);
}

.hero-red-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(225, 29, 72, 0.38);
  background: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
}

.hero-red-cta:active {
  transform: translateY(0);
}

/* ==========================================================================
   PROVIDED LOGO & BRAND ASSET STYLING
   ========================================================================== */
.brand-logo-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}

.spotlight-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.2));
}

.founder-nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  font-size: 12.5px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.04);
  color: var(--text-primary);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all var(--duration-fluid) var(--ease-spring);
}

.founder-nav-pill:hover {
  background: #111215;
  color: #ffffff;
  border-color: #111215;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(17, 18, 21, 0.12);
}

.founder-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e11d48;
}

.founder-nav-pill:hover .founder-dot {
  background: #ffffff;
}

/* Developer card Instagram badge */
.dev-insta-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 600;
  color: #e11d48;
  margin-top: 3px;
  transition: color var(--duration-fast) ease;
}

.dev-insta-badge:hover {
  color: #be123c;
  text-decoration: underline;
}

/* ==========================================================================
   FOUNDER & VISION CORNER (ABHINAV GIRI ESSAY & PROFILE)
   ========================================================================== */
.founder-corner-section {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto 70px auto;
  padding: 0 24px;
}

.founder-header {
  text-align: center;
  margin-bottom: 36px;
}

.founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #e11d48;
  text-transform: uppercase;
  background: rgba(225, 29, 72, 0.08);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.badge-star {
  font-size: 12px;
}

.founder-main-title {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.founder-sub-intro {
  font-size: 15px;
  color: var(--text-secondary);
}

.founder-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 28px;
}

/* Left Founder Profile Card */
.founder-profile-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 34px 28px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.founder-avatar-frame {
  position: relative;
  width: 96px;
  height: 96px;
  margin-bottom: 20px;
}

.founder-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fafbfc;
  border: 2px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.founder-logo-emblem {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.founder-live-pulse {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #10b981;
  border: 3px solid #ffffff;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
}

.founder-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.015em;
  margin-bottom: 3px;
}

.founder-title {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.founder-quote {
  font-size: 13.5px;
  font-style: italic;
  color: #4b5563;
  line-height: 1.5;
  background: #f8fafc;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 22px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.founder-details-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  text-align: left;
  border-top: 1px solid var(--border-divider);
  padding-top: 16px;
}

.founder-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.detail-label {
  color: var(--text-tertiary);
  font-weight: 500;
}

.detail-value {
  color: var(--text-primary);
  font-weight: 600;
}

/* Instagram Connection Button */
.founder-social-box {
  width: 100%;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.social-box-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  text-align: center;
}

.instagram-button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: linear-gradient(135deg, #111215 0%, #1f222a 100%);
  color: #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all var(--duration-fluid) var(--ease-spring);
  text-align: left;
}

.instagram-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #e11d48 0%, #9333ea 100%);
  box-shadow: 0 8px 24px rgba(225, 29, 72, 0.28);
}

.insta-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.insta-text-wrap {
  display: flex;
  flex-direction: column;
}

.insta-id {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.insta-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.8);
}

/* Right 400-Word Essay Card */
.founder-essay-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 38px 42px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}

.essay-tagline {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #059669;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-divider);
  padding-bottom: 12px;
}

.essay-body {
  font-size: 15px;
  line-height: 1.75;
  color: #374151;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.essay-body strong {
  color: var(--text-primary);
  font-weight: 700;
}

.essay-inline-insta {
  color: #e11d48;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--duration-fast) ease;
}

.essay-inline-insta:hover {
  color: #be123c;
}

.founder-values-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-divider);
}

.value-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.value-bullet {
  font-size: 10.5px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  color: #e11d48;
}

.value-item strong {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-primary);
}

.value-item span {
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--text-secondary);
}

.footer-insta-line {
  font-size: 12px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.footer-insta-link {
  color: #e11d48;
  font-weight: 600;
  text-decoration: underline;
}

.footer-insta-link:hover {
  color: #be123c;
}

@media (max-width: 900px) {
  .founder-grid {
    grid-template-columns: 1fr;
  }
  .founder-values-strip {
    grid-template-columns: 1fr;
  }
  .founder-essay-card {
    padding: 24px;
  }
}

/* ==========================================================================
   EDITORIAL FOUNDER'S LETTER (BESPOKE LITERARY CRAFT)
   Eliminates all AI template tropes in favor of an intimate, authentic letter
   ========================================================================== */
.editorial-letter-section {
  position: relative;
  z-index: 10;
  max-width: 1180px;
  margin: 0 auto 70px auto;
  padding: 0 24px;
}

.letter-outer-frame {
  width: 100%;
}

.letter-sheet {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 28px;
  padding: 48px 56px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.03), 0 2px 10px rgba(0, 0, 0, 0.015);
}

.letter-header {
  border-bottom: 1px solid var(--border-divider);
  padding-bottom: 30px;
  margin-bottom: 36px;
}

.letter-eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.letter-brand-mark {
  display: flex;
  align-items: center;
  gap: 10px;
}

.letter-insignia {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.letter-meta-date {
  font-size: 10.5px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-tertiary);
  text-transform: uppercase;
}

.letter-insta-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: #111215;
  background: rgba(0, 0, 0, 0.035);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  transition: all var(--duration-fast) ease;
}

.letter-insta-chip:hover {
  background: #111215;
  color: #ffffff;
}

.letter-headline {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 40px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #111215;
  margin-bottom: 10px;
}

.letter-byline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6b7280;
}

.byline-sep {
  opacity: 0.4;
}

/* 2-Column Editorial Grid */
.letter-columns-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 52px;
}

/* Sidebar */
.letter-sidebar {
  display: flex;
  flex-direction: column;
}

.founder-card-compact {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.founder-initials-ring {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #111215;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(17, 18, 21, 0.15);
}

.founder-compact-meta {
  display: flex;
  flex-direction: column;
}

.founder-real-name {
  font-size: 15px;
  font-weight: 700;
  color: #111215;
}

.founder-real-role {
  font-size: 11.5px;
  color: var(--text-secondary);
}

.letter-pullquote {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 17.5px;
  font-style: italic;
  line-height: 1.55;
  color: #1f2937;
  border-left: 2px solid #e11d48;
  padding-left: 16px;
  margin: 0 0 28px 0;
}

.sidebar-insta-connect {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.insta-connect-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-tertiary);
  text-transform: uppercase;
}

.insta-editorial-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  transition: all var(--duration-fluid) var(--ease-spring);
}

.insta-editorial-card:hover {
  background: #111215;
  color: #ffffff;
  border-color: #111215;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(17, 18, 21, 0.12);
}

.insta-editorial-card:hover .insta-card-glyph {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.insta-editorial-card:hover .insta-action-text {
  color: rgba(255, 255, 255, 0.8);
}

.insta-card-glyph {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111215;
  flex-shrink: 0;
}

.insta-card-text {
  display: flex;
  flex-direction: column;
}

.insta-handle-text {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.insta-action-text {
  font-size: 10.5px;
  color: var(--text-secondary);
}

.letter-values-compact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--border-divider);
  padding-top: 20px;
}

.val-node {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 12px;
  color: #4b5563;
}

.val-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  color: #e11d48;
}

/* Main Letter Typography */
.letter-prose {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 18.5px;
  line-height: 1.82;
  color: #2d3139;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.prose-lead::first-letter {
  float: left;
  font-size: 54px;
  line-height: 0.82;
  padding-right: 12px;
  padding-top: 4px;
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 500;
  color: #111215;
}

.prose-standout {
  font-size: 21px;
  font-weight: 500;
  font-style: italic;
  color: #111215;
  padding-left: 18px;
  border-left: 2px solid rgba(0, 0, 0, 0.15);
  margin: 4px 0;
}

.prose-insta-link {
  color: #e11d48;
  font-style: italic;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose-insta-link:hover {
  color: #be123c;
}

.letter-signature-block {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-divider);
}

.script-signature {
  font-family: 'Reenie Beanie', cursive, sans-serif;
  font-size: 44px;
  color: #111215;
  transform: rotate(-1.5deg);
  display: inline-block;
  margin-bottom: 2px;
}

.signature-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-tertiary);
  margin-bottom: 14px;
  display: block;
}

@media (max-width: 900px) {
  .letter-sheet {
    padding: 30px 24px;
  }
  .letter-columns-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .letter-headline {
    font-size: 28px;
  }
}

/* ==========================================================================
   DEDICATED PAGES DESIGN SYSTEM (DRIFT, AXIS, KINETIC, FOUNDER)
   ========================================================================== */
.page-inner-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 24px 70px 24px;
}

.page-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-tertiary);
  margin-bottom: 28px;
}

.page-breadcrumbs a {
  color: var(--text-secondary);
  transition: color var(--duration-fast) ease;
}

.page-breadcrumbs a:hover {
  color: var(--text-primary);
}

.breadcrumb-sep {
  opacity: 0.3;
}

.current-page {
  color: var(--text-primary);
  font-weight: 600;
}

.is-active-page {
  color: var(--text-primary) !important;
  font-weight: 700 !important;
}

/* Dedicated App Hero */
.dedicated-app-hero {
  max-width: 840px;
  margin-bottom: 40px;
}

.app-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.dedicated-hero-title {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.dedicated-hero-sub {
  font-size: 17px;
  line-height: 1.6;
  color: #4b5563;
}

/* Interactive Playground Card */
.interactive-demo-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  margin-bottom: 50px;
}

.demo-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: #fafbfc;
  border-bottom: 1px solid var(--border-divider);
  font-size: 12px;
  color: var(--text-secondary);
}

.demo-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mini-action-btn {
  padding: 6px 14px;
  font-size: 11.5px;
  font-weight: 600;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.04);
  color: var(--text-primary);
  transition: all var(--duration-fast) ease;
}

.mini-action-btn:hover {
  background: rgba(0, 0, 0, 0.08);
}

.mini-action-btn.primary {
  background: #111215;
  color: #ffffff;
}

.mini-action-btn.primary:hover {
  background: #2b2e38;
}

/* Live Writing Surface (Drift) */
.live-editor-container {
  display: flex;
  flex-direction: column;
}

.live-editor-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  border-bottom: 1px solid var(--border-divider);
  background: #ffffff;
}

.live-doc-indicator {
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--text-tertiary);
}

.live-writing-surface {
  width: 100%;
  min-height: 280px;
  padding: 24px 28px;
  font-family: 'Newsreader', Georgia, serif;
  font-size: 18px;
  line-height: 1.8;
  color: #1f242e;
  border: none;
  outline: none;
  resize: vertical;
  background: #ffffff;
}

.live-editor-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  background: #fafbfc;
  border-top: 1px solid var(--border-divider);
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--text-tertiary);
}

.privacy-seal {
  color: #059669;
  font-weight: 500;
}

/* Savings Simulator (Axis) */
.simulator-body {
  padding: 28px 32px;
}

.simulator-controls {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.slider-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.slider-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.slider-group input[type=range] {
  width: 100%;
  accent-color: #10b981;
  height: 6px;
  border-radius: 3px;
  cursor: pointer;
}

.simulator-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.kpi-mini {
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.kpi-mini.highlight {
  background: rgba(16, 185, 129, 0.06);
  border-color: rgba(16, 185, 129, 0.2);
}

.kpi-label {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 500;
}

.kpi-val {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
}

.kpi-mini.highlight .kpi-val {
  color: #047857;
}

.chart-visual-box {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 16px;
  overflow: hidden;
}

/* Kinetic Slide Showcase */
.kinetic-player-box {
  padding: 24px;
  background: #f8fafc;
}

.slide-active-screen {
  aspect-ratio: 16 / 9;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 36px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.slide-screen-guide {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.02) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 24px 24px;
}

.slide-tag-node {
  align-self: flex-start;
  font-size: 9.5px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.05);
  z-index: 2;
}

.slide-main-editorial {
  z-index: 2;
  margin: auto 0;
}

.slide-deck-headline {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #111215;
  margin-bottom: 8px;
}

.slide-deck-tagline {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.5;
}

.slide-bottom-meta {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--text-tertiary);
  z-index: 2;
}

.kinetic-deck-thumbnails {
  display: flex;
  gap: 12px;
}

.deck-thumb {
  flex: 1;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
  transition: all var(--duration-fast) ease;
}

.deck-thumb:hover {
  border-color: rgba(0, 0, 0, 0.2);
}

.deck-thumb.is-active {
  background: #111215;
  color: #ffffff;
  border-color: #111215;
}

.deck-thumb span {
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
}

.deck-thumb small {
  font-size: 11px;
  opacity: 0.8;
}

/* 3 Core Pillars Section */
.dedicated-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 60px;
}

.feature-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-col h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.feature-col p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* Next Steps Cards */
.dedicated-next-steps {
  border-top: 1px solid var(--border-divider);
  padding-top: 36px;
  margin-top: 50px;
}

.next-steps-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
}

.next-steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}

.next-step-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: all var(--duration-fast) ease;
}

.next-step-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.step-tag {
  font-size: 9px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  color: var(--text-tertiary);
  letter-spacing: 0.1em;
}

.next-step-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.next-step-card p {
  font-size: 12px;
  color: var(--text-secondary);
}

@media (max-width: 900px) {
  .dedicated-features-grid, .next-steps-grid, .simulator-kpis {
    grid-template-columns: 1fr;
  }
  .dedicated-hero-title {
    font-size: 34px;
  }
}

/* ==========================================================================
   ORIGINAL BLACK BACKGROUND LOGO EXACT PRESERVATION
   Guarantees the exact uploaded logo displays with its original black background
   ========================================================================== */
.brand-logo-wrap {
  width: 38px !important;
  height: 38px !important;
  border-radius: 8px !important;
  background: #000000 !important;
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
  flex-shrink: 0 !important;
}

.brand-logo-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

.footer-logo {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.footer-logo-img {
  width: 34px !important;
  height: 34px !important;
  border-radius: 8px !important;
  object-fit: cover !important;
  display: block !important;
  background: #000000 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
}

.spotlight-logo-img {
  width: 54px !important;
  height: 54px !important;
  border-radius: 14px !important;
  object-fit: cover !important;
  display: block !important;
  background: #000000 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4) !important;
}

.letter-insignia {
  width: 24px !important;
  height: 24px !important;
  border-radius: 6px !important;
  object-fit: cover !important;
  display: block !important;
  background: #000000 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

/* ==========================================================================
   DEDICATED APPS & TOOLS HUB (APPS.HTML) & REFINED HOME EXPERIENCE
   ========================================================================== */

/* Trust Strip on Home Page */
.home-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
}

/* Home Clean Suite Grid */
.home-suite-section {
  padding: 80px 36px 60px;
  max-width: 1380px;
  margin: 0 auto;
}

.home-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.home-section-eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 12px;
}

.home-section-title {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 14px;
}

.home-section-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.home-suite-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.home-suite-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all var(--duration-fluid) var(--ease-spring);
  position: relative;
  overflow: hidden;
}

.home-suite-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.12);
}

.home-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.home-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-card-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.04);
  color: var(--text-secondary);
}

.home-card-badge.live {
  background: rgba(16, 185, 129, 0.08);
  color: #047857;
}

.home-card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: -0.015em;
}

.home-card-tagline {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.4;
}

.home-card-desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.home-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.home-card-features li {
  font-size: 12.5px;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 8px;
}

.home-card-features li svg {
  color: #10b981;
  flex-shrink: 0;
}

.home-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 10px;
  background: #111215;
  color: #ffffff;
  transition: all var(--duration-fast) ease;
}

.home-card-btn:hover {
  background: #27272a;
  transform: translateY(-1px);
}

.home-suite-cta-row {
  text-align: center;
  margin-top: 10px;
}

.home-view-all-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  background: #ffffff;
  color: var(--text-primary);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  transition: all var(--duration-fast) ease;
}

.home-view-all-pill:hover {
  background: #f8fafc;
  border-color: rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

/* Home Founder Spotlight (Clean, High-end) */
.home-founder-spotlight {
  padding: 40px 36px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.founder-spotlight-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.03);
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 900px) {
  .founder-spotlight-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }
}

.founder-spotlight-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-right: 32px;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

@media (max-width: 900px) {
  .founder-spotlight-profile {
    padding-right: 0;
    border-right: none;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
}

.founder-spotlight-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #111215;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.founder-spotlight-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.founder-spotlight-role {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.founder-spotlight-insta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(225, 29, 72, 0.06);
  color: var(--accent-red);
  font-size: 12px;
  font-weight: 600;
  transition: all var(--duration-fast) ease;
}

.founder-spotlight-insta:hover {
  background: rgba(225, 29, 72, 0.12);
}

.founder-spotlight-content {
  display: flex;
  flex-direction: column;
}

.founder-spotlight-eyebrow {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 12px;
}

.founder-spotlight-quote {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 26px;
  font-style: italic;
  line-height: 1.4;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.founder-spotlight-text {
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 24px;
}

.founder-spotlight-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.founder-val-chip {
  padding: 6px 14px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.035);
  font-size: 12px;
  font-weight: 600;
  color: #374151;
}

.founder-spotlight-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  background: var(--accent-red);
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 600;
  align-self: flex-start;
  transition: all var(--duration-fast) ease;
}

.founder-spotlight-cta:hover {
  background: var(--accent-red-hover);
  transform: translateY(-1px);
}

/* ==========================================================================
   APPS.HTML CATALOG GRID & FILTERING
   ========================================================================== */
.apps-catalog-hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.catalog-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}

.filter-chip {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.035);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--duration-fast) ease;
}

.filter-chip:hover {
  background: rgba(0, 0, 0, 0.06);
  color: var(--text-primary);
}

.filter-chip.active {
  background: #111215;
  color: #ffffff;
  border-color: #111215;
  font-weight: 600;
}

.apps-catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
  margin-bottom: 64px;
}

.catalog-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all var(--duration-fluid) var(--ease-spring);
  position: relative;
}

.catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.07);
  border-color: rgba(0, 0, 0, 0.14);
}

.catalog-card.is-hidden {
  display: none !important;
}

.catalog-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.catalog-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-status-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

.tag-blue {
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
}

.tag-emerald {
  background: rgba(16, 185, 129, 0.08);
  color: #047857;
}

.tag-indigo {
  background: rgba(99, 102, 241, 0.08);
  color: #4338ca;
}

.tag-crimson {
  background: rgba(225, 29, 72, 0.08);
  color: #be123c;
}

.catalog-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.catalog-tagline {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 14px;
  line-height: 1.4;
}

.catalog-desc {
  font-size: 14.5px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.catalog-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  padding: 18px;
  border-radius: 14px;
  background: #fafbfc;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.catalog-feature-list li {
  font-size: 13px;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 8px;
}

.catalog-feature-list li svg {
  color: #10b981;
  flex-shrink: 0;
}

.catalog-launch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  background: #111215;
  color: #ffffff;
  transition: all var(--duration-fast) ease;
}

.catalog-launch-btn:hover {
  background: var(--accent-red);
  transform: translateY(-1px);
}

/* Comparison Section */
.suite-comparison-section {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 48px;
  margin-bottom: 64px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

@media (max-width: 768px) {
  .suite-comparison-section {
    padding: 32px 20px;
  }
}

.comparison-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 36px;
}

.comparison-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 768px) {
  .comparison-grid-2col {
    grid-template-columns: 1fr;
  }
}

.comp-col-card {
  padding: 32px;
  border-radius: 18px;
}

.comp-col-card.foreign {
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.comp-col-card.giri {
  background: rgba(16, 185, 129, 0.03);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.comp-col-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comp-list li {
  font-size: 13.5px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.comp-list.foreign li {
  color: #6b7280;
}

.comp-list.giri li {
  color: #1f2937;
  font-weight: 500;
}

/* ==========================================================================
   INTERACTIVE LIVE GIRI STUDIO (APPLE/STRIPE TACTILE PLAYGROUND)
   ========================================================================== */
.home-live-studio-section {
  max-width: 1200px;
  margin: 48px auto 80px auto;
  padding: 0 24px;
}

.home-live-studio-wrap {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 24px 48px -12px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.home-live-studio-wrap:hover {
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 6px 12px -1px rgba(0, 0, 0, 0.03), 0 32px 64px -16px rgba(0, 0, 0, 0.08);
}

/* Studio Window Chrome */
.studio-chrome-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: #fafbfc;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  flex-wrap: wrap;
  gap: 16px;
}

.studio-chrome-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.studio-window-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.studio-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #e5e7eb;
}

.studio-dot.close { background: #fca5a5; }
.studio-dot.min { background: #fde68a; }
.studio-dot.max { background: #86efac; }

.studio-title-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7280;
  background: rgba(0, 0, 0, 0.04);
  padding: 4px 10px;
  border-radius: 9999px;
}

/* Studio Segmented Tab Navigation */
.studio-tab-nav {
  display: inline-flex;
  background: rgba(0, 0, 0, 0.05);
  padding: 4px;
  border-radius: 12px;
  gap: 4px;
}

.studio-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  color: #4b5563;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
  cursor: pointer;
}

.studio-tab-btn:hover {
  color: #111827;
}

.studio-tab-btn.is-active {
  background: #ffffff;
  color: #111827;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.studio-tab-btn .tab-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.studio-tab-btn[data-target-panel="drift-studio-panel"] .tab-dot { color: #2563eb; }
.studio-tab-btn[data-target-panel="axis-studio-panel"] .tab-dot { color: #10b981; }
.studio-tab-btn[data-target-panel="kinetic-studio-panel"] .tab-dot { color: #6366f1; }

.studio-chrome-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.studio-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: #059669;
  background: rgba(16, 185, 129, 0.08);
  padding: 4px 10px;
  border-radius: 9999px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Studio Body & Panels */
.studio-body {
  padding: 36px 40px;
  min-height: 380px;
}

@media (max-width: 768px) {
  .studio-body {
    padding: 24px 20px;
  }
}

.studio-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: studioFadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.studio-panel.is-hidden {
  display: none;
}

@keyframes studioFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Panel 1: Drift Live Pad --- */
.drift-mini-editor-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.drift-prompt-chip-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.drift-prompt-label {
  font-size: 12px;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-right: 4px;
}

.drift-prompt-chip {
  font-size: 12px;
  font-weight: 500;
  color: #374151;
  background: #f3f4f6;
  padding: 5px 12px;
  border-radius: 9999px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.15s ease;
}

.drift-prompt-chip:hover {
  background: #e5e7eb;
  color: #111827;
  transform: translateY(-1px);
}

.drift-mini-textarea {
  width: 100%;
  min-height: 150px;
  max-height: 260px;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.09);
  background: #fdfdfd;
  font-size: 15px;
  line-height: 1.65;
  color: #1f2937;
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.drift-mini-textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.drift-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.drift-live-stats {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  color: #4b5563;
}

.drift-stat-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.drift-stat-item strong {
  color: #111827;
  font-weight: 700;
}

.drift-actions-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.studio-secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 12.5px;
  font-weight: 600;
  color: #4b5563;
  background: #f3f4f6;
  border: 1px solid rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: all 0.15s ease;
}

.studio-secondary-btn:hover {
  background: #e5e7eb;
  color: #111827;
}

.studio-primary-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  background: #111827;
  text-decoration: none;
  transition: all 0.15s ease;
}

.studio-primary-link:hover {
  background: #e11d48;
  transform: translateY(-1px);
}

/* --- Panel 2: Axis Live Savings Projector --- */
.axis-studio-controls {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #f8fafc;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.axis-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.axis-slider-label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.axis-slider-amount {
  font-size: 26px;
  font-weight: 800;
  color: #059669;
  letter-spacing: -0.02em;
}

.axis-range-input {
  width: 100%;
  height: 8px;
  border-radius: 9999px;
  background: #e2e8f0;
  outline: none;
  cursor: pointer;
  accent-color: #10b981;
}

.axis-presets-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.axis-presets-label {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  margin-right: 4px;
}

.axis-preset-pill {
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 4px 12px;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.axis-preset-pill:hover, .axis-preset-pill.is-active {
  background: #10b981;
  color: #ffffff;
  border-color: #10b981;
}

.axis-studio-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .axis-studio-metrics-grid {
    grid-template-columns: 1fr;
  }
}

.axis-metric-card {
  padding: 20px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.axis-metric-period {
  font-size: 11.5px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.axis-metric-value {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.axis-metric-sub {
  font-size: 12px;
  color: #64748b;
}

.axis-milestone-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 14px;
}

.axis-milestone-text {
  font-size: 13.5px;
  font-weight: 600;
  color: #065f46;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* --- Panel 3: Kinetic Live Slide Player --- */
.kinetic-deck-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kinetic-slide-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 380px;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  border-radius: 20px;
  color: #ffffff;
  padding: 36px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 20px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .kinetic-slide-frame {
    aspect-ratio: auto;
    padding: 24px 20px;
    min-height: 280px;
  }
}

.kinetic-slide-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  animation: slideCrossFade 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.kinetic-slide-item.is-hidden {
  display: none;
}

@keyframes slideCrossFade {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

.kinetic-slide-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.12);
  color: #93c5fd;
  backdrop-filter: blur(8px);
}

.kinetic-slide-headline {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 16px 0 10px 0;
  max-width: 680px;
}

@media (max-width: 768px) {
  .kinetic-slide-headline {
    font-size: 20px;
  }
}

.kinetic-slide-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 640px;
}

.kinetic-slide-bullets li {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 8px;
}

.kinetic-slide-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
}

.kinetic-deck-controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 6px;
}

.kinetic-deck-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.kinetic-deck-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f3f4f6;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #374151;
  cursor: pointer;
  transition: all 0.15s ease;
}

.kinetic-deck-btn:hover {
  background: #e5e7eb;
  color: #111827;
  transform: scale(1.05);
}

.kinetic-deck-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.kinetic-deck-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.2s ease;
}

.kinetic-deck-dot.is-active {
  width: 24px;
  border-radius: 9999px;
  background: #6366f1;
}

/* ==========================================================================
   THE TRUE COST OF SOFTWARE IN INDIA: DOLLAR MONOPOLY VS. GIRI
   ========================================================================== */
.cost-comparison-section {
  max-width: 1200px;
  margin: 60px auto 90px auto;
  padding: 0 24px;
}

.cost-comparison-card {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 24px 48px -12px rgba(0, 0, 0, 0.04);
  padding: 44px;
}

@media (max-width: 768px) {
  .cost-comparison-card {
    padding: 28px 20px;
  }
}

.cost-comparison-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px auto;
}

.cost-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 36px;
}

@media (max-width: 860px) {
  .cost-split-grid {
    grid-template-columns: 1fr;
  }
}

.cost-col {
  padding: 32px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cost-col.foreign-monopoly {
  background: #fdf2f2;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.cost-col.giri-sovereign {
  background: #f0fdf4;
  border: 1px solid rgba(16, 185, 129, 0.25);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.08);
}

.cost-col-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cost-col.foreign-monopoly .cost-col-title { color: #991b1b; }
.cost-col.giri-sovereign .cost-col-title { color: #065f46; }

.cost-col-sub {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 24px;
}

.cost-item-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.cost-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
  font-size: 14px;
}

.cost-item-name {
  font-weight: 600;
  color: #1f2937;
}

.cost-item-desc {
  font-size: 12px;
  color: #6b7280;
}

.cost-item-price {
  font-weight: 700;
  font-size: 14px;
}

.foreign-monopoly .cost-item-price { color: #b91c1c; }
.giri-sovereign .cost-item-price { color: #047857; }

.cost-total-banner {
  padding: 16px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.cost-total-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #4b5563;
}

.cost-total-number {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.foreign-monopoly .cost-total-number { color: #dc2626; }
.giri-sovereign .cost-total-number { color: #059669; }

.cost-annual-savings-strip {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 18px;
  padding: 24px 32px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.cost-savings-highlight-text h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
  color: #34d399;
}

.cost-savings-highlight-text p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   GLOBAL SPOTLIGHT SEARCH DIALOG (CMD+K / CTRL+K)
   ========================================================================== */
.spotlight-dialog {
  padding: 0;
  border: none;
  border-radius: 20px;
  width: 90%;
  max-width: 620px;
  background: #ffffff;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.08);
  margin: auto;
}

.spotlight-dialog::backdrop {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.spotlight-box {
  display: flex;
  flex-direction: column;
}

.spotlight-header-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.spotlight-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  color: #111827;
  background: transparent;
}

.spotlight-search-input::placeholder {
  color: #9ca3af;
}

.spotlight-shortcut-kbd {
  font-size: 11px;
  font-weight: 600;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  padding: 3px 7px;
  border-radius: 6px;
  color: #6b7280;
}

.spotlight-results-wrap {
  max-height: 380px;
  overflow-y: auto;
  padding: 12px;
}

.spotlight-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.15s ease;
}

.spotlight-item:hover, .spotlight-item.is-selected {
  background: #f8fafc;
  transform: translateX(2px);
}

.spotlight-item-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 3px;
}

.spotlight-item-title {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}

.spotlight-item-cat {
  font-size: 11px;
  font-weight: 600;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.08);
  padding: 2px 8px;
  border-radius: 9999px;
}

.spotlight-item-desc {
  font-size: 12.5px;
  color: #6b7280;
}

.spotlight-item-arrow {
  color: #9ca3af;
}

.spotlight-no-results {
  padding: 36px 20px;
  text-align: center;
  color: #6b7280;
}

.spotlight-no-results p {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #111827;
}

.spotlight-no-results span {
  font-size: 12px;
  color: #9ca3af;
}

.spotlight-footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: #fafbfc;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 11.5px;
  color: #9ca3af;
}

/* Language & Region Modal (All Indian Languages) */
.lang-dialog {
  width: 92%;
  max-width: 680px;
}

.lang-modal-box {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.lang-modal-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #111827;
}

.lang-modal-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  display: block;
}

.lang-modal-subtitle {
  font-size: 12px;
  color: #6b7280;
  font-weight: 400;
  display: block;
  margin-top: 1px;
}

.lang-search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #f8fafc;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.lang-search-bar svg {
  color: #9ca3af;
  flex-shrink: 0;
}

.lang-search-bar input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 13.5px;
  color: #111827;
}

.lang-search-bar input::placeholder {
  color: #9ca3af;
}

.lang-count-badge {
  font-size: 11px;
  font-weight: 600;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.08);
  padding: 3px 8px;
  border-radius: 9999px;
  white-space: nowrap;
}

.lang-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-height: 380px;
  overflow-y: auto;
  padding: 16px 20px;
}

@media (max-width: 640px) {
  .lang-options-grid {
    grid-template-columns: 1fr;
    max-height: 320px;
  }
}

.lang-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: left;
}

.lang-option:hover {
  border-color: rgba(37, 99, 235, 0.4);
  background: #fbfcfd;
  transform: translateY(-1px);
}

.lang-option.is-active {
  border-color: #2563eb;
  background: rgba(37, 99, 235, 0.05);
  box-shadow: 0 0 0 1px #2563eb;
}

.lang-option-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lang-name-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.lang-native {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
}

.lang-english {
  font-size: 12.5px;
  font-weight: 500;
  color: #4b5563;
}

.lang-region {
  font-size: 11px;
  color: #9ca3af;
}

.lang-check {
  font-size: 11.5px;
  font-weight: 600;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.1);
  padding: 3px 8px;
  border-radius: 9999px;
  white-space: nowrap;
}

.lang-select-action {
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
  padding: 3px 8px;
  border-radius: 6px;
  background: #f3f4f6;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.lang-option:hover .lang-select-action {
  opacity: 1;
}

.lang-no-match {
  grid-column: 1 / -1;
  text-align: center;
  padding: 24px;
  color: #6b7280;
  font-size: 13.5px;
}

.lang-modal-footer {
  padding: 12px 20px 16px 20px;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.lang-note {
  padding: 10px 14px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.lang-note p {
  font-size: 11.5px;
  line-height: 1.5;
  color: #64748b;
  margin: 0;
}

/* Floating Language Toast */
.lang-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #111827;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.lang-toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   HERO FUNCTIONAL PRODUCT SEARCH & ANTIGRAVITY VOICE MIC
   ========================================================================== */
.hero-search-wrapper {
  position: relative;
  max-width: 660px;
  width: 100%;
  margin: 32px auto 26px auto;
  z-index: 60;
}

.hero-search-box {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 9999px;
  padding: 8px 10px 8px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  gap: 12px;
}

.hero-search-box:hover {
  border-color: rgba(0, 0, 0, 0.18);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
}

.hero-search-box.is-focused {
  border-color: #e11d48;
  box-shadow: 0 8px 30px rgba(225, 29, 72, 0.12), 0 0 0 3px rgba(225, 29, 72, 0.08);
  transform: translateY(-1px);
}

.hero-search-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  flex-shrink: 0;
}

.hero-search-box.is-focused .hero-search-icon {
  color: #e11d48;
}

.hero-search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15.5px;
  color: #111827;
  letter-spacing: -0.01em;
}

.hero-search-input::placeholder {
  color: #9ca3af;
  font-size: 14.5px;
}

.hero-search-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.search-clear-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f3f4f6;
  border: none;
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.search-clear-btn:hover {
  background: #e5e7eb;
  color: #111827;
}

.search-clear-btn.is-hidden {
  display: none !important;
}

/* Antigravity Voice Mic Button */
.antigravity-mic-btn {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4b5563;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: visible;
}

.antigravity-mic-btn:hover {
  background: #f1f5f9;
  color: #e11d48;
  border-color: rgba(225, 29, 72, 0.3);
  transform: scale(1.06);
}

.mic-wave-pulse {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid #e11d48;
  pointer-events: none;
  opacity: 0;
}

.antigravity-mic-btn.is-listening {
  background: #e11d48;
  color: #ffffff;
  border-color: #e11d48;
  box-shadow: 0 0 20px rgba(225, 29, 72, 0.4);
}

.antigravity-mic-btn.is-listening .mic-wave-pulse {
  animation: antigravityPulse 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.antigravity-mic-btn.is-listening .mic-wave-pulse.outer {
  animation-delay: 0.75s;
}

@keyframes antigravityPulse {
  0% { transform: scale(1); opacity: 0.85; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hero-search-kbd {
  font-size: 11px;
  font-weight: 600;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  padding: 4px 7px;
  border-radius: 6px;
  color: #6b7280;
  letter-spacing: 0.04em;
}

/* Antigravity Voice Listening HUD */
.voice-listening-hud {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
  animation: hudFadeDown 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 70;
}

.voice-listening-hud.is-hidden {
  display: none !important;
}

@keyframes hudFadeDown {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.hud-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.hud-mic-indicator {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(225, 29, 72, 0.2);
  color: #f43f5e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hud-pulse-ring {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1.5px solid #f43f5e;
  animation: hudPulse 1.2s ease-out infinite;
}

@keyframes hudPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

.hud-text-block {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: left;
}

.hud-status {
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
}

.hud-hint {
  font-size: 11.5px;
  color: #94a3b8;
}

.hud-waveform-bars {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 20px;
  padding: 0 8px;
}

.hud-bar {
  width: 3px;
  background: #34d399;
  border-radius: 9999px;
  animation: waveBarDance 0.8s ease-in-out infinite alternate;
}

.bar-1 { height: 6px; animation-delay: 0.1s; }
.bar-2 { height: 16px; animation-delay: 0.3s; }
.bar-3 { height: 10px; animation-delay: 0.15s; }
.bar-4 { height: 18px; animation-delay: 0.4s; }
.bar-5 { height: 8px; animation-delay: 0.25s; }

@keyframes waveBarDance {
  0% { transform: scaleY(0.3); }
  100% { transform: scaleY(1.4); }
}

.hud-close-btn {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 14px;
  cursor: pointer;
  padding: 4px;
  transition: color 0.15s ease;
}

.hud-close-btn:hover {
  color: #ffffff;
}

/* Functional Products Dropdown Window */
.hero-products-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 24px 50px -10px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  text-align: left;
  max-height: 520px;
  display: flex;
  flex-direction: column;
  animation: dropdownSlideDown 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 65;
}

.hero-products-dropdown.is-hidden {
  display: none !important;
}

@keyframes dropdownSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: #fafbfc;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  flex-wrap: wrap;
  gap: 10px;
}

.dropdown-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7280;
}

.dropdown-filter-chips {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-chip {
  font-size: 11.5px;
  font-weight: 600;
  color: #4b5563;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 3px 10px;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.dropdown-chip:hover, .dropdown-chip.is-active {
  background: #111827;
  color: #ffffff;
  border-color: #111827;
}

.dropdown-products-list {
  display: flex;
  flex-direction: column;
  padding: 10px;
  gap: 6px;
  max-height: 380px;
  overflow-y: auto;
}

.product-dropdown-item {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: all 0.15s ease;
  gap: 14px;
  border: 1px solid transparent;
}

.product-dropdown-item:hover, .product-dropdown-item.is-highlighted {
  background: #f8fafc;
  border-color: rgba(0, 0, 0, 0.05);
  transform: translateX(2px);
}

.product-item-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-item-info {
  flex: 1;
}

.product-item-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 3px;
}

.product-item-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #111827;
}

.product-item-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 2px 7px;
  border-radius: 9999px;
}

.product-item-desc {
  font-size: 12.5px;
  color: #6b7280;
  line-height: 1.4;
}

.product-item-action {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: #e11d48;
  opacity: 0.7;
  transition: opacity 0.15s ease, transform 0.15s ease;
  flex-shrink: 0;
}

.product-dropdown-item:hover .product-item-action {
  opacity: 1;
  transform: translateX(2px);
}

.product-dropdown-item.is-hidden {
  display: none !important;
}

.dropdown-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: #fafbfc;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 12px;
}

.dropdown-view-all-link {
  font-weight: 600;
  color: #e11d48;
  text-decoration: none;
  transition: color 0.15s ease;
}

.dropdown-view-all-link:hover {
  text-decoration: underline;
}

.dropdown-keyboard-hint {
  color: #9ca3af;
  font-size: 11px;
}

.dropdown-no-match {
  padding: 30px 20px;
  text-align: center;
  color: #6b7280;
}

.dropdown-no-match p {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}

.dropdown-no-match span {
  font-size: 12px;
  color: #9ca3af;
}

[data-theme="dark"] .hero-products-dropdown {
  background: #111422;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 50px -10px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .dropdown-header {
  background: #181c2f;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .dropdown-chip {
  background: #1e2238;
  color: #cbd5e1;
  border-color: rgba(255, 255, 255, 0.1);
}
[data-theme="dark"] .dropdown-chip:hover,
[data-theme="dark"] .dropdown-chip.is-active {
  background: var(--brand-primary);
  color: #ffffff;
  border-color: var(--brand-primary);
}
[data-theme="dark"] .hero-search-box {
  background: #111422;
  border-color: rgba(255, 255, 255, 0.15);
}
[data-theme="dark"] .hero-search-input {
  color: #f1f5f9;
}
[data-theme="dark"] .product-dropdown-item:hover,
[data-theme="dark"] .product-dropdown-item.is-highlighted {
  background: rgba(255, 255, 255, 0.06);
}
[data-theme="dark"] .dropdown-footer {
  background: #181c2f;
  border-top-color: rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .dropdown-no-match p {
  color: #f1f5f9;
}

/* ==========================================================================
   GIRIONIX AI FLAGSHIP STYLES & LUXURY POLISH
   ========================================================================== */

.catalog-card.flagship-card {
  border: 1px solid rgba(124, 58, 237, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 248, 255, 0.96) 100%);
  box-shadow: 0 12px 36px -10px rgba(124, 58, 237, 0.09), 0 2px 10px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.catalog-card.flagship-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #7c3aed 0%, #ec4899 50%, #3b82f6 100%);
}

.catalog-card.flagship-card:hover {
  border-color: rgba(124, 58, 237, 0.45);
  box-shadow: 0 20px 48px -12px rgba(124, 58, 237, 0.18), 0 4px 16px rgba(0, 0, 0, 0.05);
  transform: translateY(-3px);
}

.catalog-icon-box.icon-purple {
  background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
  color: #6d28d9;
  border-color: rgba(124, 58, 237, 0.2);
}

.catalog-status-tag.tag-purple {
  background: #f5f3ff;
  color: #6d28d9;
  border: 1px solid rgba(124, 58, 237, 0.25);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.flagship-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.18);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: #5b21b6;
  margin-bottom: 12px;
  width: fit-content;
}

.catalog-launch-btn.flagship-launch-btn {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  color: #ffffff;
  border: 1px solid rgba(124, 58, 237, 0.35);
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.22);
}

.catalog-launch-btn.flagship-launch-btn:hover {
  background: linear-gradient(135deg, #312e81 0%, #4338ca 100%);
  box-shadow: 0 8px 22px rgba(79, 70, 229, 0.35);
  transform: translateY(-1px);
}

/* ==========================================================================
   LIVE EDGE OPERATIONAL STATUS INDICATOR
   ========================================================================== */

.live-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 11px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.22);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: #047857;
  letter-spacing: -0.01em;
  line-height: 1;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.live-status-pill:hover {
  background: rgba(16, 185, 129, 0.14);
  border-color: rgba(16, 185, 129, 0.4);
}

.live-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: liveStatusPulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
  flex-shrink: 0;
}

@keyframes liveStatusPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* Verified Founder Checkmark */
.verified-founder-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: #0284c7;
  color: #ffffff;
  border-radius: 50%;
  margin-left: 6px;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ==========================================================================
   INSTITUTIONAL TRUST & SECURITY ARCHITECTURE SECTION
   ========================================================================== */

.trust-standards-section {
  max-width: 1240px;
  margin: 70px auto 30px;
  padding: 0 24px;
}

.trust-standards-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.04);
}

.trust-standards-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px;
}

.trust-standards-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #111827;
  margin-top: 8px;
  margin-bottom: 12px;
  line-height: 1.25;
}

.trust-standards-sub {
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

@media (max-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-standards-card {
    padding: 32px 20px;
  }
  .trust-standards-title {
    font-size: 26px;
  }
}

.trust-card {
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}

.trust-card:hover {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.06);
}

.trust-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  margin-bottom: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.trust-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.trust-card-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: #4b5563;
}

.trust-badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.trust-guarantee-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #f1f5f9;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  line-height: 1;
}

.trust-guarantee-pill svg {
  color: #059669;
}

/* ==========================================================================
   PERFORMANCE & 1M+ USERS/SEC OPTIMIZATION RULES
   ========================================================================== */

/* Reduce layout thrashing and enable tabular alignment */
body, input, button, select {
  font-feature-settings: "cv05" 1, "tnum" 1;
}

/* Offscreen hardware containment: Saves ~80% GPU/CPU layout work */
.home-live-studio,
.home-cost-section,
.home-founder-spotlight,
.trust-standards-section,
.suite-comparison-section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 550px;
}

/* ==========================================================================
   SOVEREIGN TRANSLATION CLEAN-UP & GOOGLE BANNER SUPPRESSION
   ========================================================================== */

.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame {
  display: none !important;
  visibility: hidden !important;
}

body {
  top: 0px !important;
  position: static !important;
}

.goog-text-highlight {
  background: transparent !important;
  box-shadow: none !important;
}

#google_translate_element,
.skiptranslate:not(.lang-dialog) {
  display: none !important;
}

/* ==========================================================================
   ENTERPRISE THEME SYSTEM: DARK & OLED LUXURY PALETTES
   ========================================================================== */
[data-theme="dark"] {
  --bg-pure: #090a10;
  --bg-canvas: #0d0f17;
  --surface-glass: rgba(18, 20, 30, 0.82);
  --surface-glass-hover: rgba(26, 30, 46, 0.95);
  --surface-subtle: rgba(255, 255, 255, 0.05);

  --border-subtle: 1px solid rgba(255, 255, 255, 0.08);
  --border-glass: 1px solid rgba(255, 255, 255, 0.11);
  --border-glass-hover: 1px solid rgba(255, 255, 255, 0.22);
  --border-divider: rgba(255, 255, 255, 0.08);

  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-tertiary: #94a3b8;
  --accent-red: #f43f5e;
  --accent-red-hover: #fb7185;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-card: 0 30px 60px rgba(0, 0, 0, 0.5), 0 2px 10px rgba(0, 0, 0, 0.3);
  --shadow-card-hover: 0 45px 95px rgba(0, 0, 0, 0.65), 0 4px 20px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] body {
  background-color: var(--bg-pure);
  color: var(--text-primary);
}

[data-theme="dark"] .zoho-header {
  background: rgba(9, 10, 16, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .ambient-blur.blur-1 {
  background: radial-gradient(circle, rgba(244, 63, 94, 0.12) 0%, transparent 70%);
}
[data-theme="dark"] .ambient-blur.blur-2 {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.10) 0%, transparent 70%);
}
[data-theme="dark"] .ambient-blur.blur-3 {
  background: radial-gradient(circle, rgba(168, 85, 247, 0.10) 0%, transparent 70%);
}
[data-theme="dark"] .ambient-grid {
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

[data-theme="dark"] .home-spotlight-modal,
[data-theme="dark"] .lang-modal-card,
[data-theme="dark"] .catalog-card,
[data-theme="dark"] .cost-box,
[data-theme="dark"] .cost-card,
[data-theme="dark"] .cost-breakdown-card,
[data-theme="dark"] .founder-letter-article,
[data-theme="dark"] .tool-wizard-card,
[data-theme="dark"] .a11y-modal-card,
[data-theme="dark"] .data-hub-card {
  background: rgba(15, 17, 26, 0.88);
  border-color: rgba(255, 255, 255, 0.11);
  color: var(--text-primary);
}

[data-theme="dark"] .brand-logo-wrap {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .nav-link {
  color: #94a3b8;
}
[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] .nav-link.is-active-page {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
}

[data-theme="dark"] .util-btn,
[data-theme="dark"] .lang-selector,
[data-theme="dark"] .founder-nav-pill,
[data-theme="dark"] .theme-toggle-btn,
[data-theme="dark"] .a11y-trigger-btn {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: #f1f5f9;
}
[data-theme="dark"] .util-btn:hover,
[data-theme="dark"] .lang-selector:hover,
[data-theme="dark"] .theme-toggle-btn:hover,
[data-theme="dark"] .a11y-trigger-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

[data-theme="dark"] .live-status-pill {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
  color: #34d399;
}

[data-theme="dark"] .cost-monopoly-col {
  background: rgba(255, 255, 255, 0.02);
}

[data-theme="dark"] .cost-giri-col {
  background: rgba(244, 63, 94, 0.06);
  border-color: rgba(244, 63, 94, 0.25);
}

[data-theme="dark"] .home-footer {
  background: rgba(9, 10, 16, 0.95);
  border-top-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .footer-links-group a {
  color: #94a3b8;
}
[data-theme="dark"] .footer-links-group a:hover {
  color: #ffffff;
}

/* ==========================================================================
   ACCESSIBILITY OVERRIDES (HIGH CONTRAST & DYNAMIC RESIZING)
   ========================================================================== */
html[data-font-size="large"] {
  font-size: 112.5%;
}
html[data-font-size="xlarge"] {
  font-size: 125%;
}

[data-a11y="high-contrast"] {
  --text-primary: #000000 !important;
  --text-secondary: #111111 !important;
  --border-subtle: 2px solid #000000 !important;
  --border-glass: 2px solid #000000 !important;
  filter: contrast(120%);
}
[data-theme="dark"][data-a11y="high-contrast"] {
  --text-primary: #ffffff !important;
  --text-secondary: #f0f0f0 !important;
  --border-subtle: 2px solid #ffffff !important;
  --border-glass: 2px solid #ffffff !important;
}

[data-motion="reduced"] *,
[data-motion="reduced"] *::before,
[data-motion="reduced"] *::after {
  animation-duration: 0.001ms !important;
  transition-duration: 0.001ms !important;
  scroll-behavior: auto !important;
}

/* ==========================================================================
   THEME TOGGLE BUTTON & A11Y BUTTON
   ========================================================================== */
.theme-toggle-btn,
.a11y-trigger-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.035);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}
.theme-toggle-btn:hover,
.a11y-trigger-btn:hover {
  background: rgba(0, 0, 0, 0.07);
  transform: translateY(-1px);
}
.a11y-trigger-btn span.a11y-icon-text {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.02em;
}

/* ==========================================================================
   ACCESSIBILITY MODAL DIALOG (#a11y-dialog)
   ========================================================================== */
.a11y-dialog {
  border: none;
  background: transparent;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  padding: 0;
  margin: 0;
}
.a11y-dialog::backdrop {
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.a11y-dialog-backdrop {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 20px;
}
.a11y-modal-card {
  width: 100%;
  max-width: 520px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 22px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  animation: a11yModalIn 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes a11yModalIn {
  from { opacity: 0; transform: scale(0.96) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.a11y-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-divider);
}
.a11y-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.a11y-title-wrap h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.a11y-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.a11y-control-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.a11y-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.a11y-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}
.a11y-hint {
  font-size: 12px;
  color: var(--text-tertiary);
}
.a11y-btn-group {
  display: flex;
  gap: 8px;
}
.a11y-btn {
  flex: 1;
  padding: 8px 12px;
  border-radius: 10px;
  background: var(--surface-subtle);
  border: 1px solid var(--border-subtle);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.18s ease;
  text-align: center;
}
.a11y-btn.is-active {
  background: var(--text-primary);
  color: var(--bg-pure);
  border-color: var(--text-primary);
  font-weight: 600;
}
.a11y-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: var(--surface-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
}

/* ==========================================================================
   AUDIO READ-ALOUD SPEECH BAR (.audio-reader-bar)
   ========================================================================== */
.audio-reader-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  margin: 20px auto 32px auto;
  max-width: 760px;
  background: var(--surface-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  transition: all 0.25s ease;
}
.audio-reader-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.audio-play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-red);
  color: #ffffff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.35);
  transition: transform 0.18s ease;
  flex-shrink: 0;
}
.audio-play-btn:hover {
  transform: scale(1.05);
}
.audio-text-wrap h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--text-primary);
}
.audio-text-wrap p {
  font-size: 12px;
  color: var(--text-secondary);
}
.audio-reader-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.audio-speed-btn {
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 6px;
  background: var(--surface-subtle);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  cursor: pointer;
}
.audio-wave-wrap {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 18px;
}
.audio-wave-bar {
  width: 3px;
  height: 6px;
  border-radius: 2px;
  background: var(--accent-red);
  transition: height 0.2s ease;
}
.audio-wave-active .audio-wave-bar:nth-child(1) { animation: wave 0.8s ease infinite 0.1s; }
.audio-wave-active .audio-wave-bar:nth-child(2) { animation: wave 0.8s ease infinite 0.25s; }
.audio-wave-active .audio-wave-bar:nth-child(3) { animation: wave 0.8s ease infinite 0.4s; }
.audio-wave-active .audio-wave-bar:nth-child(4) { animation: wave 0.8s ease infinite 0.15s; }
@keyframes wave {
  0%, 100% { height: 6px; }
  50% { height: 18px; }
}

/* ==========================================================================
   INTERACTIVE TOOL SELECTOR WIZARD (.tool-wizard-card)
   ========================================================================== */
.tool-wizard-section {
  padding: 40px 0 20px 0;
}
.tool-wizard-card {
  max-width: 1040px;
  margin: 0 auto;
  padding: 32px;
  background: var(--surface-glass);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}
.tool-wizard-header {
  text-align: center;
  margin-bottom: 24px;
}
.tool-wizard-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 8px;
}
.tool-wizard-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.tool-wizard-sub {
  font-size: 14px;
  color: var(--text-secondary);
}
.wizard-personas-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
}
.wizard-persona-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 9999px;
  background: var(--surface-subtle);
  border: 1px solid var(--border-subtle);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.wizard-persona-chip:hover {
  border-color: var(--text-primary);
  color: var(--text-primary);
  transform: translateY(-1px);
}
.wizard-persona-chip.is-active {
  background: var(--text-primary);
  color: var(--bg-pure);
  border-color: var(--text-primary);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}
.wizard-recommendation-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 24px;
  background: rgba(0, 0, 0, 0.015);
  border: 1px dashed var(--border-subtle);
  border-radius: 18px;
  animation: fadeIn 0.3s ease;
}
@media (max-width: 768px) {
  .wizard-recommendation-box {
    grid-template-columns: 1fr;
  }
}
.wizard-tool-lead {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wizard-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  background: rgba(225, 29, 72, 0.1);
  color: var(--accent-red);
  margin-bottom: 10px;
}
.wizard-tool-name {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--text-primary);
}
.wizard-tool-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.wizard-launch-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  background: var(--accent-red);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  width: fit-content;
  box-shadow: 0 4px 12px rgba(225, 29, 72, 0.3);
  transition: transform 0.18s ease;
}
.wizard-launch-cta:hover {
  transform: translateY(-2px);
}
.wizard-bullets-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}
.wizard-bullet-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
}
.wizard-bullet-item svg {
  color: var(--accent-emerald);
  flex-shrink: 0;
}

/* ==========================================================================
   SOVEREIGN DATA HUB DIALOG (#data-hub-dialog)
   ========================================================================== */
.data-hub-dialog {
  border: none;
  background: transparent;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  padding: 0;
  margin: 0;
}
.data-hub-dialog::backdrop {
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.data-hub-backdrop {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 20px;
}
.data-hub-card {
  width: 100%;
  max-width: 580px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  box-shadow: 0 35px 85px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  animation: a11yModalIn 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
.data-hub-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  border-bottom: 1px solid var(--border-divider);
}
.data-hub-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.data-hub-title-wrap h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.data-hub-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.data-hub-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
@media (max-width: 520px) {
  .data-hub-stats-grid {
    grid-template-columns: 1fr;
  }
}
.data-stat-pill {
  padding: 14px;
  background: var(--surface-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  text-align: center;
}
.data-stat-val {
  font-size: 22px;
  font-weight: 800;
  font-family: 'JetBrains Mono', monospace;
  color: var(--accent-red);
  margin-bottom: 4px;
}
.data-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.data-hub-guarantee {
  padding: 12px 16px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.5;
  color: #065f46;
}
[data-theme="dark"] .data-hub-guarantee {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
  color: #34d399;
}
.data-hub-actions-row {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}
.data-hub-btn-export {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--text-primary);
  color: var(--bg-pure);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.18s ease;
}
.data-hub-btn-export:hover {
  transform: translateY(-1px);
}
.data-hub-btn-reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(225, 29, 72, 0.08);
  color: var(--accent-red);
  border: 1px solid rgba(225, 29, 72, 0.2);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.data-hub-btn-reset:hover {
  background: var(--accent-red);
  color: #ffffff;
}

/* ==========================================================================
   MOBILE BOTTOM NAVIGATION DOCK (.mobile-bottom-dock)
   ========================================================================== */
.mobile-bottom-dock {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-top: 1px solid var(--border-divider);
  z-index: 999;
  justify-content: space-around;
  align-items: center;
  padding: 0 16px;
}
[data-theme="dark"] .mobile-bottom-dock {
  background: rgba(9, 10, 16, 0.9);
  border-top-color: rgba(255, 255, 255, 0.08);
}
@media (max-width: 768px) {
  .mobile-bottom-dock {
    display: flex;
  }
  body {
    padding-bottom: 64px;
  }
}
.dock-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--text-secondary);
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
}
.dock-item.is-active,
.dock-item:hover {
  color: var(--accent-red);
}
.dock-item svg {
  width: 20px;
  height: 20px;
}

/* ==========================================================================
   MICROSOFT FLUENT 2 DESIGN SYSTEM ELEVATION (CLEAN, BOLD, ACCESSIBLE)
   ========================================================================== */

/* Microsoft-Style Clean Navigation Links */
.nav-link {
  position: relative;
  font-size: 14.5px !important;
  font-weight: 500 !important;
  padding: 8px 12px !important;
  border-radius: 4px !important;
  transition: color 0.15s ease, background 0.15s ease !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--brand-primary);
  transform: scaleX(0);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover::after,
.nav-link.is-active-page::after {
  transform: scaleX(1);
}

.nav-link.is-active-page {
  font-weight: 600 !important;
}

/* Microsoft-Style Buttons (Clean, Crisp 4-6px Radius) */
.fluent-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--brand-primary);
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 2px 6px rgba(225, 29, 72, 0.2);
}

.fluent-btn-primary:hover {
  background: #be123c;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(225, 29, 72, 0.3);
}

.fluent-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--surface-card);
  color: var(--text-primary) !important;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  border: 1.5px solid var(--border-subtle);
  transition: all 0.18s ease;
}

.fluent-btn-secondary:hover {
  border-color: var(--text-primary);
  background: var(--surface-subtle);
  transform: translateY(-1px);
}

/* Microsoft Signature Quick Access Ribbon (Below Hero) */
.fluent-quick-ribbon-section {
  max-width: 1200px;
  margin: 36px auto 50px auto;
  padding: 0 24px;
}

.fluent-quick-ribbon {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

@media (max-width: 1080px) {
  .fluent-quick-ribbon {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .fluent-quick-ribbon {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .fluent-quick-ribbon {
    grid-template-columns: 1fr;
  }
}

.quick-ribbon-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.quick-ribbon-card:hover {
  transform: translateY(-2px);
  border-color: var(--brand-primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .quick-ribbon-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.quick-ribbon-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.quick-ribbon-icon.icon-ai {
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
}

.quick-ribbon-icon.icon-orbit {
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
}

.quick-ribbon-icon.icon-drift {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.quick-ribbon-icon.icon-axis {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.quick-ribbon-icon.icon-kinetic {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.nav-link-orbit {
  font-weight: 600 !important;
  color: #6366f1 !important;
}

[data-theme="dark"] .nav-link-orbit {
  color: #818cf8 !important;
}

.quick-ribbon-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.quick-ribbon-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.quick-ribbon-chevron {
  font-size: 13px;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.18s ease;
  color: var(--brand-primary);
}

.quick-ribbon-card:hover .quick-ribbon-chevron {
  opacity: 1;
  transform: translateX(0);
}

.quick-ribbon-desc {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.35;
}

/* Microsoft Copilot-Style Spotlight Banner */
.fluent-spotlight-section {
  max-width: 1200px;
  margin: 0 auto 60px auto;
  padding: 0 24px;
}

.fluent-spotlight-banner {
  background: linear-gradient(135deg, #1e1136 0%, #0c1024 100%);
  border-radius: 12px;
  padding: 44px 48px;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 860px) {
  .fluent-spotlight-banner {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
}

.fluent-spotlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(124, 58, 237, 0.25);
  border: 1px solid rgba(168, 85, 247, 0.4);
  color: #c084fc;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.fluent-spotlight-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: #ffffff;
}

.fluent-spotlight-desc {
  font-size: 15.5px;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 24px;
  max-width: 580px;
}

.fluent-spotlight-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.fluent-spotlight-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #7c3aed;
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.18s ease;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35);
}

.fluent-spotlight-btn:hover {
  background: #6d28d9;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(124, 58, 237, 0.45);
}

.fluent-spotlight-link {
  color: #e2e8f0 !important;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s ease;
}

.fluent-spotlight-link:hover {
  color: #ffffff !important;
  text-decoration: underline;
}

.fluent-spotlight-visual {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  backdrop-filter: blur(10px);
}

.fluent-spec-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #e2e8f0;
}

.fluent-spec-check {
  color: #34d399;
  font-weight: 800;
}

/* Microsoft-Style Card Grid (4-Card Bento Grid) */
.home-suite-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 960px) {
  .home-suite-grid {
    grid-template-columns: 1fr;
  }
}

.home-suite-card {
  border-radius: 8px !important;
  border: 1px solid var(--border-subtle) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04) !important;
  padding: 28px !important;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease !important;
}

.home-suite-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.09) !important;
  border-color: var(--text-primary) !important;
}

[data-theme="dark"] .home-suite-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5) !important;
}

.home-card-btn {
  border-radius: 4px !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.home-card-btn svg {
  transition: transform 0.18s ease !important;
}

.home-card-btn:hover svg {
  transform: translateX(3px) !important;
}

/* ==========================================================================
   FOUNDER INSTAGRAM LUXURY PILL & AUTHENTIC GRADIENT BADGE
   ========================================================================== */
.founder-nav-pill,
.letter-insta-chip,
.footer-insta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px 4px 5px !important;
  background: rgba(0, 0, 0, 0.035);
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 9999px !important;
  text-decoration: none !important;
  color: var(--text-primary) !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.insta-gradient-badge {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(214, 36, 159, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.founder-nav-pill:hover,
.letter-insta-chip:hover,
.footer-insta-link:hover {
  background: rgba(214, 36, 159, 0.07) !important;
  border-color: rgba(214, 36, 159, 0.35) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(214, 36, 159, 0.2) !important;
  color: #d6249f !important;
}

.founder-nav-pill:hover .insta-gradient-badge,
.letter-insta-chip:hover .insta-gradient-badge,
.footer-insta-link:hover .insta-gradient-badge {
  transform: scale(1.08);
  box-shadow: 0 3px 10px rgba(214, 36, 159, 0.5);
}

[data-theme="dark"] .founder-nav-pill,
[data-theme="dark"] .letter-insta-chip,
[data-theme="dark"] .footer-insta-link {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12) !important;
  color: #f1f5f9 !important;
}

[data-theme="dark"] .founder-nav-pill:hover,
[data-theme="dark"] .letter-insta-chip:hover,
[data-theme="dark"] .footer-insta-link:hover {
  background: rgba(214, 36, 159, 0.16) !important;
  border-color: rgba(214, 36, 159, 0.5) !important;
  color: #f472b6 !important;
}

.insta-editorial-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.insta-editorial-card:hover {
  transform: translateY(-2px);
  border-color: #d6249f;
  box-shadow: 0 8px 20px rgba(214, 36, 159, 0.15);
}

.insta-card-glyph {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff !important;
  box-shadow: 0 4px 10px rgba(214, 36, 159, 0.3);
}

.insta-card-glyph svg {
  stroke: #ffffff !important;
}

.founder-spotlight-insta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 600;
  transition: all 0.2s ease;
}

.founder-spotlight-insta:hover {
  background: rgba(214, 36, 159, 0.08);
  border-color: rgba(214, 36, 159, 0.4);
  color: #d6249f;
  transform: translateY(-1px);
}

[data-theme="dark"] .founder-spotlight-insta {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  color: #f1f5f9;
}



